Jonathan Cameron | e647700 | 2011-10-14 16:34:14 +0100 | [diff] [blame] | 1 | /** |
| 2 | * Copyright (c) 2011 Jonathan Cameron |
| 3 | * |
| 4 | * This program is free software; you can redistribute it and/or modify it |
| 5 | * under the terms of the GNU General Public License version 2 as published by |
| 6 | * the Free Software Foundation. |
| 7 | * |
| 8 | * Join together the various functionality of iio_simple_dummy driver |
| 9 | */ |
| 10 | |
Roberta Dobrescu | f3f883b | 2014-09-25 16:58:07 +0300 | [diff] [blame] | 11 | #ifndef _IIO_SIMPLE_DUMMY_H_ |
| 12 | #define _IIO_SIMPLE_DUMMY_H_ |
Jonathan Cameron | e647700 | 2011-10-14 16:34:14 +0100 | [diff] [blame] | 13 | #include <linux/kernel.h> |
| 14 | |
| 15 | struct iio_dummy_accel_calibscale; |
Daniel Baluta | 356ae94 | 2014-11-10 14:45:29 +0200 | [diff] [blame] | 16 | struct iio_dummy_regs; |
Jonathan Cameron | e647700 | 2011-10-14 16:34:14 +0100 | [diff] [blame] | 17 | |
| 18 | /** |
| 19 | * struct iio_dummy_state - device instance specific state. |
| 20 | * @dac_val: cache for dac value |
| 21 | * @single_ended_adc_val: cache for single ended adc value |
| 22 | * @differential_adc_val: cache for differential adc value |
| 23 | * @accel_val: cache for acceleration value |
| 24 | * @accel_calibbias: cache for acceleration calibbias |
| 25 | * @accel_calibscale: cache for acceleration calibscale |
| 26 | * @lock: lock to ensure state is consistent |
| 27 | * @event_irq: irq number for event line (faked) |
Carlos E. Garcia | 69e98df | 2015-04-24 09:40:42 -0400 | [diff] [blame] | 28 | * @event_val: cache for event threshold value |
Jonathan Cameron | e647700 | 2011-10-14 16:34:14 +0100 | [diff] [blame] | 29 | * @event_en: cache of whether event is enabled |
| 30 | */ |
| 31 | struct iio_dummy_state { |
| 32 | int dac_val; |
| 33 | int single_ended_adc_val; |
| 34 | int differential_adc_val[2]; |
| 35 | int accel_val; |
| 36 | int accel_calibbias; |
Daniel Baluta | 3e34e65 | 2014-11-10 14:45:34 +0200 | [diff] [blame] | 37 | int activity_running; |
| 38 | int activity_walking; |
Jonathan Cameron | e647700 | 2011-10-14 16:34:14 +0100 | [diff] [blame] | 39 | const struct iio_dummy_accel_calibscale *accel_calibscale; |
| 40 | struct mutex lock; |
Daniel Baluta | 356ae94 | 2014-11-10 14:45:29 +0200 | [diff] [blame] | 41 | struct iio_dummy_regs *regs; |
Daniel Baluta | 3e34e65 | 2014-11-10 14:45:34 +0200 | [diff] [blame] | 42 | int steps_enabled; |
| 43 | int steps; |
| 44 | int height; |
Jonathan Cameron | e647700 | 2011-10-14 16:34:14 +0100 | [diff] [blame] | 45 | #ifdef CONFIG_IIO_SIMPLE_DUMMY_EVENTS |
| 46 | int event_irq; |
| 47 | int event_val; |
| 48 | bool event_en; |
Cristina Opriceana | fd2bb31 | 2015-09-11 16:59:30 +0300 | [diff] [blame] | 49 | s64 event_timestamp; |
Jonathan Cameron | e647700 | 2011-10-14 16:34:14 +0100 | [diff] [blame] | 50 | #endif /* CONFIG_IIO_SIMPLE_DUMMY_EVENTS */ |
| 51 | }; |
| 52 | |
| 53 | #ifdef CONFIG_IIO_SIMPLE_DUMMY_EVENTS |
| 54 | |
| 55 | struct iio_dev; |
| 56 | |
| 57 | int iio_simple_dummy_read_event_config(struct iio_dev *indio_dev, |
Lars-Peter Clausen | bda624b | 2013-10-07 15:11:00 +0100 | [diff] [blame] | 58 | const struct iio_chan_spec *chan, |
| 59 | enum iio_event_type type, |
| 60 | enum iio_event_direction dir); |
Jonathan Cameron | e647700 | 2011-10-14 16:34:14 +0100 | [diff] [blame] | 61 | |
| 62 | int iio_simple_dummy_write_event_config(struct iio_dev *indio_dev, |
Lars-Peter Clausen | bda624b | 2013-10-07 15:11:00 +0100 | [diff] [blame] | 63 | const struct iio_chan_spec *chan, |
| 64 | enum iio_event_type type, |
| 65 | enum iio_event_direction dir, |
Jonathan Cameron | e647700 | 2011-10-14 16:34:14 +0100 | [diff] [blame] | 66 | int state); |
| 67 | |
| 68 | int iio_simple_dummy_read_event_value(struct iio_dev *indio_dev, |
Lars-Peter Clausen | bda624b | 2013-10-07 15:11:00 +0100 | [diff] [blame] | 69 | const struct iio_chan_spec *chan, |
| 70 | enum iio_event_type type, |
| 71 | enum iio_event_direction dir, |
| 72 | enum iio_event_info info, int *val, |
| 73 | int *val2); |
Jonathan Cameron | e647700 | 2011-10-14 16:34:14 +0100 | [diff] [blame] | 74 | |
| 75 | int iio_simple_dummy_write_event_value(struct iio_dev *indio_dev, |
Lars-Peter Clausen | bda624b | 2013-10-07 15:11:00 +0100 | [diff] [blame] | 76 | const struct iio_chan_spec *chan, |
| 77 | enum iio_event_type type, |
| 78 | enum iio_event_direction dir, |
| 79 | enum iio_event_info info, int val, |
| 80 | int val2); |
Jonathan Cameron | e647700 | 2011-10-14 16:34:14 +0100 | [diff] [blame] | 81 | |
| 82 | int iio_simple_dummy_events_register(struct iio_dev *indio_dev); |
Vladimirs Ambrosovs | 62a90da | 2015-05-30 11:20:16 +0300 | [diff] [blame] | 83 | void iio_simple_dummy_events_unregister(struct iio_dev *indio_dev); |
Jonathan Cameron | e647700 | 2011-10-14 16:34:14 +0100 | [diff] [blame] | 84 | |
| 85 | #else /* Stubs for when events are disabled at compile time */ |
| 86 | |
| 87 | static inline int |
| 88 | iio_simple_dummy_events_register(struct iio_dev *indio_dev) |
| 89 | { |
| 90 | return 0; |
| 91 | }; |
| 92 | |
Vladimirs Ambrosovs | 62a90da | 2015-05-30 11:20:16 +0300 | [diff] [blame] | 93 | static inline void |
Jonathan Cameron | e647700 | 2011-10-14 16:34:14 +0100 | [diff] [blame] | 94 | iio_simple_dummy_events_unregister(struct iio_dev *indio_dev) |
Vladimirs Ambrosovs | 62a90da | 2015-05-30 11:20:16 +0300 | [diff] [blame] | 95 | { }; |
Jonathan Cameron | e647700 | 2011-10-14 16:34:14 +0100 | [diff] [blame] | 96 | |
| 97 | #endif /* CONFIG_IIO_SIMPLE_DUMMY_EVENTS*/ |
| 98 | |
Jonathan Cameron | 9ad2e2e | 2011-10-14 16:34:15 +0100 | [diff] [blame] | 99 | /** |
| 100 | * enum iio_simple_dummy_scan_elements - scan index enum |
Alison Schofield | f8087ab | 2015-10-26 13:48:23 -0700 | [diff] [blame] | 101 | * @DUMMY_INDEX_VOLTAGE_0: the single ended voltage channel |
| 102 | * @DUMMY_INDEX_DIFFVOLTAGE_1M2: first differential channel |
| 103 | * @DUMMY_INDEX_DIFFVOLTAGE_3M4: second differential channel |
| 104 | * @DUMMY_INDEX_ACCELX: acceleration channel |
Jonathan Cameron | 9ad2e2e | 2011-10-14 16:34:15 +0100 | [diff] [blame] | 105 | * |
| 106 | * Enum provides convenient numbering for the scan index. |
| 107 | */ |
| 108 | enum iio_simple_dummy_scan_elements { |
Alison Schofield | f8087ab | 2015-10-26 13:48:23 -0700 | [diff] [blame] | 109 | DUMMY_INDEX_VOLTAGE_0, |
| 110 | DUMMY_INDEX_DIFFVOLTAGE_1M2, |
| 111 | DUMMY_INDEX_DIFFVOLTAGE_3M4, |
| 112 | DUMMY_INDEX_ACCELX, |
Jonathan Cameron | 9ad2e2e | 2011-10-14 16:34:15 +0100 | [diff] [blame] | 113 | }; |
Jonathan Cameron | e647700 | 2011-10-14 16:34:14 +0100 | [diff] [blame] | 114 | |
Jonathan Cameron | 9ad2e2e | 2011-10-14 16:34:15 +0100 | [diff] [blame] | 115 | #ifdef CONFIG_IIO_SIMPLE_DUMMY_BUFFER |
Lars-Peter Clausen | 4ae0301 | 2014-11-26 18:55:11 +0100 | [diff] [blame] | 116 | int iio_simple_dummy_configure_buffer(struct iio_dev *indio_dev); |
Jonathan Cameron | 9ad2e2e | 2011-10-14 16:34:15 +0100 | [diff] [blame] | 117 | void iio_simple_dummy_unconfigure_buffer(struct iio_dev *indio_dev); |
| 118 | #else |
Vlad Dogaru | 75d44ce | 2014-12-29 11:50:16 +0200 | [diff] [blame] | 119 | static inline int iio_simple_dummy_configure_buffer(struct iio_dev *indio_dev) |
Jonathan Cameron | 9ad2e2e | 2011-10-14 16:34:15 +0100 | [diff] [blame] | 120 | { |
| 121 | return 0; |
| 122 | }; |
Cristina Opriceana | 862cb6c | 2015-07-10 17:10:21 +0300 | [diff] [blame] | 123 | |
Jonathan Cameron | 9ad2e2e | 2011-10-14 16:34:15 +0100 | [diff] [blame] | 124 | static inline |
| 125 | void iio_simple_dummy_unconfigure_buffer(struct iio_dev *indio_dev) |
| 126 | {}; |
Roberta Dobrescu | f3f883b | 2014-09-25 16:58:07 +0300 | [diff] [blame] | 127 | |
Jonathan Cameron | 9ad2e2e | 2011-10-14 16:34:15 +0100 | [diff] [blame] | 128 | #endif /* CONFIG_IIO_SIMPLE_DUMMY_BUFFER */ |
Roberta Dobrescu | f3f883b | 2014-09-25 16:58:07 +0300 | [diff] [blame] | 129 | #endif /* _IIO_SIMPLE_DUMMY_H_ */ |