blob: 90980f586f7a80ac9ea151881f7478610ee60970 [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",
Lars-Peter Clausen70421222012-02-13 10:25:34 +010059};
60
61static const char * const iio_ev_type_text[] = {
62 [IIO_EV_TYPE_THRESH] = "thresh",
63 [IIO_EV_TYPE_MAG] = "mag",
64 [IIO_EV_TYPE_ROC] = "roc",
65 [IIO_EV_TYPE_THRESH_ADAPTIVE] = "thresh_adaptive",
66 [IIO_EV_TYPE_MAG_ADAPTIVE] = "mag_adaptive",
Irina Tirdea27be8422015-01-11 21:10:11 +020067 [IIO_EV_TYPE_CHANGE] = "change",
Lars-Peter Clausen70421222012-02-13 10:25:34 +010068};
69
70static const char * const iio_ev_dir_text[] = {
71 [IIO_EV_DIR_EITHER] = "either",
72 [IIO_EV_DIR_RISING] = "rising",
73 [IIO_EV_DIR_FALLING] = "falling"
74};
75
76static const char * const iio_modifier_names[] = {
77 [IIO_MOD_X] = "x",
78 [IIO_MOD_Y] = "y",
79 [IIO_MOD_Z] = "z",
Roberta Dobrescu0a6e2172014-10-22 16:50:17 +030080 [IIO_MOD_X_AND_Y] = "x&y",
81 [IIO_MOD_X_AND_Z] = "x&z",
82 [IIO_MOD_Y_AND_Z] = "y&z",
83 [IIO_MOD_X_AND_Y_AND_Z] = "x&y&z",
84 [IIO_MOD_X_OR_Y] = "x|y",
85 [IIO_MOD_X_OR_Z] = "x|z",
86 [IIO_MOD_Y_OR_Z] = "y|z",
87 [IIO_MOD_X_OR_Y_OR_Z] = "x|y|z",
Lars-Peter Clausen70421222012-02-13 10:25:34 +010088 [IIO_MOD_LIGHT_BOTH] = "both",
89 [IIO_MOD_LIGHT_IR] = "ir",
Peter Meerwaldda4db942012-07-01 12:20:13 +020090 [IIO_MOD_ROOT_SUM_SQUARED_X_Y] = "sqrt(x^2+y^2)",
91 [IIO_MOD_SUM_SQUARED_X_Y_Z] = "x^2+y^2+z^2",
92 [IIO_MOD_LIGHT_CLEAR] = "clear",
93 [IIO_MOD_LIGHT_RED] = "red",
94 [IIO_MOD_LIGHT_GREEN] = "green",
95 [IIO_MOD_LIGHT_BLUE] = "blue",
Roberta Dobrescu0a6e2172014-10-22 16:50:17 +030096 [IIO_MOD_QUATERNION] = "quaternion",
97 [IIO_MOD_TEMP_AMBIENT] = "ambient",
98 [IIO_MOD_TEMP_OBJECT] = "object",
99 [IIO_MOD_NORTH_MAGN] = "from_north_magnetic",
100 [IIO_MOD_NORTH_TRUE] = "from_north_true",
101 [IIO_MOD_NORTH_MAGN_TILT_COMP] = "from_north_magnetic_tilt_comp",
102 [IIO_MOD_NORTH_TRUE_TILT_COMP] = "from_north_true_tilt_comp",
Daniel Baluta282a5662014-11-10 14:45:35 +0200103 [IIO_MOD_RUNNING] = "running",
104 [IIO_MOD_JOGGING] = "jogging",
105 [IIO_MOD_WALKING] = "walking",
106 [IIO_MOD_STILL] = "still",
Peter Meerwald30e83262015-06-20 23:52:31 +0200107 [IIO_MOD_ROOT_SUM_SQUARED_X_Y_Z] = "sqrt(x^2+y^2+z^2)",
Peter Meerwald-Stadler6ad515c2016-03-15 22:54:51 +0100108 [IIO_MOD_I] = "i",
109 [IIO_MOD_Q] = "q",
110 [IIO_MOD_CO2] = "co2",
111 [IIO_MOD_VOC] = "voc",
Lars-Peter Clausen70421222012-02-13 10:25:34 +0100112};
113
114static bool event_is_known(struct iio_event_data *event)
115{
116 enum iio_chan_type type = IIO_EVENT_CODE_EXTRACT_CHAN_TYPE(event->id);
117 enum iio_modifier mod = IIO_EVENT_CODE_EXTRACT_MODIFIER(event->id);
118 enum iio_event_type ev_type = IIO_EVENT_CODE_EXTRACT_TYPE(event->id);
119 enum iio_event_direction dir = IIO_EVENT_CODE_EXTRACT_DIR(event->id);
120
121 switch (type) {
122 case IIO_VOLTAGE:
123 case IIO_CURRENT:
124 case IIO_POWER:
125 case IIO_ACCEL:
126 case IIO_ANGL_VEL:
127 case IIO_MAGN:
128 case IIO_LIGHT:
129 case IIO_INTENSITY:
130 case IIO_PROXIMITY:
131 case IIO_TEMP:
132 case IIO_INCLI:
133 case IIO_ROT:
134 case IIO_ANGL:
135 case IIO_TIMESTAMP:
136 case IIO_CAPACITANCE:
Peter Meerwalda2160142012-06-15 19:25:26 +0200137 case IIO_ALTVOLTAGE:
Peter Meerwald03782502014-12-06 06:00:00 +0000138 case IIO_CCT:
139 case IIO_PRESSURE:
140 case IIO_HUMIDITYRELATIVE:
Daniel Baluta282a5662014-11-10 14:45:35 +0200141 case IIO_ACTIVITY:
142 case IIO_STEPS:
Peter Meerwald30e83262015-06-20 23:52:31 +0200143 case IIO_ENERGY:
144 case IIO_DISTANCE:
145 case IIO_VELOCITY:
Peter Meerwald-Stadler6ad515c2016-03-15 22:54:51 +0100146 case IIO_CONCENTRATION:
147 case IIO_RESISTANCE:
148 case IIO_PH:
Lars-Peter Clausen70421222012-02-13 10:25:34 +0100149 break;
150 default:
151 return false;
152 }
153
154 switch (mod) {
155 case IIO_NO_MOD:
156 case IIO_MOD_X:
157 case IIO_MOD_Y:
158 case IIO_MOD_Z:
Roberta Dobrescu0a6e2172014-10-22 16:50:17 +0300159 case IIO_MOD_X_AND_Y:
160 case IIO_MOD_X_AND_Z:
161 case IIO_MOD_Y_AND_Z:
162 case IIO_MOD_X_AND_Y_AND_Z:
163 case IIO_MOD_X_OR_Y:
164 case IIO_MOD_X_OR_Z:
165 case IIO_MOD_Y_OR_Z:
166 case IIO_MOD_X_OR_Y_OR_Z:
Lars-Peter Clausen70421222012-02-13 10:25:34 +0100167 case IIO_MOD_LIGHT_BOTH:
168 case IIO_MOD_LIGHT_IR:
Peter Meerwaldda4db942012-07-01 12:20:13 +0200169 case IIO_MOD_ROOT_SUM_SQUARED_X_Y:
170 case IIO_MOD_SUM_SQUARED_X_Y_Z:
171 case IIO_MOD_LIGHT_CLEAR:
172 case IIO_MOD_LIGHT_RED:
173 case IIO_MOD_LIGHT_GREEN:
174 case IIO_MOD_LIGHT_BLUE:
Roberta Dobrescu0a6e2172014-10-22 16:50:17 +0300175 case IIO_MOD_QUATERNION:
176 case IIO_MOD_TEMP_AMBIENT:
177 case IIO_MOD_TEMP_OBJECT:
178 case IIO_MOD_NORTH_MAGN:
179 case IIO_MOD_NORTH_TRUE:
180 case IIO_MOD_NORTH_MAGN_TILT_COMP:
181 case IIO_MOD_NORTH_TRUE_TILT_COMP:
Daniel Baluta282a5662014-11-10 14:45:35 +0200182 case IIO_MOD_RUNNING:
183 case IIO_MOD_JOGGING:
184 case IIO_MOD_WALKING:
185 case IIO_MOD_STILL:
Peter Meerwald30e83262015-06-20 23:52:31 +0200186 case IIO_MOD_ROOT_SUM_SQUARED_X_Y_Z:
Peter Meerwald-Stadler6ad515c2016-03-15 22:54:51 +0100187 case IIO_MOD_I:
188 case IIO_MOD_Q:
189 case IIO_MOD_CO2:
190 case IIO_MOD_VOC:
Lars-Peter Clausen70421222012-02-13 10:25:34 +0100191 break;
192 default:
193 return false;
194 }
195
196 switch (ev_type) {
197 case IIO_EV_TYPE_THRESH:
198 case IIO_EV_TYPE_MAG:
199 case IIO_EV_TYPE_ROC:
200 case IIO_EV_TYPE_THRESH_ADAPTIVE:
201 case IIO_EV_TYPE_MAG_ADAPTIVE:
Irina Tirdea27be8422015-01-11 21:10:11 +0200202 case IIO_EV_TYPE_CHANGE:
Lars-Peter Clausen70421222012-02-13 10:25:34 +0100203 break;
204 default:
205 return false;
206 }
207
208 switch (dir) {
209 case IIO_EV_DIR_EITHER:
210 case IIO_EV_DIR_RISING:
211 case IIO_EV_DIR_FALLING:
Daniel Baluta282a5662014-11-10 14:45:35 +0200212 case IIO_EV_DIR_NONE:
Lars-Peter Clausen70421222012-02-13 10:25:34 +0100213 break;
214 default:
215 return false;
216 }
217
218 return true;
219}
220
221static void print_event(struct iio_event_data *event)
222{
223 enum iio_chan_type type = IIO_EVENT_CODE_EXTRACT_CHAN_TYPE(event->id);
224 enum iio_modifier mod = IIO_EVENT_CODE_EXTRACT_MODIFIER(event->id);
225 enum iio_event_type ev_type = IIO_EVENT_CODE_EXTRACT_TYPE(event->id);
226 enum iio_event_direction dir = IIO_EVENT_CODE_EXTRACT_DIR(event->id);
227 int chan = IIO_EVENT_CODE_EXTRACT_CHAN(event->id);
228 int chan2 = IIO_EVENT_CODE_EXTRACT_CHAN2(event->id);
229 bool diff = IIO_EVENT_CODE_EXTRACT_DIFF(event->id);
230
231 if (!event_is_known(event)) {
Cristina Opriceanad9abc612015-07-17 18:43:42 +0300232 fprintf(stderr, "Unknown event: time: %lld, id: %llx\n",
233 event->timestamp, event->id);
Hartmut Knaack7663a4a2015-06-10 21:51:20 +0200234
Lars-Peter Clausen70421222012-02-13 10:25:34 +0100235 return;
236 }
237
Hartmut Knaack916e89e2015-05-31 14:40:18 +0200238 printf("Event: time: %lld, type: %s", event->timestamp,
239 iio_chan_type_name_spec[type]);
Lars-Peter Clausen70421222012-02-13 10:25:34 +0100240
Hartmut Knaack916e89e2015-05-31 14:40:18 +0200241 if (mod != IIO_NO_MOD)
242 printf("(%s)", iio_modifier_names[mod]);
243
244 if (chan >= 0) {
245 printf(", channel: %d", chan);
246 if (diff && chan2 >= 0)
247 printf("-%d", chan2);
Lars-Peter Clausen70421222012-02-13 10:25:34 +0100248 }
249
Hartmut Knaack916e89e2015-05-31 14:40:18 +0200250 printf(", evtype: %s", iio_ev_type_text[ev_type]);
Daniel Baluta282a5662014-11-10 14:45:35 +0200251
252 if (dir != IIO_EV_DIR_NONE)
253 printf(", direction: %s", iio_ev_dir_text[dir]);
Hartmut Knaack7663a4a2015-06-10 21:51:20 +0200254
Daniel Baluta282a5662014-11-10 14:45:35 +0200255 printf("\n");
Lars-Peter Clausen70421222012-02-13 10:25:34 +0100256}
257
258int main(int argc, char **argv)
259{
260 struct iio_event_data event;
261 const char *device_name;
262 char *chrdev_name;
263 int ret;
264 int dev_num;
265 int fd, event_fd;
266
267 if (argc <= 1) {
Cristina Opriceanad9abc612015-07-17 18:43:42 +0300268 fprintf(stderr, "Usage: %s <device_name>\n", argv[0]);
Lars-Peter Clausen70421222012-02-13 10:25:34 +0100269 return -1;
270 }
271
272 device_name = argv[1];
273
274 dev_num = find_type_by_name(device_name, "iio:device");
275 if (dev_num >= 0) {
276 printf("Found IIO device with name %s with device number %d\n",
Hartmut Knaack7663a4a2015-06-10 21:51:20 +0200277 device_name, dev_num);
Lars-Peter Clausen70421222012-02-13 10:25:34 +0100278 ret = asprintf(&chrdev_name, "/dev/iio:device%d", dev_num);
Cristina Opriceana37d38e22015-07-13 16:17:47 +0300279 if (ret < 0)
Hartmut Knaack0e799872015-05-31 14:40:17 +0200280 return -ENOMEM;
Lars-Peter Clausen70421222012-02-13 10:25:34 +0100281 } else {
Hartmut Knaack7663a4a2015-06-10 21:51:20 +0200282 /*
283 * If we can't find an IIO device by name assume device_name is
284 * an IIO chrdev
285 */
Lars-Peter Clausen70421222012-02-13 10:25:34 +0100286 chrdev_name = strdup(device_name);
Hartmut Knaacke9e45b42015-05-31 14:40:02 +0200287 if (!chrdev_name)
288 return -ENOMEM;
Lars-Peter Clausen70421222012-02-13 10:25:34 +0100289 }
290
291 fd = open(chrdev_name, 0);
292 if (fd == -1) {
Lars-Peter Clausen70421222012-02-13 10:25:34 +0100293 ret = -errno;
Cristina Opriceanad9abc612015-07-17 18:43:42 +0300294 fprintf(stderr, "Failed to open %s\n", chrdev_name);
Lars-Peter Clausen70421222012-02-13 10:25:34 +0100295 goto error_free_chrdev_name;
296 }
297
298 ret = ioctl(fd, IIO_GET_EVENT_FD_IOCTL, &event_fd);
Lars-Peter Clausen70421222012-02-13 10:25:34 +0100299 if (ret == -1 || event_fd == -1) {
Lars-Peter Clausen70421222012-02-13 10:25:34 +0100300 ret = -errno;
Linus Walleij672f93b2015-08-11 14:34:38 +0200301 if (ret == -ENODEV)
302 fprintf(stderr,
303 "This device does not support events\n");
304 else
305 fprintf(stderr, "Failed to retrieve event fd\n");
Hartmut Knaack5fdb8c62015-05-31 14:39:49 +0200306 if (close(fd) == -1)
307 perror("Failed to close character device file");
308
Lars-Peter Clausen70421222012-02-13 10:25:34 +0100309 goto error_free_chrdev_name;
310 }
311
Hartmut Knaack963f54c2015-05-31 14:40:05 +0200312 if (close(fd) == -1) {
313 ret = -errno;
314 goto error_free_chrdev_name;
315 }
Hartmut Knaack5fdb8c62015-05-31 14:39:49 +0200316
Lars-Peter Clausen70421222012-02-13 10:25:34 +0100317 while (true) {
318 ret = read(event_fd, &event, sizeof(event));
319 if (ret == -1) {
320 if (errno == EAGAIN) {
Cristina Opriceanad9abc612015-07-17 18:43:42 +0300321 fprintf(stderr, "nothing available\n");
Lars-Peter Clausen70421222012-02-13 10:25:34 +0100322 continue;
323 } else {
Lars-Peter Clausen70421222012-02-13 10:25:34 +0100324 ret = -errno;
Hartmut Knaack2b6a6e62015-05-31 14:39:48 +0200325 perror("Failed to read event from device");
Lars-Peter Clausen70421222012-02-13 10:25:34 +0100326 break;
327 }
328 }
329
Hartmut Knaack09a33f02015-06-10 21:51:19 +0200330 if (ret != sizeof(event)) {
Cristina Opriceanad9abc612015-07-17 18:43:42 +0300331 fprintf(stderr, "Reading event failed!\n");
Hartmut Knaack09a33f02015-06-10 21:51:19 +0200332 ret = -EIO;
333 break;
334 }
335
Lars-Peter Clausen70421222012-02-13 10:25:34 +0100336 print_event(&event);
337 }
338
Hartmut Knaack963f54c2015-05-31 14:40:05 +0200339 if (close(event_fd) == -1)
340 perror("Failed to close event file");
341
Lars-Peter Clausen70421222012-02-13 10:25:34 +0100342error_free_chrdev_name:
343 free(chrdev_name);
Hartmut Knaack0e799872015-05-31 14:40:17 +0200344
Lars-Peter Clausen70421222012-02-13 10:25:34 +0100345 return ret;
346}