blob: d9b7e0f306c6d196aea28162285e52c39848596c [file] [log] [blame]
Lars-Peter Clausen70421222012-02-13 10:25:34 +01001/* Industrialio event test code.
2 *
3 * Copyright (c) 2011-2012 Lars-Peter Clausen <lars@metafoo.de>
4 *
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 as published by
7 * the Free Software Foundation.
8 *
9 * This program is primarily intended as an example application.
10 * Reads the current buffer setup from sysfs and starts a short capture
11 * from the specified device, pretty printing the result after appropriate
12 * conversion.
13 *
14 * Usage:
15 * iio_event_monitor <device_name>
Lars-Peter Clausen70421222012-02-13 10:25:34 +010016 */
17
Lars-Peter Clausen70421222012-02-13 10:25:34 +010018#include <unistd.h>
Roberta Dobrescubdcb31d2015-02-26 10:49:24 +020019#include <stdlib.h>
Lars-Peter Clausen70421222012-02-13 10:25:34 +010020#include <stdbool.h>
21#include <stdio.h>
22#include <errno.h>
23#include <string.h>
24#include <poll.h>
25#include <fcntl.h>
26#include <sys/ioctl.h>
27#include "iio_utils.h"
Jonathan Cameron06458e22012-04-25 15:54:58 +010028#include <linux/iio/events.h>
Roberta Dobrescu95763852015-02-26 10:49:23 +020029#include <linux/iio/types.h>
Lars-Peter Clausen70421222012-02-13 10:25:34 +010030
31static const char * const iio_chan_type_name_spec[] = {
32 [IIO_VOLTAGE] = "voltage",
33 [IIO_CURRENT] = "current",
34 [IIO_POWER] = "power",
35 [IIO_ACCEL] = "accel",
36 [IIO_ANGL_VEL] = "anglvel",
37 [IIO_MAGN] = "magn",
38 [IIO_LIGHT] = "illuminance",
39 [IIO_INTENSITY] = "intensity",
40 [IIO_PROXIMITY] = "proximity",
41 [IIO_TEMP] = "temp",
42 [IIO_INCLI] = "incli",
43 [IIO_ROT] = "rot",
44 [IIO_ANGL] = "angl",
45 [IIO_TIMESTAMP] = "timestamp",
46 [IIO_CAPACITANCE] = "capacitance",
Peter Meerwalda2160142012-06-15 19:25:26 +020047 [IIO_ALTVOLTAGE] = "altvoltage",
Peter Meerwald03782502014-12-06 06:00:00 +000048 [IIO_CCT] = "cct",
49 [IIO_PRESSURE] = "pressure",
50 [IIO_HUMIDITYRELATIVE] = "humidityrelative",
Daniel Baluta282a5662014-11-10 14:45:35 +020051 [IIO_ACTIVITY] = "activity",
52 [IIO_STEPS] = "steps",
Peter Meerwald30e83262015-06-20 23:52:31 +020053 [IIO_ENERGY] = "energy",
54 [IIO_DISTANCE] = "distance",
55 [IIO_VELOCITY] = "velocity",
Peter Meerwald-Stadler6ad515c2016-03-15 22:54:51 +010056 [IIO_CONCENTRATION] = "concentration",
57 [IIO_RESISTANCE] = "resistance",
58 [IIO_PH] = "ph",
Peter Meerwald-Stadlerd4094042016-03-20 16:20:23 +010059 [IIO_UVINDEX] = "uvindex",
Lars-Peter Clausen70421222012-02-13 10:25:34 +010060};
61
62static const char * const iio_ev_type_text[] = {
63 [IIO_EV_TYPE_THRESH] = "thresh",
64 [IIO_EV_TYPE_MAG] = "mag",
65 [IIO_EV_TYPE_ROC] = "roc",
66 [IIO_EV_TYPE_THRESH_ADAPTIVE] = "thresh_adaptive",
67 [IIO_EV_TYPE_MAG_ADAPTIVE] = "mag_adaptive",
Irina Tirdea27be8422015-01-11 21:10:11 +020068 [IIO_EV_TYPE_CHANGE] = "change",
Lars-Peter Clausen70421222012-02-13 10:25:34 +010069};
70
71static const char * const iio_ev_dir_text[] = {
72 [IIO_EV_DIR_EITHER] = "either",
73 [IIO_EV_DIR_RISING] = "rising",
74 [IIO_EV_DIR_FALLING] = "falling"
75};
76
77static const char * const iio_modifier_names[] = {
78 [IIO_MOD_X] = "x",
79 [IIO_MOD_Y] = "y",
80 [IIO_MOD_Z] = "z",
Roberta Dobrescu0a6e2172014-10-22 16:50:17 +030081 [IIO_MOD_X_AND_Y] = "x&y",
82 [IIO_MOD_X_AND_Z] = "x&z",
83 [IIO_MOD_Y_AND_Z] = "y&z",
84 [IIO_MOD_X_AND_Y_AND_Z] = "x&y&z",
85 [IIO_MOD_X_OR_Y] = "x|y",
86 [IIO_MOD_X_OR_Z] = "x|z",
87 [IIO_MOD_Y_OR_Z] = "y|z",
88 [IIO_MOD_X_OR_Y_OR_Z] = "x|y|z",
Lars-Peter Clausen70421222012-02-13 10:25:34 +010089 [IIO_MOD_LIGHT_BOTH] = "both",
90 [IIO_MOD_LIGHT_IR] = "ir",
Peter Meerwaldda4db942012-07-01 12:20:13 +020091 [IIO_MOD_ROOT_SUM_SQUARED_X_Y] = "sqrt(x^2+y^2)",
92 [IIO_MOD_SUM_SQUARED_X_Y_Z] = "x^2+y^2+z^2",
93 [IIO_MOD_LIGHT_CLEAR] = "clear",
94 [IIO_MOD_LIGHT_RED] = "red",
95 [IIO_MOD_LIGHT_GREEN] = "green",
96 [IIO_MOD_LIGHT_BLUE] = "blue",
Peter Meerwald-Stadler2c5ff1f2016-03-20 16:20:22 +010097 [IIO_MOD_LIGHT_UV] = "uv",
Roberta Dobrescu0a6e2172014-10-22 16:50:17 +030098 [IIO_MOD_QUATERNION] = "quaternion",
99 [IIO_MOD_TEMP_AMBIENT] = "ambient",
100 [IIO_MOD_TEMP_OBJECT] = "object",
101 [IIO_MOD_NORTH_MAGN] = "from_north_magnetic",
102 [IIO_MOD_NORTH_TRUE] = "from_north_true",
103 [IIO_MOD_NORTH_MAGN_TILT_COMP] = "from_north_magnetic_tilt_comp",
104 [IIO_MOD_NORTH_TRUE_TILT_COMP] = "from_north_true_tilt_comp",
Daniel Baluta282a5662014-11-10 14:45:35 +0200105 [IIO_MOD_RUNNING] = "running",
106 [IIO_MOD_JOGGING] = "jogging",
107 [IIO_MOD_WALKING] = "walking",
108 [IIO_MOD_STILL] = "still",
Peter Meerwald30e83262015-06-20 23:52:31 +0200109 [IIO_MOD_ROOT_SUM_SQUARED_X_Y_Z] = "sqrt(x^2+y^2+z^2)",
Peter Meerwald-Stadler6ad515c2016-03-15 22:54:51 +0100110 [IIO_MOD_I] = "i",
111 [IIO_MOD_Q] = "q",
112 [IIO_MOD_CO2] = "co2",
113 [IIO_MOD_VOC] = "voc",
Lars-Peter Clausen70421222012-02-13 10:25:34 +0100114};
115
116static bool event_is_known(struct iio_event_data *event)
117{
118 enum iio_chan_type type = IIO_EVENT_CODE_EXTRACT_CHAN_TYPE(event->id);
119 enum iio_modifier mod = IIO_EVENT_CODE_EXTRACT_MODIFIER(event->id);
120 enum iio_event_type ev_type = IIO_EVENT_CODE_EXTRACT_TYPE(event->id);
121 enum iio_event_direction dir = IIO_EVENT_CODE_EXTRACT_DIR(event->id);
122
123 switch (type) {
124 case IIO_VOLTAGE:
125 case IIO_CURRENT:
126 case IIO_POWER:
127 case IIO_ACCEL:
128 case IIO_ANGL_VEL:
129 case IIO_MAGN:
130 case IIO_LIGHT:
131 case IIO_INTENSITY:
132 case IIO_PROXIMITY:
133 case IIO_TEMP:
134 case IIO_INCLI:
135 case IIO_ROT:
136 case IIO_ANGL:
137 case IIO_TIMESTAMP:
138 case IIO_CAPACITANCE:
Peter Meerwalda2160142012-06-15 19:25:26 +0200139 case IIO_ALTVOLTAGE:
Peter Meerwald03782502014-12-06 06:00:00 +0000140 case IIO_CCT:
141 case IIO_PRESSURE:
142 case IIO_HUMIDITYRELATIVE:
Daniel Baluta282a5662014-11-10 14:45:35 +0200143 case IIO_ACTIVITY:
144 case IIO_STEPS:
Peter Meerwald30e83262015-06-20 23:52:31 +0200145 case IIO_ENERGY:
146 case IIO_DISTANCE:
147 case IIO_VELOCITY:
Peter Meerwald-Stadler6ad515c2016-03-15 22:54:51 +0100148 case IIO_CONCENTRATION:
149 case IIO_RESISTANCE:
150 case IIO_PH:
Peter Meerwald-Stadlerd4094042016-03-20 16:20:23 +0100151 case IIO_UVINDEX:
Lars-Peter Clausen70421222012-02-13 10:25:34 +0100152 break;
153 default:
154 return false;
155 }
156
157 switch (mod) {
158 case IIO_NO_MOD:
159 case IIO_MOD_X:
160 case IIO_MOD_Y:
161 case IIO_MOD_Z:
Roberta Dobrescu0a6e2172014-10-22 16:50:17 +0300162 case IIO_MOD_X_AND_Y:
163 case IIO_MOD_X_AND_Z:
164 case IIO_MOD_Y_AND_Z:
165 case IIO_MOD_X_AND_Y_AND_Z:
166 case IIO_MOD_X_OR_Y:
167 case IIO_MOD_X_OR_Z:
168 case IIO_MOD_Y_OR_Z:
169 case IIO_MOD_X_OR_Y_OR_Z:
Lars-Peter Clausen70421222012-02-13 10:25:34 +0100170 case IIO_MOD_LIGHT_BOTH:
171 case IIO_MOD_LIGHT_IR:
Peter Meerwaldda4db942012-07-01 12:20:13 +0200172 case IIO_MOD_ROOT_SUM_SQUARED_X_Y:
173 case IIO_MOD_SUM_SQUARED_X_Y_Z:
174 case IIO_MOD_LIGHT_CLEAR:
175 case IIO_MOD_LIGHT_RED:
176 case IIO_MOD_LIGHT_GREEN:
177 case IIO_MOD_LIGHT_BLUE:
Peter Meerwald-Stadler2c5ff1f2016-03-20 16:20:22 +0100178 case IIO_MOD_LIGHT_UV:
Roberta Dobrescu0a6e2172014-10-22 16:50:17 +0300179 case IIO_MOD_QUATERNION:
180 case IIO_MOD_TEMP_AMBIENT:
181 case IIO_MOD_TEMP_OBJECT:
182 case IIO_MOD_NORTH_MAGN:
183 case IIO_MOD_NORTH_TRUE:
184 case IIO_MOD_NORTH_MAGN_TILT_COMP:
185 case IIO_MOD_NORTH_TRUE_TILT_COMP:
Daniel Baluta282a5662014-11-10 14:45:35 +0200186 case IIO_MOD_RUNNING:
187 case IIO_MOD_JOGGING:
188 case IIO_MOD_WALKING:
189 case IIO_MOD_STILL:
Peter Meerwald30e83262015-06-20 23:52:31 +0200190 case IIO_MOD_ROOT_SUM_SQUARED_X_Y_Z:
Peter Meerwald-Stadler6ad515c2016-03-15 22:54:51 +0100191 case IIO_MOD_I:
192 case IIO_MOD_Q:
193 case IIO_MOD_CO2:
194 case IIO_MOD_VOC:
Lars-Peter Clausen70421222012-02-13 10:25:34 +0100195 break;
196 default:
197 return false;
198 }
199
200 switch (ev_type) {
201 case IIO_EV_TYPE_THRESH:
202 case IIO_EV_TYPE_MAG:
203 case IIO_EV_TYPE_ROC:
204 case IIO_EV_TYPE_THRESH_ADAPTIVE:
205 case IIO_EV_TYPE_MAG_ADAPTIVE:
Irina Tirdea27be8422015-01-11 21:10:11 +0200206 case IIO_EV_TYPE_CHANGE:
Lars-Peter Clausen70421222012-02-13 10:25:34 +0100207 break;
208 default:
209 return false;
210 }
211
212 switch (dir) {
213 case IIO_EV_DIR_EITHER:
214 case IIO_EV_DIR_RISING:
215 case IIO_EV_DIR_FALLING:
Daniel Baluta282a5662014-11-10 14:45:35 +0200216 case IIO_EV_DIR_NONE:
Lars-Peter Clausen70421222012-02-13 10:25:34 +0100217 break;
218 default:
219 return false;
220 }
221
222 return true;
223}
224
225static void print_event(struct iio_event_data *event)
226{
227 enum iio_chan_type type = IIO_EVENT_CODE_EXTRACT_CHAN_TYPE(event->id);
228 enum iio_modifier mod = IIO_EVENT_CODE_EXTRACT_MODIFIER(event->id);
229 enum iio_event_type ev_type = IIO_EVENT_CODE_EXTRACT_TYPE(event->id);
230 enum iio_event_direction dir = IIO_EVENT_CODE_EXTRACT_DIR(event->id);
231 int chan = IIO_EVENT_CODE_EXTRACT_CHAN(event->id);
232 int chan2 = IIO_EVENT_CODE_EXTRACT_CHAN2(event->id);
233 bool diff = IIO_EVENT_CODE_EXTRACT_DIFF(event->id);
234
235 if (!event_is_known(event)) {
Cristina Opriceanad9abc612015-07-17 18:43:42 +0300236 fprintf(stderr, "Unknown event: time: %lld, id: %llx\n",
237 event->timestamp, event->id);
Hartmut Knaack7663a4a2015-06-10 21:51:20 +0200238
Lars-Peter Clausen70421222012-02-13 10:25:34 +0100239 return;
240 }
241
Hartmut Knaack916e89e2015-05-31 14:40:18 +0200242 printf("Event: time: %lld, type: %s", event->timestamp,
243 iio_chan_type_name_spec[type]);
Lars-Peter Clausen70421222012-02-13 10:25:34 +0100244
Hartmut Knaack916e89e2015-05-31 14:40:18 +0200245 if (mod != IIO_NO_MOD)
246 printf("(%s)", iio_modifier_names[mod]);
247
248 if (chan >= 0) {
249 printf(", channel: %d", chan);
250 if (diff && chan2 >= 0)
251 printf("-%d", chan2);
Lars-Peter Clausen70421222012-02-13 10:25:34 +0100252 }
253
Hartmut Knaack916e89e2015-05-31 14:40:18 +0200254 printf(", evtype: %s", iio_ev_type_text[ev_type]);
Daniel Baluta282a5662014-11-10 14:45:35 +0200255
256 if (dir != IIO_EV_DIR_NONE)
257 printf(", direction: %s", iio_ev_dir_text[dir]);
Hartmut Knaack7663a4a2015-06-10 21:51:20 +0200258
Daniel Baluta282a5662014-11-10 14:45:35 +0200259 printf("\n");
Lars-Peter Clausen70421222012-02-13 10:25:34 +0100260}
261
262int main(int argc, char **argv)
263{
264 struct iio_event_data event;
265 const char *device_name;
266 char *chrdev_name;
267 int ret;
268 int dev_num;
269 int fd, event_fd;
270
271 if (argc <= 1) {
Cristina Opriceanad9abc612015-07-17 18:43:42 +0300272 fprintf(stderr, "Usage: %s <device_name>\n", argv[0]);
Lars-Peter Clausen70421222012-02-13 10:25:34 +0100273 return -1;
274 }
275
276 device_name = argv[1];
277
278 dev_num = find_type_by_name(device_name, "iio:device");
279 if (dev_num >= 0) {
280 printf("Found IIO device with name %s with device number %d\n",
Hartmut Knaack7663a4a2015-06-10 21:51:20 +0200281 device_name, dev_num);
Lars-Peter Clausen70421222012-02-13 10:25:34 +0100282 ret = asprintf(&chrdev_name, "/dev/iio:device%d", dev_num);
Cristina Opriceana37d38e22015-07-13 16:17:47 +0300283 if (ret < 0)
Hartmut Knaack0e799872015-05-31 14:40:17 +0200284 return -ENOMEM;
Lars-Peter Clausen70421222012-02-13 10:25:34 +0100285 } else {
Hartmut Knaack7663a4a2015-06-10 21:51:20 +0200286 /*
287 * If we can't find an IIO device by name assume device_name is
288 * an IIO chrdev
289 */
Lars-Peter Clausen70421222012-02-13 10:25:34 +0100290 chrdev_name = strdup(device_name);
Hartmut Knaacke9e45b42015-05-31 14:40:02 +0200291 if (!chrdev_name)
292 return -ENOMEM;
Lars-Peter Clausen70421222012-02-13 10:25:34 +0100293 }
294
295 fd = open(chrdev_name, 0);
296 if (fd == -1) {
Lars-Peter Clausen70421222012-02-13 10:25:34 +0100297 ret = -errno;
Cristina Opriceanad9abc612015-07-17 18:43:42 +0300298 fprintf(stderr, "Failed to open %s\n", chrdev_name);
Lars-Peter Clausen70421222012-02-13 10:25:34 +0100299 goto error_free_chrdev_name;
300 }
301
302 ret = ioctl(fd, IIO_GET_EVENT_FD_IOCTL, &event_fd);
Lars-Peter Clausen70421222012-02-13 10:25:34 +0100303 if (ret == -1 || event_fd == -1) {
Lars-Peter Clausen70421222012-02-13 10:25:34 +0100304 ret = -errno;
Linus Walleij672f93b2015-08-11 14:34:38 +0200305 if (ret == -ENODEV)
306 fprintf(stderr,
307 "This device does not support events\n");
308 else
309 fprintf(stderr, "Failed to retrieve event fd\n");
Hartmut Knaack5fdb8c62015-05-31 14:39:49 +0200310 if (close(fd) == -1)
311 perror("Failed to close character device file");
312
Lars-Peter Clausen70421222012-02-13 10:25:34 +0100313 goto error_free_chrdev_name;
314 }
315
Hartmut Knaack963f54c2015-05-31 14:40:05 +0200316 if (close(fd) == -1) {
317 ret = -errno;
318 goto error_free_chrdev_name;
319 }
Hartmut Knaack5fdb8c62015-05-31 14:39:49 +0200320
Lars-Peter Clausen70421222012-02-13 10:25:34 +0100321 while (true) {
322 ret = read(event_fd, &event, sizeof(event));
323 if (ret == -1) {
324 if (errno == EAGAIN) {
Cristina Opriceanad9abc612015-07-17 18:43:42 +0300325 fprintf(stderr, "nothing available\n");
Lars-Peter Clausen70421222012-02-13 10:25:34 +0100326 continue;
327 } else {
Lars-Peter Clausen70421222012-02-13 10:25:34 +0100328 ret = -errno;
Hartmut Knaack2b6a6e62015-05-31 14:39:48 +0200329 perror("Failed to read event from device");
Lars-Peter Clausen70421222012-02-13 10:25:34 +0100330 break;
331 }
332 }
333
Hartmut Knaack09a33f02015-06-10 21:51:19 +0200334 if (ret != sizeof(event)) {
Cristina Opriceanad9abc612015-07-17 18:43:42 +0300335 fprintf(stderr, "Reading event failed!\n");
Hartmut Knaack09a33f02015-06-10 21:51:19 +0200336 ret = -EIO;
337 break;
338 }
339
Lars-Peter Clausen70421222012-02-13 10:25:34 +0100340 print_event(&event);
341 }
342
Hartmut Knaack963f54c2015-05-31 14:40:05 +0200343 if (close(event_fd) == -1)
344 perror("Failed to close event file");
345
Lars-Peter Clausen70421222012-02-13 10:25:34 +0100346error_free_chrdev_name:
347 free(chrdev_name);
Hartmut Knaack0e799872015-05-31 14:40:17 +0200348
Lars-Peter Clausen70421222012-02-13 10:25:34 +0100349 return ret;
350}