blob: f6b8003fbe3c3f76df9384e1d8c0c0343b018b12 [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",
Song Hongyan571299d2017-01-05 18:24:03 +080060 [IIO_GRAVITY] = "gravity",
Eugen Hristev3055a6c2018-05-22 10:52:32 +030061 [IIO_POSITIONRELATIVE] = "positionrelative",
Mathieu Othacehec73314e2018-07-20 19:34:25 +020062 [IIO_PHASE] = "phase",
Tomasz Duszynski17abc9e2018-12-14 19:28:01 +010063 [IIO_MASSCONCENTRATION] = "massconcentration",
Lars-Peter Clausen70421222012-02-13 10:25:34 +010064};
65
66static const char * const iio_ev_type_text[] = {
67 [IIO_EV_TYPE_THRESH] = "thresh",
68 [IIO_EV_TYPE_MAG] = "mag",
69 [IIO_EV_TYPE_ROC] = "roc",
70 [IIO_EV_TYPE_THRESH_ADAPTIVE] = "thresh_adaptive",
71 [IIO_EV_TYPE_MAG_ADAPTIVE] = "mag_adaptive",
Irina Tirdea27be8422015-01-11 21:10:11 +020072 [IIO_EV_TYPE_CHANGE] = "change",
Lars-Peter Clausen70421222012-02-13 10:25:34 +010073};
74
75static const char * const iio_ev_dir_text[] = {
76 [IIO_EV_DIR_EITHER] = "either",
77 [IIO_EV_DIR_RISING] = "rising",
78 [IIO_EV_DIR_FALLING] = "falling"
79};
80
81static const char * const iio_modifier_names[] = {
82 [IIO_MOD_X] = "x",
83 [IIO_MOD_Y] = "y",
84 [IIO_MOD_Z] = "z",
Roberta Dobrescu0a6e2172014-10-22 16:50:17 +030085 [IIO_MOD_X_AND_Y] = "x&y",
86 [IIO_MOD_X_AND_Z] = "x&z",
87 [IIO_MOD_Y_AND_Z] = "y&z",
88 [IIO_MOD_X_AND_Y_AND_Z] = "x&y&z",
89 [IIO_MOD_X_OR_Y] = "x|y",
90 [IIO_MOD_X_OR_Z] = "x|z",
91 [IIO_MOD_Y_OR_Z] = "y|z",
92 [IIO_MOD_X_OR_Y_OR_Z] = "x|y|z",
Lars-Peter Clausen70421222012-02-13 10:25:34 +010093 [IIO_MOD_LIGHT_BOTH] = "both",
94 [IIO_MOD_LIGHT_IR] = "ir",
Peter Meerwaldda4db942012-07-01 12:20:13 +020095 [IIO_MOD_ROOT_SUM_SQUARED_X_Y] = "sqrt(x^2+y^2)",
96 [IIO_MOD_SUM_SQUARED_X_Y_Z] = "x^2+y^2+z^2",
97 [IIO_MOD_LIGHT_CLEAR] = "clear",
98 [IIO_MOD_LIGHT_RED] = "red",
99 [IIO_MOD_LIGHT_GREEN] = "green",
100 [IIO_MOD_LIGHT_BLUE] = "blue",
Peter Meerwald-Stadler2c5ff1f2016-03-20 16:20:22 +0100101 [IIO_MOD_LIGHT_UV] = "uv",
Maxime Roussin-Bélangerc0e4e0f2018-07-19 16:26:24 -0400102 [IIO_MOD_LIGHT_DUV] = "duv",
Roberta Dobrescu0a6e2172014-10-22 16:50:17 +0300103 [IIO_MOD_QUATERNION] = "quaternion",
104 [IIO_MOD_TEMP_AMBIENT] = "ambient",
105 [IIO_MOD_TEMP_OBJECT] = "object",
106 [IIO_MOD_NORTH_MAGN] = "from_north_magnetic",
107 [IIO_MOD_NORTH_TRUE] = "from_north_true",
108 [IIO_MOD_NORTH_MAGN_TILT_COMP] = "from_north_magnetic_tilt_comp",
109 [IIO_MOD_NORTH_TRUE_TILT_COMP] = "from_north_true_tilt_comp",
Daniel Baluta282a5662014-11-10 14:45:35 +0200110 [IIO_MOD_RUNNING] = "running",
111 [IIO_MOD_JOGGING] = "jogging",
112 [IIO_MOD_WALKING] = "walking",
113 [IIO_MOD_STILL] = "still",
Peter Meerwald30e83262015-06-20 23:52:31 +0200114 [IIO_MOD_ROOT_SUM_SQUARED_X_Y_Z] = "sqrt(x^2+y^2+z^2)",
Peter Meerwald-Stadler6ad515c2016-03-15 22:54:51 +0100115 [IIO_MOD_I] = "i",
116 [IIO_MOD_Q] = "q",
117 [IIO_MOD_CO2] = "co2",
118 [IIO_MOD_VOC] = "voc",
Tomasz Duszynski17abc9e2018-12-14 19:28:01 +0100119 [IIO_MOD_PM1] = "pm1",
120 [IIO_MOD_PM2P5] = "pm2p5",
121 [IIO_MOD_PM4] = "pm4",
122 [IIO_MOD_PM10] = "pm10",
Lars-Peter Clausen70421222012-02-13 10:25:34 +0100123};
124
125static bool event_is_known(struct iio_event_data *event)
126{
127 enum iio_chan_type type = IIO_EVENT_CODE_EXTRACT_CHAN_TYPE(event->id);
128 enum iio_modifier mod = IIO_EVENT_CODE_EXTRACT_MODIFIER(event->id);
129 enum iio_event_type ev_type = IIO_EVENT_CODE_EXTRACT_TYPE(event->id);
130 enum iio_event_direction dir = IIO_EVENT_CODE_EXTRACT_DIR(event->id);
131
132 switch (type) {
133 case IIO_VOLTAGE:
134 case IIO_CURRENT:
135 case IIO_POWER:
136 case IIO_ACCEL:
137 case IIO_ANGL_VEL:
138 case IIO_MAGN:
139 case IIO_LIGHT:
140 case IIO_INTENSITY:
141 case IIO_PROXIMITY:
142 case IIO_TEMP:
143 case IIO_INCLI:
144 case IIO_ROT:
145 case IIO_ANGL:
146 case IIO_TIMESTAMP:
147 case IIO_CAPACITANCE:
Peter Meerwalda2160142012-06-15 19:25:26 +0200148 case IIO_ALTVOLTAGE:
Peter Meerwald03782502014-12-06 06:00:00 +0000149 case IIO_CCT:
150 case IIO_PRESSURE:
151 case IIO_HUMIDITYRELATIVE:
Daniel Baluta282a5662014-11-10 14:45:35 +0200152 case IIO_ACTIVITY:
153 case IIO_STEPS:
Peter Meerwald30e83262015-06-20 23:52:31 +0200154 case IIO_ENERGY:
155 case IIO_DISTANCE:
156 case IIO_VELOCITY:
Peter Meerwald-Stadler6ad515c2016-03-15 22:54:51 +0100157 case IIO_CONCENTRATION:
158 case IIO_RESISTANCE:
159 case IIO_PH:
Peter Meerwald-Stadlerd4094042016-03-20 16:20:23 +0100160 case IIO_UVINDEX:
Song Hongyan571299d2017-01-05 18:24:03 +0800161 case IIO_GRAVITY:
Eugen Hristev3055a6c2018-05-22 10:52:32 +0300162 case IIO_POSITIONRELATIVE:
Mathieu Othacehec73314e2018-07-20 19:34:25 +0200163 case IIO_PHASE:
Tomasz Duszynski17abc9e2018-12-14 19:28:01 +0100164 case IIO_MASSCONCENTRATION:
Lars-Peter Clausen70421222012-02-13 10:25:34 +0100165 break;
166 default:
167 return false;
168 }
169
170 switch (mod) {
171 case IIO_NO_MOD:
172 case IIO_MOD_X:
173 case IIO_MOD_Y:
174 case IIO_MOD_Z:
Roberta Dobrescu0a6e2172014-10-22 16:50:17 +0300175 case IIO_MOD_X_AND_Y:
176 case IIO_MOD_X_AND_Z:
177 case IIO_MOD_Y_AND_Z:
178 case IIO_MOD_X_AND_Y_AND_Z:
179 case IIO_MOD_X_OR_Y:
180 case IIO_MOD_X_OR_Z:
181 case IIO_MOD_Y_OR_Z:
182 case IIO_MOD_X_OR_Y_OR_Z:
Lars-Peter Clausen70421222012-02-13 10:25:34 +0100183 case IIO_MOD_LIGHT_BOTH:
184 case IIO_MOD_LIGHT_IR:
Peter Meerwaldda4db942012-07-01 12:20:13 +0200185 case IIO_MOD_ROOT_SUM_SQUARED_X_Y:
186 case IIO_MOD_SUM_SQUARED_X_Y_Z:
187 case IIO_MOD_LIGHT_CLEAR:
188 case IIO_MOD_LIGHT_RED:
189 case IIO_MOD_LIGHT_GREEN:
190 case IIO_MOD_LIGHT_BLUE:
Peter Meerwald-Stadler2c5ff1f2016-03-20 16:20:22 +0100191 case IIO_MOD_LIGHT_UV:
Maxime Roussin-Bélangerc0e4e0f2018-07-19 16:26:24 -0400192 case IIO_MOD_LIGHT_DUV:
Roberta Dobrescu0a6e2172014-10-22 16:50:17 +0300193 case IIO_MOD_QUATERNION:
194 case IIO_MOD_TEMP_AMBIENT:
195 case IIO_MOD_TEMP_OBJECT:
196 case IIO_MOD_NORTH_MAGN:
197 case IIO_MOD_NORTH_TRUE:
198 case IIO_MOD_NORTH_MAGN_TILT_COMP:
199 case IIO_MOD_NORTH_TRUE_TILT_COMP:
Daniel Baluta282a5662014-11-10 14:45:35 +0200200 case IIO_MOD_RUNNING:
201 case IIO_MOD_JOGGING:
202 case IIO_MOD_WALKING:
203 case IIO_MOD_STILL:
Peter Meerwald30e83262015-06-20 23:52:31 +0200204 case IIO_MOD_ROOT_SUM_SQUARED_X_Y_Z:
Peter Meerwald-Stadler6ad515c2016-03-15 22:54:51 +0100205 case IIO_MOD_I:
206 case IIO_MOD_Q:
207 case IIO_MOD_CO2:
208 case IIO_MOD_VOC:
Tomasz Duszynski17abc9e2018-12-14 19:28:01 +0100209 case IIO_MOD_PM1:
210 case IIO_MOD_PM2P5:
211 case IIO_MOD_PM4:
212 case IIO_MOD_PM10:
Lars-Peter Clausen70421222012-02-13 10:25:34 +0100213 break;
214 default:
215 return false;
216 }
217
218 switch (ev_type) {
219 case IIO_EV_TYPE_THRESH:
220 case IIO_EV_TYPE_MAG:
221 case IIO_EV_TYPE_ROC:
222 case IIO_EV_TYPE_THRESH_ADAPTIVE:
223 case IIO_EV_TYPE_MAG_ADAPTIVE:
Irina Tirdea27be8422015-01-11 21:10:11 +0200224 case IIO_EV_TYPE_CHANGE:
Lars-Peter Clausen70421222012-02-13 10:25:34 +0100225 break;
226 default:
227 return false;
228 }
229
230 switch (dir) {
231 case IIO_EV_DIR_EITHER:
232 case IIO_EV_DIR_RISING:
233 case IIO_EV_DIR_FALLING:
Daniel Baluta282a5662014-11-10 14:45:35 +0200234 case IIO_EV_DIR_NONE:
Lars-Peter Clausen70421222012-02-13 10:25:34 +0100235 break;
236 default:
237 return false;
238 }
239
240 return true;
241}
242
243static void print_event(struct iio_event_data *event)
244{
245 enum iio_chan_type type = IIO_EVENT_CODE_EXTRACT_CHAN_TYPE(event->id);
246 enum iio_modifier mod = IIO_EVENT_CODE_EXTRACT_MODIFIER(event->id);
247 enum iio_event_type ev_type = IIO_EVENT_CODE_EXTRACT_TYPE(event->id);
248 enum iio_event_direction dir = IIO_EVENT_CODE_EXTRACT_DIR(event->id);
249 int chan = IIO_EVENT_CODE_EXTRACT_CHAN(event->id);
250 int chan2 = IIO_EVENT_CODE_EXTRACT_CHAN2(event->id);
251 bool diff = IIO_EVENT_CODE_EXTRACT_DIFF(event->id);
252
253 if (!event_is_known(event)) {
Cristina Opriceanad9abc612015-07-17 18:43:42 +0300254 fprintf(stderr, "Unknown event: time: %lld, id: %llx\n",
255 event->timestamp, event->id);
Hartmut Knaack7663a4a2015-06-10 21:51:20 +0200256
Lars-Peter Clausen70421222012-02-13 10:25:34 +0100257 return;
258 }
259
Hartmut Knaack916e89e2015-05-31 14:40:18 +0200260 printf("Event: time: %lld, type: %s", event->timestamp,
261 iio_chan_type_name_spec[type]);
Lars-Peter Clausen70421222012-02-13 10:25:34 +0100262
Hartmut Knaack916e89e2015-05-31 14:40:18 +0200263 if (mod != IIO_NO_MOD)
264 printf("(%s)", iio_modifier_names[mod]);
265
266 if (chan >= 0) {
267 printf(", channel: %d", chan);
268 if (diff && chan2 >= 0)
269 printf("-%d", chan2);
Lars-Peter Clausen70421222012-02-13 10:25:34 +0100270 }
271
Hartmut Knaack916e89e2015-05-31 14:40:18 +0200272 printf(", evtype: %s", iio_ev_type_text[ev_type]);
Daniel Baluta282a5662014-11-10 14:45:35 +0200273
274 if (dir != IIO_EV_DIR_NONE)
275 printf(", direction: %s", iio_ev_dir_text[dir]);
Hartmut Knaack7663a4a2015-06-10 21:51:20 +0200276
Daniel Baluta282a5662014-11-10 14:45:35 +0200277 printf("\n");
Lars-Peter Clausen70421222012-02-13 10:25:34 +0100278}
279
280int main(int argc, char **argv)
281{
282 struct iio_event_data event;
283 const char *device_name;
284 char *chrdev_name;
285 int ret;
286 int dev_num;
287 int fd, event_fd;
288
289 if (argc <= 1) {
Cristina Opriceanad9abc612015-07-17 18:43:42 +0300290 fprintf(stderr, "Usage: %s <device_name>\n", argv[0]);
Lars-Peter Clausen70421222012-02-13 10:25:34 +0100291 return -1;
292 }
293
294 device_name = argv[1];
295
296 dev_num = find_type_by_name(device_name, "iio:device");
297 if (dev_num >= 0) {
298 printf("Found IIO device with name %s with device number %d\n",
Hartmut Knaack7663a4a2015-06-10 21:51:20 +0200299 device_name, dev_num);
Lars-Peter Clausen70421222012-02-13 10:25:34 +0100300 ret = asprintf(&chrdev_name, "/dev/iio:device%d", dev_num);
Cristina Opriceana37d38e22015-07-13 16:17:47 +0300301 if (ret < 0)
Hartmut Knaack0e799872015-05-31 14:40:17 +0200302 return -ENOMEM;
Lars-Peter Clausen70421222012-02-13 10:25:34 +0100303 } else {
Hartmut Knaack7663a4a2015-06-10 21:51:20 +0200304 /*
305 * If we can't find an IIO device by name assume device_name is
306 * an IIO chrdev
307 */
Lars-Peter Clausen70421222012-02-13 10:25:34 +0100308 chrdev_name = strdup(device_name);
Hartmut Knaacke9e45b42015-05-31 14:40:02 +0200309 if (!chrdev_name)
310 return -ENOMEM;
Lars-Peter Clausen70421222012-02-13 10:25:34 +0100311 }
312
313 fd = open(chrdev_name, 0);
314 if (fd == -1) {
Lars-Peter Clausen70421222012-02-13 10:25:34 +0100315 ret = -errno;
Cristina Opriceanad9abc612015-07-17 18:43:42 +0300316 fprintf(stderr, "Failed to open %s\n", chrdev_name);
Lars-Peter Clausen70421222012-02-13 10:25:34 +0100317 goto error_free_chrdev_name;
318 }
319
320 ret = ioctl(fd, IIO_GET_EVENT_FD_IOCTL, &event_fd);
Lars-Peter Clausen70421222012-02-13 10:25:34 +0100321 if (ret == -1 || event_fd == -1) {
Lars-Peter Clausen70421222012-02-13 10:25:34 +0100322 ret = -errno;
Linus Walleij672f93b2015-08-11 14:34:38 +0200323 if (ret == -ENODEV)
324 fprintf(stderr,
325 "This device does not support events\n");
326 else
327 fprintf(stderr, "Failed to retrieve event fd\n");
Hartmut Knaack5fdb8c62015-05-31 14:39:49 +0200328 if (close(fd) == -1)
329 perror("Failed to close character device file");
330
Lars-Peter Clausen70421222012-02-13 10:25:34 +0100331 goto error_free_chrdev_name;
332 }
333
Hartmut Knaack963f54c2015-05-31 14:40:05 +0200334 if (close(fd) == -1) {
335 ret = -errno;
336 goto error_free_chrdev_name;
337 }
Hartmut Knaack5fdb8c62015-05-31 14:39:49 +0200338
Lars-Peter Clausen70421222012-02-13 10:25:34 +0100339 while (true) {
340 ret = read(event_fd, &event, sizeof(event));
341 if (ret == -1) {
342 if (errno == EAGAIN) {
Cristina Opriceanad9abc612015-07-17 18:43:42 +0300343 fprintf(stderr, "nothing available\n");
Lars-Peter Clausen70421222012-02-13 10:25:34 +0100344 continue;
345 } else {
Lars-Peter Clausen70421222012-02-13 10:25:34 +0100346 ret = -errno;
Hartmut Knaack2b6a6e62015-05-31 14:39:48 +0200347 perror("Failed to read event from device");
Lars-Peter Clausen70421222012-02-13 10:25:34 +0100348 break;
349 }
350 }
351
Hartmut Knaack09a33f02015-06-10 21:51:19 +0200352 if (ret != sizeof(event)) {
Cristina Opriceanad9abc612015-07-17 18:43:42 +0300353 fprintf(stderr, "Reading event failed!\n");
Hartmut Knaack09a33f02015-06-10 21:51:19 +0200354 ret = -EIO;
355 break;
356 }
357
Lars-Peter Clausen70421222012-02-13 10:25:34 +0100358 print_event(&event);
359 }
360
Hartmut Knaack963f54c2015-05-31 14:40:05 +0200361 if (close(event_fd) == -1)
362 perror("Failed to close event file");
363
Lars-Peter Clausen70421222012-02-13 10:25:34 +0100364error_free_chrdev_name:
365 free(chrdev_name);
Hartmut Knaack0e799872015-05-31 14:40:17 +0200366
Lars-Peter Clausen70421222012-02-13 10:25:34 +0100367 return ret;
368}