Merge 4.18-rc5 into staging-next
[sfrench/cifs-2.6.git] / tools / iio / iio_event_monitor.c
1 /* 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>
16  */
17
18 #include <unistd.h>
19 #include <stdlib.h>
20 #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"
28 #include <linux/iio/events.h>
29 #include <linux/iio/types.h>
30
31 static 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",
47         [IIO_ALTVOLTAGE] = "altvoltage",
48         [IIO_CCT] = "cct",
49         [IIO_PRESSURE] = "pressure",
50         [IIO_HUMIDITYRELATIVE] = "humidityrelative",
51         [IIO_ACTIVITY] = "activity",
52         [IIO_STEPS] = "steps",
53         [IIO_ENERGY] = "energy",
54         [IIO_DISTANCE] = "distance",
55         [IIO_VELOCITY] = "velocity",
56         [IIO_CONCENTRATION] = "concentration",
57         [IIO_RESISTANCE] = "resistance",
58         [IIO_PH] = "ph",
59         [IIO_UVINDEX] = "uvindex",
60         [IIO_GRAVITY] = "gravity",
61         [IIO_POSITIONRELATIVE] = "positionrelative",
62 };
63
64 static const char * const iio_ev_type_text[] = {
65         [IIO_EV_TYPE_THRESH] = "thresh",
66         [IIO_EV_TYPE_MAG] = "mag",
67         [IIO_EV_TYPE_ROC] = "roc",
68         [IIO_EV_TYPE_THRESH_ADAPTIVE] = "thresh_adaptive",
69         [IIO_EV_TYPE_MAG_ADAPTIVE] = "mag_adaptive",
70         [IIO_EV_TYPE_CHANGE] = "change",
71 };
72
73 static const char * const iio_ev_dir_text[] = {
74         [IIO_EV_DIR_EITHER] = "either",
75         [IIO_EV_DIR_RISING] = "rising",
76         [IIO_EV_DIR_FALLING] = "falling"
77 };
78
79 static const char * const iio_modifier_names[] = {
80         [IIO_MOD_X] = "x",
81         [IIO_MOD_Y] = "y",
82         [IIO_MOD_Z] = "z",
83         [IIO_MOD_X_AND_Y] = "x&y",
84         [IIO_MOD_X_AND_Z] = "x&z",
85         [IIO_MOD_Y_AND_Z] = "y&z",
86         [IIO_MOD_X_AND_Y_AND_Z] = "x&y&z",
87         [IIO_MOD_X_OR_Y] = "x|y",
88         [IIO_MOD_X_OR_Z] = "x|z",
89         [IIO_MOD_Y_OR_Z] = "y|z",
90         [IIO_MOD_X_OR_Y_OR_Z] = "x|y|z",
91         [IIO_MOD_LIGHT_BOTH] = "both",
92         [IIO_MOD_LIGHT_IR] = "ir",
93         [IIO_MOD_ROOT_SUM_SQUARED_X_Y] = "sqrt(x^2+y^2)",
94         [IIO_MOD_SUM_SQUARED_X_Y_Z] = "x^2+y^2+z^2",
95         [IIO_MOD_LIGHT_CLEAR] = "clear",
96         [IIO_MOD_LIGHT_RED] = "red",
97         [IIO_MOD_LIGHT_GREEN] = "green",
98         [IIO_MOD_LIGHT_BLUE] = "blue",
99         [IIO_MOD_LIGHT_UV] = "uv",
100         [IIO_MOD_QUATERNION] = "quaternion",
101         [IIO_MOD_TEMP_AMBIENT] = "ambient",
102         [IIO_MOD_TEMP_OBJECT] = "object",
103         [IIO_MOD_NORTH_MAGN] = "from_north_magnetic",
104         [IIO_MOD_NORTH_TRUE] = "from_north_true",
105         [IIO_MOD_NORTH_MAGN_TILT_COMP] = "from_north_magnetic_tilt_comp",
106         [IIO_MOD_NORTH_TRUE_TILT_COMP] = "from_north_true_tilt_comp",
107         [IIO_MOD_RUNNING] = "running",
108         [IIO_MOD_JOGGING] = "jogging",
109         [IIO_MOD_WALKING] = "walking",
110         [IIO_MOD_STILL] = "still",
111         [IIO_MOD_ROOT_SUM_SQUARED_X_Y_Z] = "sqrt(x^2+y^2+z^2)",
112         [IIO_MOD_I] = "i",
113         [IIO_MOD_Q] = "q",
114         [IIO_MOD_CO2] = "co2",
115         [IIO_MOD_VOC] = "voc",
116 };
117
118 static bool event_is_known(struct iio_event_data *event)
119 {
120         enum iio_chan_type type = IIO_EVENT_CODE_EXTRACT_CHAN_TYPE(event->id);
121         enum iio_modifier mod = IIO_EVENT_CODE_EXTRACT_MODIFIER(event->id);
122         enum iio_event_type ev_type = IIO_EVENT_CODE_EXTRACT_TYPE(event->id);
123         enum iio_event_direction dir = IIO_EVENT_CODE_EXTRACT_DIR(event->id);
124
125         switch (type) {
126         case IIO_VOLTAGE:
127         case IIO_CURRENT:
128         case IIO_POWER:
129         case IIO_ACCEL:
130         case IIO_ANGL_VEL:
131         case IIO_MAGN:
132         case IIO_LIGHT:
133         case IIO_INTENSITY:
134         case IIO_PROXIMITY:
135         case IIO_TEMP:
136         case IIO_INCLI:
137         case IIO_ROT:
138         case IIO_ANGL:
139         case IIO_TIMESTAMP:
140         case IIO_CAPACITANCE:
141         case IIO_ALTVOLTAGE:
142         case IIO_CCT:
143         case IIO_PRESSURE:
144         case IIO_HUMIDITYRELATIVE:
145         case IIO_ACTIVITY:
146         case IIO_STEPS:
147         case IIO_ENERGY:
148         case IIO_DISTANCE:
149         case IIO_VELOCITY:
150         case IIO_CONCENTRATION:
151         case IIO_RESISTANCE:
152         case IIO_PH:
153         case IIO_UVINDEX:
154         case IIO_GRAVITY:
155         case IIO_POSITIONRELATIVE:
156                 break;
157         default:
158                 return false;
159         }
160
161         switch (mod) {
162         case IIO_NO_MOD:
163         case IIO_MOD_X:
164         case IIO_MOD_Y:
165         case IIO_MOD_Z:
166         case IIO_MOD_X_AND_Y:
167         case IIO_MOD_X_AND_Z:
168         case IIO_MOD_Y_AND_Z:
169         case IIO_MOD_X_AND_Y_AND_Z:
170         case IIO_MOD_X_OR_Y:
171         case IIO_MOD_X_OR_Z:
172         case IIO_MOD_Y_OR_Z:
173         case IIO_MOD_X_OR_Y_OR_Z:
174         case IIO_MOD_LIGHT_BOTH:
175         case IIO_MOD_LIGHT_IR:
176         case IIO_MOD_ROOT_SUM_SQUARED_X_Y:
177         case IIO_MOD_SUM_SQUARED_X_Y_Z:
178         case IIO_MOD_LIGHT_CLEAR:
179         case IIO_MOD_LIGHT_RED:
180         case IIO_MOD_LIGHT_GREEN:
181         case IIO_MOD_LIGHT_BLUE:
182         case IIO_MOD_LIGHT_UV:
183         case IIO_MOD_QUATERNION:
184         case IIO_MOD_TEMP_AMBIENT:
185         case IIO_MOD_TEMP_OBJECT:
186         case IIO_MOD_NORTH_MAGN:
187         case IIO_MOD_NORTH_TRUE:
188         case IIO_MOD_NORTH_MAGN_TILT_COMP:
189         case IIO_MOD_NORTH_TRUE_TILT_COMP:
190         case IIO_MOD_RUNNING:
191         case IIO_MOD_JOGGING:
192         case IIO_MOD_WALKING:
193         case IIO_MOD_STILL:
194         case IIO_MOD_ROOT_SUM_SQUARED_X_Y_Z:
195         case IIO_MOD_I:
196         case IIO_MOD_Q:
197         case IIO_MOD_CO2:
198         case IIO_MOD_VOC:
199                 break;
200         default:
201                 return false;
202         }
203
204         switch (ev_type) {
205         case IIO_EV_TYPE_THRESH:
206         case IIO_EV_TYPE_MAG:
207         case IIO_EV_TYPE_ROC:
208         case IIO_EV_TYPE_THRESH_ADAPTIVE:
209         case IIO_EV_TYPE_MAG_ADAPTIVE:
210         case IIO_EV_TYPE_CHANGE:
211                 break;
212         default:
213                 return false;
214         }
215
216         switch (dir) {
217         case IIO_EV_DIR_EITHER:
218         case IIO_EV_DIR_RISING:
219         case IIO_EV_DIR_FALLING:
220         case IIO_EV_DIR_NONE:
221                 break;
222         default:
223                 return false;
224         }
225
226         return true;
227 }
228
229 static void print_event(struct iio_event_data *event)
230 {
231         enum iio_chan_type type = IIO_EVENT_CODE_EXTRACT_CHAN_TYPE(event->id);
232         enum iio_modifier mod = IIO_EVENT_CODE_EXTRACT_MODIFIER(event->id);
233         enum iio_event_type ev_type = IIO_EVENT_CODE_EXTRACT_TYPE(event->id);
234         enum iio_event_direction dir = IIO_EVENT_CODE_EXTRACT_DIR(event->id);
235         int chan = IIO_EVENT_CODE_EXTRACT_CHAN(event->id);
236         int chan2 = IIO_EVENT_CODE_EXTRACT_CHAN2(event->id);
237         bool diff = IIO_EVENT_CODE_EXTRACT_DIFF(event->id);
238
239         if (!event_is_known(event)) {
240                 fprintf(stderr, "Unknown event: time: %lld, id: %llx\n",
241                         event->timestamp, event->id);
242
243                 return;
244         }
245
246         printf("Event: time: %lld, type: %s", event->timestamp,
247                iio_chan_type_name_spec[type]);
248
249         if (mod != IIO_NO_MOD)
250                 printf("(%s)", iio_modifier_names[mod]);
251
252         if (chan >= 0) {
253                 printf(", channel: %d", chan);
254                 if (diff && chan2 >= 0)
255                         printf("-%d", chan2);
256         }
257
258         printf(", evtype: %s", iio_ev_type_text[ev_type]);
259
260         if (dir != IIO_EV_DIR_NONE)
261                 printf(", direction: %s", iio_ev_dir_text[dir]);
262
263         printf("\n");
264 }
265
266 int main(int argc, char **argv)
267 {
268         struct iio_event_data event;
269         const char *device_name;
270         char *chrdev_name;
271         int ret;
272         int dev_num;
273         int fd, event_fd;
274
275         if (argc <= 1) {
276                 fprintf(stderr, "Usage: %s <device_name>\n", argv[0]);
277                 return -1;
278         }
279
280         device_name = argv[1];
281
282         dev_num = find_type_by_name(device_name, "iio:device");
283         if (dev_num >= 0) {
284                 printf("Found IIO device with name %s with device number %d\n",
285                        device_name, dev_num);
286                 ret = asprintf(&chrdev_name, "/dev/iio:device%d", dev_num);
287                 if (ret < 0)
288                         return -ENOMEM;
289         } else {
290                 /*
291                  * If we can't find an IIO device by name assume device_name is
292                  * an IIO chrdev
293                  */
294                 chrdev_name = strdup(device_name);
295                 if (!chrdev_name)
296                         return -ENOMEM;
297         }
298
299         fd = open(chrdev_name, 0);
300         if (fd == -1) {
301                 ret = -errno;
302                 fprintf(stderr, "Failed to open %s\n", chrdev_name);
303                 goto error_free_chrdev_name;
304         }
305
306         ret = ioctl(fd, IIO_GET_EVENT_FD_IOCTL, &event_fd);
307         if (ret == -1 || event_fd == -1) {
308                 ret = -errno;
309                 if (ret == -ENODEV)
310                         fprintf(stderr,
311                                 "This device does not support events\n");
312                 else
313                         fprintf(stderr, "Failed to retrieve event fd\n");
314                 if (close(fd) == -1)
315                         perror("Failed to close character device file");
316
317                 goto error_free_chrdev_name;
318         }
319
320         if (close(fd) == -1)  {
321                 ret = -errno;
322                 goto error_free_chrdev_name;
323         }
324
325         while (true) {
326                 ret = read(event_fd, &event, sizeof(event));
327                 if (ret == -1) {
328                         if (errno == EAGAIN) {
329                                 fprintf(stderr, "nothing available\n");
330                                 continue;
331                         } else {
332                                 ret = -errno;
333                                 perror("Failed to read event from device");
334                                 break;
335                         }
336                 }
337
338                 if (ret != sizeof(event)) {
339                         fprintf(stderr, "Reading event failed!\n");
340                         ret = -EIO;
341                         break;
342                 }
343
344                 print_event(&event);
345         }
346
347         if (close(event_fd) == -1)
348                 perror("Failed to close event file");
349
350 error_free_chrdev_name:
351         free(chrdev_name);
352
353         return ret;
354 }