1 // SPDX-License-Identifier: GPL-2.0-only
2 /*
3 * Murata ZPA2326 pressure and temperature sensor IIO driver
4 *
5 * Copyright (c) 2016 Parrot S.A.
6 *
7 * Author: Gregor Boirie <gregor.boirie@parrot.com>
8 */
9
10 /**
11 * DOC: ZPA2326 theory of operations
12 *
13 * This driver supports %INDIO_DIRECT_MODE and %INDIO_BUFFER_TRIGGERED IIO
14 * modes.
15 * A internal hardware trigger is also implemented to dispatch registered IIO
16 * trigger consumers upon "sample ready" interrupts.
17 *
18 * ZPA2326 hardware supports 2 sampling mode: one shot and continuous.
19 *
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).
28 *
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
39 * low power mode.
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
42 * drives acquisition.
43 *
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.
47 *
48 * TODO:
49 * preset pressure threshold crossing / IIO events ;
50 * differential pressure sampling ;
51 * hardware samples averaging.
52 */
53
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 <linux/unaligned.h>
68 #include "zpa2326.h"
69
70 /* 200 ms should be enough for the longest conversion time in one-shot mode. */
71 #define ZPA2326_CONVERSION_JIFFIES (HZ / 5)
72
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)
76
77 /**
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.
81 */
82 struct zpa2326_frequency {
83 int hz;
84 u16 odr;
85 };
86
87 /*
88 * Keep these in strict ascending order: last array entry is expected to
89 * correspond to the highest sampling frequency.
90 */
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 },
96 };
97
98 /* Return the highest hardware sampling frequency available. */
zpa2326_highest_frequency(void)99 static const struct zpa2326_frequency *zpa2326_highest_frequency(void)
100 {
101 return &zpa2326_sampling_frequencies[
102 ARRAY_SIZE(zpa2326_sampling_frequencies) - 1];
103 }
104
105 /**
106 * struct zpa2326_private - Per-device internal private state
107 * @timestamp: Buffered samples ready datum.
108 * @regmap: Underlying I2C / SPI bus adapter used to abstract slave register
109 * accesses.
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.
123 */
124 struct zpa2326_private {
125 s64 timestamp;
126 struct regmap *regmap;
127 int result;
128 struct completion data_ready;
129 struct iio_trigger *trigger;
130 bool waken;
131 int irq;
132 const struct zpa2326_frequency *frequency;
133 struct regulator *vref;
134 struct regulator *vdd;
135 };
136
137 #define zpa2326_err(idev, fmt, ...) \
138 dev_err(idev->dev.parent, fmt "\n", ##__VA_ARGS__)
139
140 #define zpa2326_warn(idev, fmt, ...) \
141 dev_warn(idev->dev.parent, fmt "\n", ##__VA_ARGS__)
142
143 #define zpa2326_dbg(idev, fmt, ...) \
144 dev_dbg(idev->dev.parent, fmt "\n", ##__VA_ARGS__)
145
zpa2326_isreg_writeable(struct device * dev,unsigned int reg)146 bool zpa2326_isreg_writeable(struct device *dev, unsigned int reg)
147 {
148 switch (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:
159 return true;
160
161 default:
162 return false;
163 }
164 }
165 EXPORT_SYMBOL_NS_GPL(zpa2326_isreg_writeable, "IIO_ZPA2326");
166
zpa2326_isreg_readable(struct device * dev,unsigned int reg)167 bool zpa2326_isreg_readable(struct device *dev, unsigned int reg)
168 {
169 switch (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:
188 return true;
189
190 default:
191 return false;
192 }
193 }
194 EXPORT_SYMBOL_NS_GPL(zpa2326_isreg_readable, "IIO_ZPA2326");
195
zpa2326_isreg_precious(struct device * dev,unsigned int reg)196 bool zpa2326_isreg_precious(struct device *dev, unsigned int reg)
197 {
198 switch (reg) {
199 case ZPA2326_INT_SOURCE_REG:
200 case ZPA2326_PRESS_OUT_H_REG:
201 return true;
202
203 default:
204 return false;
205 }
206 }
207 EXPORT_SYMBOL_NS_GPL(zpa2326_isreg_precious, "IIO_ZPA2326");
208
209 /**
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.
212 *
213 * Required to access complete register space and to perform any sampling
214 * or control operations.
215 *
216 * Return: Zero when successful, a negative error code otherwise.
217 */
zpa2326_enable_device(const struct iio_dev * indio_dev)218 static int zpa2326_enable_device(const struct iio_dev *indio_dev)
219 {
220 int err;
221
222 err = regmap_write(((struct zpa2326_private *)
223 iio_priv(indio_dev))->regmap,
224 ZPA2326_CTRL_REG0_REG, ZPA2326_CTRL_REG0_ENABLE);
225 if (err) {
226 zpa2326_err(indio_dev, "failed to enable device (%d)", err);
227 return err;
228 }
229
230 zpa2326_dbg(indio_dev, "enabled");
231
232 return 0;
233 }
234
235 /**
236 * zpa2326_sleep() - Disable device, i.e. switch to low power mode.
237 * @indio_dev: The IIO device associated with the hardware to disable.
238 *
239 * Only %ZPA2326_DEVICE_ID_REG and %ZPA2326_CTRL_REG0_REG registers may be
240 * accessed once device is in the disabled state.
241 *
242 * Return: Zero when successful, a negative error code otherwise.
243 */
zpa2326_sleep(const struct iio_dev * indio_dev)244 static int zpa2326_sleep(const struct iio_dev *indio_dev)
245 {
246 int err;
247
248 err = regmap_write(((struct zpa2326_private *)
249 iio_priv(indio_dev))->regmap,
250 ZPA2326_CTRL_REG0_REG, 0);
251 if (err) {
252 zpa2326_err(indio_dev, "failed to sleep (%d)", err);
253 return err;
254 }
255
256 zpa2326_dbg(indio_dev, "sleeping");
257
258 return 0;
259 }
260
261 /**
262 * zpa2326_reset_device() - Reset device to default hardware state.
263 * @indio_dev: The IIO device associated with the hardware to reset.
264 *
265 * Disable sampling and empty hardware FIFO.
266 * Device must be enabled before reset, i.e. not in low power mode.
267 *
268 * Return: Zero when successful, a negative error code otherwise.
269 */
zpa2326_reset_device(const struct iio_dev * indio_dev)270 static int zpa2326_reset_device(const struct iio_dev *indio_dev)
271 {
272 int err;
273
274 err = regmap_write(((struct zpa2326_private *)
275 iio_priv(indio_dev))->regmap,
276 ZPA2326_CTRL_REG2_REG, ZPA2326_CTRL_REG2_SWRESET);
277 if (err) {
278 zpa2326_err(indio_dev, "failed to reset device (%d)", err);
279 return err;
280 }
281
282 usleep_range(ZPA2326_TPUP_USEC_MIN, ZPA2326_TPUP_USEC_MAX);
283
284 zpa2326_dbg(indio_dev, "reset");
285
286 return 0;
287 }
288
289 /**
290 * zpa2326_start_oneshot() - Start a single sampling cycle, i.e. in one shot
291 * mode.
292 * @indio_dev: The IIO device associated with the sampling hardware.
293 *
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.
296 *
297 * Return: Zero when successful, a negative error code otherwise.
298 */
zpa2326_start_oneshot(const struct iio_dev * indio_dev)299 static int zpa2326_start_oneshot(const struct iio_dev *indio_dev)
300 {
301 int err;
302
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);
308 if (err) {
309 zpa2326_err(indio_dev, "failed to start one shot cycle (%d)",
310 err);
311 return err;
312 }
313
314 zpa2326_dbg(indio_dev, "one shot cycle started");
315
316 return 0;
317 }
318
319 /**
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.
323 *
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
327 * configuration.
328 *
329 * Return: Zero when successful, a negative error code otherwise.
330 */
zpa2326_power_on(const struct iio_dev * indio_dev,const struct zpa2326_private * private)331 static int zpa2326_power_on(const struct iio_dev *indio_dev,
332 const struct zpa2326_private *private)
333 {
334 int err;
335
336 err = regulator_enable(private->vref);
337 if (err)
338 return err;
339
340 err = regulator_enable(private->vdd);
341 if (err)
342 goto vref;
343
344 zpa2326_dbg(indio_dev, "powered on");
345
346 err = zpa2326_enable_device(indio_dev);
347 if (err)
348 goto vdd;
349
350 err = zpa2326_reset_device(indio_dev);
351 if (err)
352 goto sleep;
353
354 return 0;
355
356 sleep:
357 zpa2326_sleep(indio_dev);
358 vdd:
359 regulator_disable(private->vdd);
360 vref:
361 regulator_disable(private->vref);
362
363 zpa2326_dbg(indio_dev, "powered off");
364
365 return err;
366 }
367
368 /**
369 * zpa2326_power_off() - Power off device, i.e. disable attached power
370 * regulators.
371 * @indio_dev: The IIO device associated with the sampling hardware.
372 * @private: Internal private state related to @indio_dev.
373 *
374 * Return: Zero when successful, a negative error code otherwise.
375 */
zpa2326_power_off(const struct iio_dev * indio_dev,const struct zpa2326_private * private)376 static void zpa2326_power_off(const struct iio_dev *indio_dev,
377 const struct zpa2326_private *private)
378 {
379 regulator_disable(private->vdd);
380 regulator_disable(private->vref);
381
382 zpa2326_dbg(indio_dev, "powered off");
383 }
384
385 /**
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.
391 *
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.
396 *
397 * Device must have been previously enabled before calling
398 * zpa2326_config_oneshot().
399 *
400 * Return: Zero when successful, a negative error code otherwise.
401 */
zpa2326_config_oneshot(const struct iio_dev * indio_dev,int irq)402 static int zpa2326_config_oneshot(const struct iio_dev *indio_dev,
403 int irq)
404 {
405 struct regmap *regs = ((struct zpa2326_private *)
406 iio_priv(indio_dev))->regmap;
407 const struct zpa2326_frequency *freq = zpa2326_highest_frequency();
408 int err;
409
410 /* Setup highest available Output Data Rate for one shot mode. */
411 err = regmap_write(regs, ZPA2326_CTRL_REG3_REG, freq->odr);
412 if (err)
413 return err;
414
415 if (irq > 0) {
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);
419
420 if (err) {
421 dev_err(indio_dev->dev.parent,
422 "failed to setup one shot mode (%d)", err);
423 return err;
424 }
425 }
426
427 zpa2326_dbg(indio_dev, "one shot mode setup @%dHz", freq->hz);
428
429 return 0;
430 }
431
432 /**
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.
436 *
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.
441 *
442 * Return: Zero when successful, a negative error code otherwise.
443 */
zpa2326_clear_fifo(const struct iio_dev * indio_dev,unsigned int min_count)444 static int zpa2326_clear_fifo(const struct iio_dev *indio_dev,
445 unsigned int min_count)
446 {
447 struct regmap *regs = ((struct zpa2326_private *)
448 iio_priv(indio_dev))->regmap;
449 int err;
450 unsigned int val;
451
452 if (!min_count) {
453 /*
454 * No hint: read status register to determine whether FIFO is
455 * empty or not.
456 */
457 err = regmap_read(regs, ZPA2326_STATUS_REG, &val);
458
459 if (err < 0)
460 goto err;
461
462 if (val & ZPA2326_STATUS_FIFO_E)
463 /* Fifo is empty: nothing to trash. */
464 return 0;
465 }
466
467 /* Clear FIFO. */
468 do {
469 /*
470 * A single fetch from pressure MSB register is enough to pop
471 * values out of FIFO.
472 */
473 err = regmap_read(regs, ZPA2326_PRESS_OUT_H_REG, &val);
474 if (err < 0)
475 goto err;
476
477 if (min_count) {
478 /*
479 * We know for sure there are at least min_count entries
480 * left in FIFO. Skip status register read.
481 */
482 min_count--;
483 continue;
484 }
485
486 err = regmap_read(regs, ZPA2326_STATUS_REG, &val);
487 if (err < 0)
488 goto err;
489
490 } while (!(val & ZPA2326_STATUS_FIFO_E));
491
492 zpa2326_dbg(indio_dev, "FIFO cleared");
493
494 return 0;
495
496 err:
497 zpa2326_err(indio_dev, "failed to clear FIFO (%d)", err);
498
499 return err;
500 }
501
502 /**
503 * zpa2326_dequeue_pressure() - Retrieve the most recent pressure sample from
504 * hardware FIFO.
505 * @indio_dev: The IIO device associated with the sampling hardware.
506 * @pressure: Sampled pressure output.
507 *
508 * Note that ZPA2326 hardware FIFO stores pressure samples only.
509 *
510 * Return: Zero when successful, a negative error code otherwise.
511 */
zpa2326_dequeue_pressure(const struct iio_dev * indio_dev,u32 * pressure)512 static int zpa2326_dequeue_pressure(const struct iio_dev *indio_dev,
513 u32 *pressure)
514 {
515 struct regmap *regs = ((struct zpa2326_private *)
516 iio_priv(indio_dev))->regmap;
517 unsigned int val;
518 int err;
519 int cleared = -1;
520
521 err = regmap_read(regs, ZPA2326_STATUS_REG, &val);
522 if (err < 0)
523 return err;
524
525 *pressure = 0;
526
527 if (val & ZPA2326_STATUS_P_OR) {
528 /*
529 * Fifo overrun : first sample dequeued from FIFO is the
530 * newest.
531 */
532 zpa2326_warn(indio_dev, "FIFO overflow");
533
534 err = regmap_bulk_read(regs, ZPA2326_PRESS_OUT_XL_REG, pressure,
535 3);
536 if (err)
537 return err;
538
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);
542 }
543
544 /*
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.
548 */
549 do {
550 err = regmap_bulk_read(regs, ZPA2326_PRESS_OUT_XL_REG, pressure,
551 3);
552 if (err)
553 return err;
554
555 err = regmap_read(regs, ZPA2326_STATUS_REG, &val);
556 if (err < 0)
557 return err;
558
559 cleared++;
560 } while (!(val & ZPA2326_STATUS_FIFO_E));
561
562 if (cleared)
563 /*
564 * Samples were pushed by hardware during previous rounds but we
565 * didn't consume them fast enough: inform user.
566 */
567 zpa2326_dbg(indio_dev, "cleared %d FIFO entries", cleared);
568
569 return 0;
570 }
571
572 /**
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.
576 *
577 * Return: Zero when successful, a negative error code otherwise.
578 */
zpa2326_fill_sample_buffer(struct iio_dev * indio_dev,const struct zpa2326_private * private)579 static int zpa2326_fill_sample_buffer(struct iio_dev *indio_dev,
580 const struct zpa2326_private *private)
581 {
582 struct {
583 u32 pressure;
584 u16 temperature;
585 aligned_s64 timestamp;
586 } sample;
587 int err;
588
589 memset(&sample, 0, sizeof(sample));
590
591 if (test_bit(0, indio_dev->active_scan_mask)) {
592 /* Get current pressure from hardware FIFO. */
593 err = zpa2326_dequeue_pressure(indio_dev, &sample.pressure);
594 if (err) {
595 zpa2326_warn(indio_dev, "failed to fetch pressure (%d)",
596 err);
597 return err;
598 }
599 }
600
601 if (test_bit(1, indio_dev->active_scan_mask)) {
602 /* Get current temperature. */
603 err = regmap_bulk_read(private->regmap, ZPA2326_TEMP_OUT_L_REG,
604 &sample.temperature, 2);
605 if (err) {
606 zpa2326_warn(indio_dev,
607 "failed to fetch temperature (%d)", err);
608 return err;
609 }
610 }
611
612 /*
613 * Now push samples using timestamp stored either :
614 * - by hardware interrupt handler if interrupt is available: see
615 * zpa2326_handle_irq(),
616 * - or oneshot completion polling machinery : see
617 * zpa2326_trigger_handler().
618 */
619 zpa2326_dbg(indio_dev, "filling raw samples buffer");
620
621 iio_push_to_buffers_with_ts(indio_dev, &sample, sizeof(sample),
622 private->timestamp);
623
624 return 0;
625 }
626
627 #ifdef CONFIG_PM
zpa2326_runtime_suspend(struct device * parent)628 static int zpa2326_runtime_suspend(struct device *parent)
629 {
630 const struct iio_dev *indio_dev = dev_get_drvdata(parent);
631
632 if (pm_runtime_autosuspend_expiration(parent))
633 /* Userspace changed autosuspend delay. */
634 return -EAGAIN;
635
636 zpa2326_power_off(indio_dev, iio_priv(indio_dev));
637
638 return 0;
639 }
640
zpa2326_runtime_resume(struct device * parent)641 static int zpa2326_runtime_resume(struct device *parent)
642 {
643 const struct iio_dev *indio_dev = dev_get_drvdata(parent);
644
645 return zpa2326_power_on(indio_dev, iio_priv(indio_dev));
646 }
647
648 const struct dev_pm_ops zpa2326_pm_ops = {
649 SET_SYSTEM_SLEEP_PM_OPS(pm_runtime_force_suspend,
650 pm_runtime_force_resume)
651 SET_RUNTIME_PM_OPS(zpa2326_runtime_suspend, zpa2326_runtime_resume,
652 NULL)
653 };
654 EXPORT_SYMBOL_NS_GPL(zpa2326_pm_ops, "IIO_ZPA2326");
655
656 /**
657 * zpa2326_resume() - Request the PM layer to power supply the device.
658 * @indio_dev: The IIO device associated with the sampling hardware.
659 *
660 * Return:
661 * < 0 - a negative error code meaning failure ;
662 * 0 - success, device has just been powered up ;
663 * 1 - success, device was already powered.
664 */
zpa2326_resume(const struct iio_dev * indio_dev)665 static int zpa2326_resume(const struct iio_dev *indio_dev)
666 {
667 int err;
668
669 err = pm_runtime_get_sync(indio_dev->dev.parent);
670 if (err < 0) {
671 pm_runtime_put(indio_dev->dev.parent);
672 return err;
673 }
674
675 if (err > 0) {
676 /*
677 * Device was already power supplied: get it out of low power
678 * mode and inform caller.
679 */
680 zpa2326_enable_device(indio_dev);
681 return 1;
682 }
683
684 /* Inform caller device has just been brought back to life. */
685 return 0;
686 }
687
688 /**
689 * zpa2326_suspend() - Schedule a power down using autosuspend feature of PM
690 * layer.
691 * @indio_dev: The IIO device associated with the sampling hardware.
692 *
693 * Device is switched to low power mode at first to save power even when
694 * attached regulator is a "dummy" one.
695 */
zpa2326_suspend(struct iio_dev * indio_dev)696 static void zpa2326_suspend(struct iio_dev *indio_dev)
697 {
698 struct device *parent = indio_dev->dev.parent;
699
700 zpa2326_sleep(indio_dev);
701
702 pm_runtime_mark_last_busy(parent);
703 pm_runtime_put_autosuspend(parent);
704 }
705
zpa2326_init_runtime(struct device * parent)706 static void zpa2326_init_runtime(struct device *parent)
707 {
708 pm_runtime_get_noresume(parent);
709 pm_runtime_set_active(parent);
710 pm_runtime_enable(parent);
711 pm_runtime_set_autosuspend_delay(parent, 1000);
712 pm_runtime_use_autosuspend(parent);
713 pm_runtime_mark_last_busy(parent);
714 pm_runtime_put_autosuspend(parent);
715 }
716
zpa2326_fini_runtime(struct device * parent)717 static void zpa2326_fini_runtime(struct device *parent)
718 {
719 pm_runtime_disable(parent);
720 pm_runtime_set_suspended(parent);
721 }
722 #else /* !CONFIG_PM */
zpa2326_resume(const struct iio_dev * indio_dev)723 static int zpa2326_resume(const struct iio_dev *indio_dev)
724 {
725 zpa2326_enable_device(indio_dev);
726
727 return 0;
728 }
729
zpa2326_suspend(struct iio_dev * indio_dev)730 static void zpa2326_suspend(struct iio_dev *indio_dev)
731 {
732 zpa2326_sleep(indio_dev);
733 }
734
735 #define zpa2326_init_runtime(_parent)
736 #define zpa2326_fini_runtime(_parent)
737 #endif /* !CONFIG_PM */
738
739 /**
740 * zpa2326_handle_irq() - Process hardware interrupts.
741 * @irq: Interrupt line the hardware uses to notify new data has arrived.
742 * @data: The IIO device associated with the sampling hardware.
743 *
744 * Timestamp buffered samples as soon as possible then schedule threaded bottom
745 * half.
746 *
747 * Return: Always successful.
748 */
zpa2326_handle_irq(int irq,void * data)749 static irqreturn_t zpa2326_handle_irq(int irq, void *data)
750 {
751 struct iio_dev *indio_dev = data;
752
753 if (iio_buffer_enabled(indio_dev)) {
754 /* Timestamping needed for buffered sampling only. */
755 ((struct zpa2326_private *)
756 iio_priv(indio_dev))->timestamp = iio_get_time_ns(indio_dev);
757 }
758
759 return IRQ_WAKE_THREAD;
760 }
761
762 /**
763 * zpa2326_handle_threaded_irq() - Interrupt bottom-half handler.
764 * @irq: Interrupt line the hardware uses to notify new data has arrived.
765 * @data: The IIO device associated with the sampling hardware.
766 *
767 * Mainly ensures interrupt is caused by a real "new sample available"
768 * condition. This relies upon the ability to perform blocking / sleeping bus
769 * accesses to slave's registers. This is why zpa2326_handle_threaded_irq() is
770 * called from within a thread, i.e. not called from hard interrupt context.
771 *
772 * When device is using its own internal hardware trigger in continuous sampling
773 * mode, data are available into hardware FIFO once interrupt has occurred. All
774 * we have to do is to dispatch the trigger, which in turn will fetch data and
775 * fill IIO buffer.
776 *
777 * When not using its own internal hardware trigger, the device has been
778 * configured in one-shot mode either by an external trigger or the IIO read_raw
779 * hook. This means one of the latter is currently waiting for sampling
780 * completion, in which case we must simply wake it up.
781 *
782 * See zpa2326_trigger_handler().
783 *
784 * Return:
785 * %IRQ_NONE - no consistent interrupt happened ;
786 * %IRQ_HANDLED - there was new samples available.
787 */
zpa2326_handle_threaded_irq(int irq,void * data)788 static irqreturn_t zpa2326_handle_threaded_irq(int irq, void *data)
789 {
790 struct iio_dev *indio_dev = data;
791 struct zpa2326_private *priv = iio_priv(indio_dev);
792 unsigned int val;
793 bool cont;
794 irqreturn_t ret = IRQ_NONE;
795
796 /*
797 * Are we using our own internal trigger in triggered buffer mode, i.e.,
798 * currently working in continuous sampling mode ?
799 */
800 cont = (iio_buffer_enabled(indio_dev) &&
801 iio_trigger_using_own(indio_dev));
802
803 /*
804 * Device works according to a level interrupt scheme: reading interrupt
805 * status de-asserts interrupt line.
806 */
807 priv->result = regmap_read(priv->regmap, ZPA2326_INT_SOURCE_REG, &val);
808 if (priv->result < 0) {
809 if (cont)
810 return IRQ_NONE;
811
812 goto complete;
813 }
814
815 /* Data ready is the only interrupt source we requested. */
816 if (!(val & ZPA2326_INT_SOURCE_DATA_READY)) {
817 /*
818 * Interrupt happened but no new sample available: likely caused
819 * by spurious interrupts, in which case, returning IRQ_NONE
820 * allows to benefit from the generic spurious interrupts
821 * handling.
822 */
823 zpa2326_warn(indio_dev, "unexpected interrupt status %02x",
824 val);
825
826 if (cont)
827 return IRQ_NONE;
828
829 priv->result = -ENODATA;
830 goto complete;
831 }
832
833 /* New sample available: dispatch internal trigger consumers. */
834 iio_trigger_poll_nested(priv->trigger);
835
836 if (cont)
837 /*
838 * Internal hardware trigger has been scheduled above : it will
839 * fetch data on its own.
840 */
841 return IRQ_HANDLED;
842
843 ret = IRQ_HANDLED;
844
845 complete:
846 /*
847 * Wake up direct or externaly triggered buffer mode waiters: see
848 * zpa2326_sample_oneshot() and zpa2326_trigger_handler().
849 */
850 complete(&priv->data_ready);
851
852 return ret;
853 }
854
855 /**
856 * zpa2326_wait_oneshot_completion() - Wait for oneshot data ready interrupt.
857 * @indio_dev: The IIO device associated with the sampling hardware.
858 * @private: Internal private state related to @indio_dev.
859 *
860 * Return: Zero when successful, a negative error code otherwise.
861 */
zpa2326_wait_oneshot_completion(const struct iio_dev * indio_dev,struct zpa2326_private * private)862 static int zpa2326_wait_oneshot_completion(const struct iio_dev *indio_dev,
863 struct zpa2326_private *private)
864 {
865 unsigned int val;
866 long time_left;
867
868 zpa2326_dbg(indio_dev, "waiting for one shot completion interrupt");
869
870 time_left = wait_for_completion_interruptible_timeout(
871 &private->data_ready, ZPA2326_CONVERSION_JIFFIES);
872 if (time_left > 0)
873 /*
874 * Interrupt handler completed before timeout: return operation
875 * status.
876 */
877 return private->result;
878
879 /* Clear all interrupts just to be sure. */
880 regmap_read(private->regmap, ZPA2326_INT_SOURCE_REG, &val);
881
882 if (!time_left) {
883 /* Timed out. */
884 zpa2326_warn(indio_dev, "no one shot interrupt occurred (%ld)",
885 time_left);
886 return -ETIME;
887 }
888
889 zpa2326_warn(indio_dev, "wait for one shot interrupt cancelled");
890 return -ERESTARTSYS;
891 }
892
zpa2326_init_managed_irq(struct device * parent,struct iio_dev * indio_dev,struct zpa2326_private * private,int irq)893 static int zpa2326_init_managed_irq(struct device *parent,
894 struct iio_dev *indio_dev,
895 struct zpa2326_private *private,
896 int irq)
897 {
898 int err;
899
900 private->irq = irq;
901
902 if (irq <= 0) {
903 /*
904 * Platform declared no interrupt line: device will be polled
905 * for data availability.
906 */
907 dev_info(parent, "no interrupt found, running in polling mode");
908 return 0;
909 }
910
911 init_completion(&private->data_ready);
912
913 /* Request handler to be scheduled into threaded interrupt context. */
914 err = devm_request_threaded_irq(parent, irq, zpa2326_handle_irq,
915 zpa2326_handle_threaded_irq,
916 IRQF_TRIGGER_RISING | IRQF_ONESHOT,
917 dev_name(parent), indio_dev);
918 if (err) {
919 dev_err(parent, "failed to request interrupt %d (%d)", irq,
920 err);
921 return err;
922 }
923
924 dev_info(parent, "using interrupt %d", irq);
925
926 return 0;
927 }
928
929 /**
930 * zpa2326_poll_oneshot_completion() - Actively poll for one shot data ready.
931 * @indio_dev: The IIO device associated with the sampling hardware.
932 *
933 * Loop over registers content to detect end of sampling cycle. Used when DT
934 * declared no valid interrupt lines.
935 *
936 * Return: Zero when successful, a negative error code otherwise.
937 */
zpa2326_poll_oneshot_completion(const struct iio_dev * indio_dev)938 static int zpa2326_poll_oneshot_completion(const struct iio_dev *indio_dev)
939 {
940 unsigned long tmout = jiffies + ZPA2326_CONVERSION_JIFFIES;
941 struct regmap *regs = ((struct zpa2326_private *)
942 iio_priv(indio_dev))->regmap;
943 unsigned int val;
944 int err;
945
946 zpa2326_dbg(indio_dev, "polling for one shot completion");
947
948 /*
949 * At least, 100 ms is needed for the device to complete its one-shot
950 * cycle.
951 */
952 if (msleep_interruptible(100))
953 return -ERESTARTSYS;
954
955 /* Poll for conversion completion in hardware. */
956 while (true) {
957 err = regmap_read(regs, ZPA2326_CTRL_REG0_REG, &val);
958 if (err < 0)
959 goto err;
960
961 if (!(val & ZPA2326_CTRL_REG0_ONE_SHOT))
962 /* One-shot bit self clears at conversion end. */
963 break;
964
965 if (time_after(jiffies, tmout)) {
966 /* Prevent from waiting forever : let's time out. */
967 err = -ETIME;
968 goto err;
969 }
970
971 usleep_range(10000, 20000);
972 }
973
974 /*
975 * In oneshot mode, pressure sample availability guarantees that
976 * temperature conversion has also completed : just check pressure
977 * status bit to keep things simple.
978 */
979 err = regmap_read(regs, ZPA2326_STATUS_REG, &val);
980 if (err < 0)
981 goto err;
982
983 if (!(val & ZPA2326_STATUS_P_DA)) {
984 /* No sample available. */
985 err = -ENODATA;
986 goto err;
987 }
988
989 return 0;
990
991 err:
992 zpa2326_warn(indio_dev, "failed to poll one shot completion (%d)", err);
993
994 return err;
995 }
996
997 /**
998 * zpa2326_fetch_raw_sample() - Retrieve a raw sample and convert it to CPU
999 * endianness.
1000 * @indio_dev: The IIO device associated with the sampling hardware.
1001 * @type: Type of measurement / channel to fetch from.
1002 * @value: Sample output.
1003 *
1004 * Return: Zero when successful, a negative error code otherwise.
1005 */
zpa2326_fetch_raw_sample(const struct iio_dev * indio_dev,enum iio_chan_type type,int * value)1006 static int zpa2326_fetch_raw_sample(const struct iio_dev *indio_dev,
1007 enum iio_chan_type type,
1008 int *value)
1009 {
1010 struct regmap *regs = ((struct zpa2326_private *)
1011 iio_priv(indio_dev))->regmap;
1012 int err;
1013 u8 v[3];
1014
1015 switch (type) {
1016 case IIO_PRESSURE:
1017 zpa2326_dbg(indio_dev, "fetching raw pressure sample");
1018
1019 err = regmap_bulk_read(regs, ZPA2326_PRESS_OUT_XL_REG, v, sizeof(v));
1020 if (err) {
1021 zpa2326_warn(indio_dev, "failed to fetch pressure (%d)",
1022 err);
1023 return err;
1024 }
1025
1026 *value = get_unaligned_le24(&v[0]);
1027
1028 return IIO_VAL_INT;
1029
1030 case IIO_TEMP:
1031 zpa2326_dbg(indio_dev, "fetching raw temperature sample");
1032
1033 err = regmap_bulk_read(regs, ZPA2326_TEMP_OUT_L_REG, value, 2);
1034 if (err) {
1035 zpa2326_warn(indio_dev,
1036 "failed to fetch temperature (%d)", err);
1037 return err;
1038 }
1039
1040 /* Temperature is a 16 bits wide little-endian signed int. */
1041 *value = (int)le16_to_cpup((__le16 *)value);
1042
1043 return IIO_VAL_INT;
1044
1045 default:
1046 return -EINVAL;
1047 }
1048 }
1049
1050 /**
1051 * zpa2326_sample_oneshot() - Perform a complete one shot sampling cycle.
1052 * @indio_dev: The IIO device associated with the sampling hardware.
1053 * @type: Type of measurement / channel to fetch from.
1054 * @value: Sample output.
1055 *
1056 * Return: Zero when successful, a negative error code otherwise.
1057 */
zpa2326_sample_oneshot(struct iio_dev * indio_dev,enum iio_chan_type type,int * value)1058 static int zpa2326_sample_oneshot(struct iio_dev *indio_dev,
1059 enum iio_chan_type type,
1060 int *value)
1061 {
1062 int ret;
1063 struct zpa2326_private *priv;
1064
1065 if (!iio_device_claim_direct(indio_dev))
1066 return -EBUSY;
1067
1068 ret = zpa2326_resume(indio_dev);
1069 if (ret < 0)
1070 goto release;
1071
1072 priv = iio_priv(indio_dev);
1073
1074 if (ret > 0) {
1075 /*
1076 * We were already power supplied. Just clear hardware FIFO to
1077 * get rid of samples acquired during previous rounds (if any).
1078 * Sampling operation always generates both temperature and
1079 * pressure samples. The latter are always enqueued into
1080 * hardware FIFO. This may lead to situations were pressure
1081 * samples still sit into FIFO when previous cycle(s) fetched
1082 * temperature data only.
1083 * Hence, we need to clear hardware FIFO content to prevent from
1084 * getting outdated values at the end of current cycle.
1085 */
1086 if (type == IIO_PRESSURE) {
1087 ret = zpa2326_clear_fifo(indio_dev, 0);
1088 if (ret)
1089 goto suspend;
1090 }
1091 } else {
1092 /*
1093 * We have just been power supplied, i.e. device is in default
1094 * "out of reset" state, meaning we need to reconfigure it
1095 * entirely.
1096 */
1097 ret = zpa2326_config_oneshot(indio_dev, priv->irq);
1098 if (ret)
1099 goto suspend;
1100 }
1101
1102 /* Start a sampling cycle in oneshot mode. */
1103 ret = zpa2326_start_oneshot(indio_dev);
1104 if (ret)
1105 goto suspend;
1106
1107 /* Wait for sampling cycle to complete. */
1108 if (priv->irq > 0)
1109 ret = zpa2326_wait_oneshot_completion(indio_dev, priv);
1110 else
1111 ret = zpa2326_poll_oneshot_completion(indio_dev);
1112
1113 if (ret)
1114 goto suspend;
1115
1116 /* Retrieve raw sample value and convert it to CPU endianness. */
1117 ret = zpa2326_fetch_raw_sample(indio_dev, type, value);
1118
1119 suspend:
1120 zpa2326_suspend(indio_dev);
1121 release:
1122 iio_device_release_direct(indio_dev);
1123
1124 return ret;
1125 }
1126
1127 /**
1128 * zpa2326_trigger_handler() - Perform an IIO buffered sampling round in one
1129 * shot mode.
1130 * @irq: The software interrupt assigned to @data
1131 * @data: The IIO poll function dispatched by external trigger our device is
1132 * attached to.
1133 *
1134 * Bottom-half handler called by the IIO trigger to which our device is
1135 * currently attached. Allows us to synchronize this device buffered sampling
1136 * either with external events (such as timer expiration, external device sample
1137 * ready, etc...) or with its own interrupt (internal hardware trigger).
1138 *
1139 * When using an external trigger, basically run the same sequence of operations
1140 * as for zpa2326_sample_oneshot() with the following hereafter. Hardware FIFO
1141 * is not cleared since already done at buffering enable time and samples
1142 * dequeueing always retrieves the most recent value.
1143 *
1144 * Otherwise, when internal hardware trigger has dispatched us, just fetch data
1145 * from hardware FIFO.
1146 *
1147 * Fetched data will pushed unprocessed to IIO buffer since samples conversion
1148 * is delegated to userspace in buffered mode (endianness, etc...).
1149 *
1150 * Return:
1151 * %IRQ_NONE - no consistent interrupt happened ;
1152 * %IRQ_HANDLED - there was new samples available.
1153 */
zpa2326_trigger_handler(int irq,void * data)1154 static irqreturn_t zpa2326_trigger_handler(int irq, void *data)
1155 {
1156 struct iio_dev *indio_dev = ((struct iio_poll_func *)
1157 data)->indio_dev;
1158 struct zpa2326_private *priv = iio_priv(indio_dev);
1159 bool cont;
1160
1161 /*
1162 * We have been dispatched, meaning we are in triggered buffer mode.
1163 * Using our own internal trigger implies we are currently in continuous
1164 * hardware sampling mode.
1165 */
1166 cont = iio_trigger_using_own(indio_dev);
1167
1168 if (!cont) {
1169 /* On demand sampling : start a one shot cycle. */
1170 if (zpa2326_start_oneshot(indio_dev))
1171 goto out;
1172
1173 /* Wait for sampling cycle to complete. */
1174 if (priv->irq <= 0) {
1175 /* No interrupt available: poll for completion. */
1176 if (zpa2326_poll_oneshot_completion(indio_dev))
1177 goto out;
1178
1179 /* Only timestamp sample once it is ready. */
1180 priv->timestamp = iio_get_time_ns(indio_dev);
1181 } else {
1182 /* Interrupt handlers will timestamp for us. */
1183 if (zpa2326_wait_oneshot_completion(indio_dev, priv))
1184 goto out;
1185 }
1186 }
1187
1188 /* Enqueue to IIO buffer / userspace. */
1189 zpa2326_fill_sample_buffer(indio_dev, priv);
1190
1191 out:
1192 if (!cont)
1193 /* Don't switch to low power if sampling continuously. */
1194 zpa2326_sleep(indio_dev);
1195
1196 /* Inform attached trigger we are done. */
1197 iio_trigger_notify_done(indio_dev->trig);
1198
1199 return IRQ_HANDLED;
1200 }
1201
1202 /**
1203 * zpa2326_preenable_buffer() - Prepare device for configuring triggered
1204 * sampling
1205 * modes.
1206 * @indio_dev: The IIO device associated with the sampling hardware.
1207 *
1208 * Basically power up device.
1209 * Called with IIO device's lock held.
1210 *
1211 * Return: Zero when successful, a negative error code otherwise.
1212 */
zpa2326_preenable_buffer(struct iio_dev * indio_dev)1213 static int zpa2326_preenable_buffer(struct iio_dev *indio_dev)
1214 {
1215 int ret = zpa2326_resume(indio_dev);
1216
1217 if (ret < 0)
1218 return ret;
1219
1220 /* Tell zpa2326_postenable_buffer() if we have just been powered on. */
1221 ((struct zpa2326_private *)
1222 iio_priv(indio_dev))->waken = iio_priv(indio_dev);
1223
1224 return 0;
1225 }
1226
1227 /**
1228 * zpa2326_postenable_buffer() - Configure device for triggered sampling.
1229 * @indio_dev: The IIO device associated with the sampling hardware.
1230 *
1231 * Basically setup one-shot mode if plugging external trigger.
1232 * Otherwise, let internal trigger configure continuous sampling :
1233 * see zpa2326_set_trigger_state().
1234 *
1235 * If an error is returned, IIO layer will call our postdisable hook for us,
1236 * i.e. no need to explicitly power device off here.
1237 * Called with IIO device's lock held.
1238 *
1239 * Called with IIO device's lock held.
1240 *
1241 * Return: Zero when successful, a negative error code otherwise.
1242 */
zpa2326_postenable_buffer(struct iio_dev * indio_dev)1243 static int zpa2326_postenable_buffer(struct iio_dev *indio_dev)
1244 {
1245 const struct zpa2326_private *priv = iio_priv(indio_dev);
1246 int err;
1247
1248 if (!priv->waken) {
1249 /*
1250 * We were already power supplied. Just clear hardware FIFO to
1251 * get rid of samples acquired during previous rounds (if any).
1252 */
1253 err = zpa2326_clear_fifo(indio_dev, 0);
1254 if (err) {
1255 zpa2326_err(indio_dev,
1256 "failed to enable buffering (%d)", err);
1257 return err;
1258 }
1259 }
1260
1261 if (!iio_trigger_using_own(indio_dev) && priv->waken) {
1262 /*
1263 * We are using an external trigger and we have just been
1264 * powered up: reconfigure one-shot mode.
1265 */
1266 err = zpa2326_config_oneshot(indio_dev, priv->irq);
1267 if (err) {
1268 zpa2326_err(indio_dev,
1269 "failed to enable buffering (%d)", err);
1270 return err;
1271 }
1272 }
1273
1274 return 0;
1275 }
1276
zpa2326_postdisable_buffer(struct iio_dev * indio_dev)1277 static int zpa2326_postdisable_buffer(struct iio_dev *indio_dev)
1278 {
1279 zpa2326_suspend(indio_dev);
1280
1281 return 0;
1282 }
1283
1284 static const struct iio_buffer_setup_ops zpa2326_buffer_setup_ops = {
1285 .preenable = zpa2326_preenable_buffer,
1286 .postenable = zpa2326_postenable_buffer,
1287 .postdisable = zpa2326_postdisable_buffer
1288 };
1289
1290 /**
1291 * zpa2326_set_trigger_state() - Start / stop continuous sampling.
1292 * @trig: The trigger being attached to IIO device associated with the sampling
1293 * hardware.
1294 * @state: Tell whether to start (true) or stop (false)
1295 *
1296 * Basically enable / disable hardware continuous sampling mode.
1297 *
1298 * Called with IIO device's lock held at postenable() or predisable() time.
1299 *
1300 * Return: Zero when successful, a negative error code otherwise.
1301 */
zpa2326_set_trigger_state(struct iio_trigger * trig,bool state)1302 static int zpa2326_set_trigger_state(struct iio_trigger *trig, bool state)
1303 {
1304 const struct iio_dev *indio_dev = dev_get_drvdata(
1305 trig->dev.parent);
1306 const struct zpa2326_private *priv = iio_priv(indio_dev);
1307 int err;
1308
1309 if (!state) {
1310 /*
1311 * Switch trigger off : in case of failure, interrupt is left
1312 * disabled in order to prevent handler from accessing released
1313 * resources.
1314 */
1315 unsigned int val;
1316
1317 /*
1318 * As device is working in continuous mode, handlers may be
1319 * accessing resources we are currently freeing...
1320 * Prevent this by disabling interrupt handlers and ensure
1321 * the device will generate no more interrupts unless explicitly
1322 * required to, i.e. by restoring back to default one shot mode.
1323 */
1324 disable_irq(priv->irq);
1325
1326 /*
1327 * Disable continuous sampling mode to restore settings for
1328 * one shot / direct sampling operations.
1329 */
1330 err = regmap_write(priv->regmap, ZPA2326_CTRL_REG3_REG,
1331 zpa2326_highest_frequency()->odr);
1332 if (err)
1333 return err;
1334
1335 /*
1336 * Now that device won't generate interrupts on its own,
1337 * acknowledge any currently active interrupts (may happen on
1338 * rare occasions while stopping continuous mode).
1339 */
1340 err = regmap_read(priv->regmap, ZPA2326_INT_SOURCE_REG, &val);
1341 if (err < 0)
1342 return err;
1343
1344 /*
1345 * Re-enable interrupts only if we can guarantee the device will
1346 * generate no more interrupts to prevent handlers from
1347 * accessing released resources.
1348 */
1349 enable_irq(priv->irq);
1350
1351 zpa2326_dbg(indio_dev, "continuous mode stopped");
1352 } else {
1353 /*
1354 * Switch trigger on : start continuous sampling at required
1355 * frequency.
1356 */
1357
1358 if (priv->waken) {
1359 /* Enable interrupt if getting out of reset. */
1360 err = regmap_write(priv->regmap, ZPA2326_CTRL_REG1_REG,
1361 (u8)
1362 ~ZPA2326_CTRL_REG1_MASK_DATA_READY);
1363 if (err)
1364 return err;
1365 }
1366
1367 /* Enable continuous sampling at specified frequency. */
1368 err = regmap_write(priv->regmap, ZPA2326_CTRL_REG3_REG,
1369 ZPA2326_CTRL_REG3_ENABLE_MEAS |
1370 priv->frequency->odr);
1371 if (err)
1372 return err;
1373
1374 zpa2326_dbg(indio_dev, "continuous mode setup @%dHz",
1375 priv->frequency->hz);
1376 }
1377
1378 return 0;
1379 }
1380
1381 static const struct iio_trigger_ops zpa2326_trigger_ops = {
1382 .set_trigger_state = zpa2326_set_trigger_state,
1383 };
1384
1385 /**
1386 * zpa2326_init_managed_trigger() - Create interrupt driven / hardware trigger
1387 * allowing to notify external devices a new sample is
1388 * ready.
1389 * @parent: Hardware sampling device @indio_dev is a child of.
1390 * @indio_dev: The IIO device associated with the sampling hardware.
1391 * @private: Internal private state related to @indio_dev.
1392 * @irq: Optional interrupt line the hardware uses to notify new data
1393 * samples are ready. Negative or zero values indicate no interrupts
1394 * are available, meaning polling is required.
1395 *
1396 * Only relevant when DT declares a valid interrupt line.
1397 *
1398 * Return: Zero when successful, a negative error code otherwise.
1399 */
zpa2326_init_managed_trigger(struct device * parent,struct iio_dev * indio_dev,struct zpa2326_private * private,int irq)1400 static int zpa2326_init_managed_trigger(struct device *parent,
1401 struct iio_dev *indio_dev,
1402 struct zpa2326_private *private,
1403 int irq)
1404 {
1405 struct iio_trigger *trigger;
1406 int ret;
1407
1408 if (irq <= 0)
1409 return 0;
1410
1411 trigger = devm_iio_trigger_alloc(parent, "%s-dev%d",
1412 indio_dev->name,
1413 iio_device_id(indio_dev));
1414 if (!trigger)
1415 return -ENOMEM;
1416
1417 /* Basic setup. */
1418 trigger->ops = &zpa2326_trigger_ops;
1419
1420 private->trigger = trigger;
1421
1422 /* Register to triggers space. */
1423 ret = devm_iio_trigger_register(parent, trigger);
1424 if (ret)
1425 dev_err(parent, "failed to register hardware trigger (%d)",
1426 ret);
1427
1428 return ret;
1429 }
1430
zpa2326_get_frequency(const struct iio_dev * indio_dev)1431 static int zpa2326_get_frequency(const struct iio_dev *indio_dev)
1432 {
1433 return ((struct zpa2326_private *)iio_priv(indio_dev))->frequency->hz;
1434 }
1435
zpa2326_set_frequency(struct iio_dev * indio_dev,int hz)1436 static int zpa2326_set_frequency(struct iio_dev *indio_dev, int hz)
1437 {
1438 struct zpa2326_private *priv = iio_priv(indio_dev);
1439 int freq;
1440
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)
1444 break;
1445 if (freq == ARRAY_SIZE(zpa2326_sampling_frequencies))
1446 return -EINVAL;
1447
1448 /* Don't allow changing frequency if buffered sampling is ongoing. */
1449 if (!iio_device_claim_direct(indio_dev))
1450 return -EBUSY;
1451
1452 priv->frequency = &zpa2326_sampling_frequencies[freq];
1453
1454 iio_device_release_direct(indio_dev);
1455
1456 return 0;
1457 }
1458
1459 /* Expose supported hardware sampling frequencies (Hz) through sysfs. */
1460 static IIO_CONST_ATTR_SAMP_FREQ_AVAIL("1 5 11 23");
1461
1462 static struct attribute *zpa2326_attributes[] = {
1463 &iio_const_attr_sampling_frequency_available.dev_attr.attr,
1464 NULL
1465 };
1466
1467 static const struct attribute_group zpa2326_attribute_group = {
1468 .attrs = zpa2326_attributes,
1469 };
1470
zpa2326_read_raw(struct iio_dev * indio_dev,struct iio_chan_spec const * chan,int * val,int * val2,long mask)1471 static int zpa2326_read_raw(struct iio_dev *indio_dev,
1472 struct iio_chan_spec const *chan,
1473 int *val,
1474 int *val2,
1475 long mask)
1476 {
1477 switch (mask) {
1478 case IIO_CHAN_INFO_RAW:
1479 return zpa2326_sample_oneshot(indio_dev, chan->type, val);
1480
1481 case IIO_CHAN_INFO_SCALE:
1482 switch (chan->type) {
1483 case IIO_PRESSURE:
1484 /*
1485 * Pressure resolution is 1/64 Pascal. Scale to kPascal
1486 * as required by IIO ABI.
1487 */
1488 *val = 1;
1489 *val2 = 64000;
1490 return IIO_VAL_FRACTIONAL;
1491
1492 case IIO_TEMP:
1493 /*
1494 * Temperature follows the equation:
1495 * Temp[degC] = Tempcode * 0.00649 - 176.83
1496 * where:
1497 * Tempcode is composed the raw sampled 16 bits.
1498 *
1499 * Hence, to produce a temperature in milli-degrees
1500 * Celsius according to IIO ABI, we need to apply the
1501 * following equation to raw samples:
1502 * Temp[milli degC] = (Tempcode + Offset) * Scale
1503 * where:
1504 * Offset = -176.83 / 0.00649
1505 * Scale = 0.00649 * 1000
1506 */
1507 *val = 6;
1508 *val2 = 490000;
1509 return IIO_VAL_INT_PLUS_MICRO;
1510
1511 default:
1512 return -EINVAL;
1513 }
1514
1515 case IIO_CHAN_INFO_OFFSET:
1516 switch (chan->type) {
1517 case IIO_TEMP:
1518 *val = -17683000;
1519 *val2 = 649;
1520 return IIO_VAL_FRACTIONAL;
1521
1522 default:
1523 return -EINVAL;
1524 }
1525
1526 case IIO_CHAN_INFO_SAMP_FREQ:
1527 *val = zpa2326_get_frequency(indio_dev);
1528 return IIO_VAL_INT;
1529
1530 default:
1531 return -EINVAL;
1532 }
1533 }
1534
zpa2326_write_raw(struct iio_dev * indio_dev,const struct iio_chan_spec * chan,int val,int val2,long mask)1535 static int zpa2326_write_raw(struct iio_dev *indio_dev,
1536 const struct iio_chan_spec *chan,
1537 int val,
1538 int val2,
1539 long mask)
1540 {
1541 if ((mask != IIO_CHAN_INFO_SAMP_FREQ) || val2)
1542 return -EINVAL;
1543
1544 return zpa2326_set_frequency(indio_dev, val);
1545 }
1546
1547 static const struct iio_chan_spec zpa2326_channels[] = {
1548 [0] = {
1549 .type = IIO_PRESSURE,
1550 .scan_index = 0,
1551 .scan_type = {
1552 .sign = 'u',
1553 .realbits = 24,
1554 .storagebits = 32,
1555 .endianness = IIO_LE,
1556 },
1557 .info_mask_separate = BIT(IIO_CHAN_INFO_RAW) |
1558 BIT(IIO_CHAN_INFO_SCALE),
1559 .info_mask_shared_by_all = BIT(IIO_CHAN_INFO_SAMP_FREQ),
1560 },
1561 [1] = {
1562 .type = IIO_TEMP,
1563 .scan_index = 1,
1564 .scan_type = {
1565 .sign = 's',
1566 .realbits = 16,
1567 .storagebits = 16,
1568 .endianness = IIO_LE,
1569 },
1570 .info_mask_separate = BIT(IIO_CHAN_INFO_RAW) |
1571 BIT(IIO_CHAN_INFO_SCALE) |
1572 BIT(IIO_CHAN_INFO_OFFSET),
1573 .info_mask_shared_by_all = BIT(IIO_CHAN_INFO_SAMP_FREQ),
1574 },
1575 [2] = IIO_CHAN_SOFT_TIMESTAMP(2),
1576 };
1577
1578 static const struct iio_info zpa2326_info = {
1579 .attrs = &zpa2326_attribute_group,
1580 .read_raw = zpa2326_read_raw,
1581 .write_raw = zpa2326_write_raw,
1582 };
1583
zpa2326_create_managed_iiodev(struct device * device,const char * name,struct regmap * regmap)1584 static struct iio_dev *zpa2326_create_managed_iiodev(struct device *device,
1585 const char *name,
1586 struct regmap *regmap)
1587 {
1588 struct iio_dev *indio_dev;
1589
1590 /* Allocate space to hold IIO device internal state. */
1591 indio_dev = devm_iio_device_alloc(device,
1592 sizeof(struct zpa2326_private));
1593 if (!indio_dev)
1594 return NULL;
1595
1596 /* Setup for userspace synchronous on demand sampling. */
1597 indio_dev->modes = INDIO_DIRECT_MODE;
1598 indio_dev->channels = zpa2326_channels;
1599 indio_dev->num_channels = ARRAY_SIZE(zpa2326_channels);
1600 indio_dev->name = name;
1601 indio_dev->info = &zpa2326_info;
1602
1603 return indio_dev;
1604 }
1605
zpa2326_probe(struct device * parent,const char * name,int irq,unsigned int hwid,struct regmap * regmap)1606 int zpa2326_probe(struct device *parent,
1607 const char *name,
1608 int irq,
1609 unsigned int hwid,
1610 struct regmap *regmap)
1611 {
1612 struct iio_dev *indio_dev;
1613 struct zpa2326_private *priv;
1614 int err;
1615 unsigned int id;
1616
1617 indio_dev = zpa2326_create_managed_iiodev(parent, name, regmap);
1618 if (!indio_dev)
1619 return -ENOMEM;
1620
1621 priv = iio_priv(indio_dev);
1622
1623 priv->vref = devm_regulator_get(parent, "vref");
1624 if (IS_ERR(priv->vref))
1625 return PTR_ERR(priv->vref);
1626
1627 priv->vdd = devm_regulator_get(parent, "vdd");
1628 if (IS_ERR(priv->vdd))
1629 return PTR_ERR(priv->vdd);
1630
1631 /* Set default hardware sampling frequency to highest rate supported. */
1632 priv->frequency = zpa2326_highest_frequency();
1633
1634 /*
1635 * Plug device's underlying bus abstraction : this MUST be set before
1636 * registering interrupt handlers since an interrupt might happen if
1637 * power up sequence is not properly applied.
1638 */
1639 priv->regmap = regmap;
1640
1641 err = devm_iio_triggered_buffer_setup(parent, indio_dev, NULL,
1642 zpa2326_trigger_handler,
1643 &zpa2326_buffer_setup_ops);
1644 if (err)
1645 return err;
1646
1647 err = zpa2326_init_managed_trigger(parent, indio_dev, priv, irq);
1648 if (err)
1649 return err;
1650
1651 err = zpa2326_init_managed_irq(parent, indio_dev, priv, irq);
1652 if (err)
1653 return err;
1654
1655 /* Power up to check device ID and perform initial hardware setup. */
1656 err = zpa2326_power_on(indio_dev, priv);
1657 if (err)
1658 return err;
1659
1660 /* Read id register to check we are talking to the right slave. */
1661 err = regmap_read(regmap, ZPA2326_DEVICE_ID_REG, &id);
1662 if (err)
1663 goto sleep;
1664
1665 if (id != hwid) {
1666 dev_err(parent, "found device with unexpected id %02x", id);
1667 err = -ENODEV;
1668 goto sleep;
1669 }
1670
1671 err = zpa2326_config_oneshot(indio_dev, irq);
1672 if (err)
1673 goto sleep;
1674
1675 /* Setup done : go sleeping. Device will be awaken upon user request. */
1676 err = zpa2326_sleep(indio_dev);
1677 if (err)
1678 goto poweroff;
1679
1680 dev_set_drvdata(parent, indio_dev);
1681
1682 zpa2326_init_runtime(parent);
1683
1684 err = iio_device_register(indio_dev);
1685 if (err) {
1686 zpa2326_fini_runtime(parent);
1687 goto poweroff;
1688 }
1689
1690 return 0;
1691
1692 sleep:
1693 /* Put to sleep just in case power regulators are "dummy" ones. */
1694 zpa2326_sleep(indio_dev);
1695 poweroff:
1696 zpa2326_power_off(indio_dev, priv);
1697
1698 return err;
1699 }
1700 EXPORT_SYMBOL_NS_GPL(zpa2326_probe, "IIO_ZPA2326");
1701
zpa2326_remove(const struct device * parent)1702 void zpa2326_remove(const struct device *parent)
1703 {
1704 struct iio_dev *indio_dev = dev_get_drvdata(parent);
1705
1706 iio_device_unregister(indio_dev);
1707 zpa2326_fini_runtime(indio_dev->dev.parent);
1708 zpa2326_sleep(indio_dev);
1709 zpa2326_power_off(indio_dev, iio_priv(indio_dev));
1710 }
1711 EXPORT_SYMBOL_NS_GPL(zpa2326_remove, "IIO_ZPA2326");
1712
1713 MODULE_AUTHOR("Gregor Boirie <gregor.boirie@parrot.com>");
1714 MODULE_DESCRIPTION("Core driver for Murata ZPA2326 pressure sensor");
1715 MODULE_LICENSE("GPL v2");
1716