OSDN Git Service

iio: event_monitor: add linear acceleration modifiers
[tomoyo/tomoyo-test1.git] / tools / iio / iio_event_monitor.c
1 // SPDX-License-Identifier: GPL-2.0-only
2 /* Industrialio event test code.
3  *
4  * Copyright (c) 2011-2012 Lars-Peter Clausen <lars@metafoo.de>
5  *
6  * This program is primarily intended as an example application.
7  * Reads the current buffer setup from sysfs and starts a short capture
8  * from the specified device, pretty printing the result after appropriate
9  * conversion.
10  *
11  * Usage:
12  *      iio_event_monitor <device_name>
13  */
14
15 #include <unistd.h>
16 #include <stdlib.h>
17 #include <dirent.h>
18 #include <stdbool.h>
19 #include <stdio.h>
20 #include <errno.h>
21 #include <string.h>
22 #include <poll.h>
23 #include <fcntl.h>
24 #include <sys/ioctl.h>
25 #include "iio_utils.h"
26 #include <linux/iio/events.h>
27 #include <linux/iio/types.h>
28
29 static const char * const iio_chan_type_name_spec[] = {
30         [IIO_VOLTAGE] = "voltage",
31         [IIO_CURRENT] = "current",
32         [IIO_POWER] = "power",
33         [IIO_ACCEL] = "accel",
34         [IIO_ANGL_VEL] = "anglvel",
35         [IIO_MAGN] = "magn",
36         [IIO_LIGHT] = "illuminance",
37         [IIO_INTENSITY] = "intensity",
38         [IIO_PROXIMITY] = "proximity",
39         [IIO_TEMP] = "temp",
40         [IIO_INCLI] = "incli",
41         [IIO_ROT] = "rot",
42         [IIO_ANGL] = "angl",
43         [IIO_TIMESTAMP] = "timestamp",
44         [IIO_CAPACITANCE] = "capacitance",
45         [IIO_ALTVOLTAGE] = "altvoltage",
46         [IIO_CCT] = "cct",
47         [IIO_PRESSURE] = "pressure",
48         [IIO_HUMIDITYRELATIVE] = "humidityrelative",
49         [IIO_ACTIVITY] = "activity",
50         [IIO_STEPS] = "steps",
51         [IIO_ENERGY] = "energy",
52         [IIO_DISTANCE] = "distance",
53         [IIO_VELOCITY] = "velocity",
54         [IIO_CONCENTRATION] = "concentration",
55         [IIO_RESISTANCE] = "resistance",
56         [IIO_PH] = "ph",
57         [IIO_UVINDEX] = "uvindex",
58         [IIO_GRAVITY] = "gravity",
59         [IIO_POSITIONRELATIVE] = "positionrelative",
60         [IIO_PHASE] = "phase",
61         [IIO_MASSCONCENTRATION] = "massconcentration",
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         [IIO_EV_TYPE_MAG_REFERENCED] = "mag_referenced",
72         [IIO_EV_TYPE_GESTURE] = "gesture",
73 };
74
75 static 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         [IIO_EV_DIR_SINGLETAP] = "singletap",
80         [IIO_EV_DIR_DOUBLETAP] = "doubletap",
81 };
82
83 static const char * const iio_modifier_names[] = {
84         [IIO_MOD_X] = "x",
85         [IIO_MOD_Y] = "y",
86         [IIO_MOD_Z] = "z",
87         [IIO_MOD_X_AND_Y] = "x&y",
88         [IIO_MOD_X_AND_Z] = "x&z",
89         [IIO_MOD_Y_AND_Z] = "y&z",
90         [IIO_MOD_X_AND_Y_AND_Z] = "x&y&z",
91         [IIO_MOD_X_OR_Y] = "x|y",
92         [IIO_MOD_X_OR_Z] = "x|z",
93         [IIO_MOD_Y_OR_Z] = "y|z",
94         [IIO_MOD_X_OR_Y_OR_Z] = "x|y|z",
95         [IIO_MOD_LIGHT_BOTH] = "both",
96         [IIO_MOD_LIGHT_IR] = "ir",
97         [IIO_MOD_ROOT_SUM_SQUARED_X_Y] = "sqrt(x^2+y^2)",
98         [IIO_MOD_SUM_SQUARED_X_Y_Z] = "x^2+y^2+z^2",
99         [IIO_MOD_LIGHT_CLEAR] = "clear",
100         [IIO_MOD_LIGHT_RED] = "red",
101         [IIO_MOD_LIGHT_GREEN] = "green",
102         [IIO_MOD_LIGHT_BLUE] = "blue",
103         [IIO_MOD_LIGHT_UV] = "uv",
104         [IIO_MOD_LIGHT_DUV] = "duv",
105         [IIO_MOD_QUATERNION] = "quaternion",
106         [IIO_MOD_TEMP_AMBIENT] = "ambient",
107         [IIO_MOD_TEMP_OBJECT] = "object",
108         [IIO_MOD_NORTH_MAGN] = "from_north_magnetic",
109         [IIO_MOD_NORTH_TRUE] = "from_north_true",
110         [IIO_MOD_NORTH_MAGN_TILT_COMP] = "from_north_magnetic_tilt_comp",
111         [IIO_MOD_NORTH_TRUE_TILT_COMP] = "from_north_true_tilt_comp",
112         [IIO_MOD_RUNNING] = "running",
113         [IIO_MOD_JOGGING] = "jogging",
114         [IIO_MOD_WALKING] = "walking",
115         [IIO_MOD_STILL] = "still",
116         [IIO_MOD_ROOT_SUM_SQUARED_X_Y_Z] = "sqrt(x^2+y^2+z^2)",
117         [IIO_MOD_I] = "i",
118         [IIO_MOD_Q] = "q",
119         [IIO_MOD_CO2] = "co2",
120         [IIO_MOD_ETHANOL] = "ethanol",
121         [IIO_MOD_H2] = "h2",
122         [IIO_MOD_VOC] = "voc",
123         [IIO_MOD_PM1] = "pm1",
124         [IIO_MOD_PM2P5] = "pm2p5",
125         [IIO_MOD_PM4] = "pm4",
126         [IIO_MOD_PM10] = "pm10",
127         [IIO_MOD_O2] = "o2",
128         [IIO_MOD_LINEAR_X] = "linear_x",
129         [IIO_MOD_LINEAR_Y] = "linear_y",
130         [IIO_MOD_LINEAR_Z] = "linear_z",
131 };
132
133 static bool event_is_known(struct iio_event_data *event)
134 {
135         enum iio_chan_type type = IIO_EVENT_CODE_EXTRACT_CHAN_TYPE(event->id);
136         enum iio_modifier mod = IIO_EVENT_CODE_EXTRACT_MODIFIER(event->id);
137         enum iio_event_type ev_type = IIO_EVENT_CODE_EXTRACT_TYPE(event->id);
138         enum iio_event_direction dir = IIO_EVENT_CODE_EXTRACT_DIR(event->id);
139
140         switch (type) {
141         case IIO_VOLTAGE:
142         case IIO_CURRENT:
143         case IIO_POWER:
144         case IIO_ACCEL:
145         case IIO_ANGL_VEL:
146         case IIO_MAGN:
147         case IIO_LIGHT:
148         case IIO_INTENSITY:
149         case IIO_PROXIMITY:
150         case IIO_TEMP:
151         case IIO_INCLI:
152         case IIO_ROT:
153         case IIO_ANGL:
154         case IIO_TIMESTAMP:
155         case IIO_CAPACITANCE:
156         case IIO_ALTVOLTAGE:
157         case IIO_CCT:
158         case IIO_PRESSURE:
159         case IIO_HUMIDITYRELATIVE:
160         case IIO_ACTIVITY:
161         case IIO_STEPS:
162         case IIO_ENERGY:
163         case IIO_DISTANCE:
164         case IIO_VELOCITY:
165         case IIO_CONCENTRATION:
166         case IIO_RESISTANCE:
167         case IIO_PH:
168         case IIO_UVINDEX:
169         case IIO_GRAVITY:
170         case IIO_POSITIONRELATIVE:
171         case IIO_PHASE:
172         case IIO_MASSCONCENTRATION:
173                 break;
174         default:
175                 return false;
176         }
177
178         switch (mod) {
179         case IIO_NO_MOD:
180         case IIO_MOD_X:
181         case IIO_MOD_Y:
182         case IIO_MOD_Z:
183         case IIO_MOD_X_AND_Y:
184         case IIO_MOD_X_AND_Z:
185         case IIO_MOD_Y_AND_Z:
186         case IIO_MOD_X_AND_Y_AND_Z:
187         case IIO_MOD_X_OR_Y:
188         case IIO_MOD_X_OR_Z:
189         case IIO_MOD_Y_OR_Z:
190         case IIO_MOD_X_OR_Y_OR_Z:
191         case IIO_MOD_LIGHT_BOTH:
192         case IIO_MOD_LIGHT_IR:
193         case IIO_MOD_ROOT_SUM_SQUARED_X_Y:
194         case IIO_MOD_SUM_SQUARED_X_Y_Z:
195         case IIO_MOD_LIGHT_CLEAR:
196         case IIO_MOD_LIGHT_RED:
197         case IIO_MOD_LIGHT_GREEN:
198         case IIO_MOD_LIGHT_BLUE:
199         case IIO_MOD_LIGHT_UV:
200         case IIO_MOD_LIGHT_DUV:
201         case IIO_MOD_QUATERNION:
202         case IIO_MOD_TEMP_AMBIENT:
203         case IIO_MOD_TEMP_OBJECT:
204         case IIO_MOD_NORTH_MAGN:
205         case IIO_MOD_NORTH_TRUE:
206         case IIO_MOD_NORTH_MAGN_TILT_COMP:
207         case IIO_MOD_NORTH_TRUE_TILT_COMP:
208         case IIO_MOD_RUNNING:
209         case IIO_MOD_JOGGING:
210         case IIO_MOD_WALKING:
211         case IIO_MOD_STILL:
212         case IIO_MOD_ROOT_SUM_SQUARED_X_Y_Z:
213         case IIO_MOD_I:
214         case IIO_MOD_Q:
215         case IIO_MOD_CO2:
216         case IIO_MOD_ETHANOL:
217         case IIO_MOD_H2:
218         case IIO_MOD_VOC:
219         case IIO_MOD_PM1:
220         case IIO_MOD_PM2P5:
221         case IIO_MOD_PM4:
222         case IIO_MOD_PM10:
223         case IIO_MOD_O2:
224                 break;
225         default:
226                 return false;
227         }
228
229         switch (ev_type) {
230         case IIO_EV_TYPE_THRESH:
231         case IIO_EV_TYPE_MAG:
232         case IIO_EV_TYPE_ROC:
233         case IIO_EV_TYPE_THRESH_ADAPTIVE:
234         case IIO_EV_TYPE_MAG_ADAPTIVE:
235         case IIO_EV_TYPE_CHANGE:
236         case IIO_EV_TYPE_GESTURE:
237                 break;
238         default:
239                 return false;
240         }
241
242         switch (dir) {
243         case IIO_EV_DIR_EITHER:
244         case IIO_EV_DIR_RISING:
245         case IIO_EV_DIR_FALLING:
246         case IIO_EV_DIR_SINGLETAP:
247         case IIO_EV_DIR_DOUBLETAP:
248         case IIO_EV_DIR_NONE:
249                 break;
250         default:
251                 return false;
252         }
253
254         return true;
255 }
256
257 static void print_event(struct iio_event_data *event)
258 {
259         enum iio_chan_type type = IIO_EVENT_CODE_EXTRACT_CHAN_TYPE(event->id);
260         enum iio_modifier mod = IIO_EVENT_CODE_EXTRACT_MODIFIER(event->id);
261         enum iio_event_type ev_type = IIO_EVENT_CODE_EXTRACT_TYPE(event->id);
262         enum iio_event_direction dir = IIO_EVENT_CODE_EXTRACT_DIR(event->id);
263         int chan = IIO_EVENT_CODE_EXTRACT_CHAN(event->id);
264         int chan2 = IIO_EVENT_CODE_EXTRACT_CHAN2(event->id);
265         bool diff = IIO_EVENT_CODE_EXTRACT_DIFF(event->id);
266
267         if (!event_is_known(event)) {
268                 fprintf(stderr, "Unknown event: time: %lld, id: %llx\n",
269                         event->timestamp, event->id);
270
271                 return;
272         }
273
274         printf("Event: time: %lld, type: %s", event->timestamp,
275                iio_chan_type_name_spec[type]);
276
277         if (mod != IIO_NO_MOD)
278                 printf("(%s)", iio_modifier_names[mod]);
279
280         if (chan >= 0) {
281                 printf(", channel: %d", chan);
282                 if (diff && chan2 >= 0)
283                         printf("-%d", chan2);
284         }
285
286         printf(", evtype: %s", iio_ev_type_text[ev_type]);
287
288         if (dir != IIO_EV_DIR_NONE)
289                 printf(", direction: %s", iio_ev_dir_text[dir]);
290
291         printf("\n");
292         fflush(stdout);
293 }
294
295 /* Enable or disable events in sysfs if the knob is available */
296 static void enable_events(char *dev_dir, int enable)
297 {
298         const struct dirent *ent;
299         char evdir[256];
300         int ret;
301         DIR *dp;
302
303         snprintf(evdir, sizeof(evdir), FORMAT_EVENTS_DIR, dev_dir);
304         evdir[sizeof(evdir)-1] = '\0';
305
306         dp = opendir(evdir);
307         if (!dp) {
308                 fprintf(stderr, "Enabling/disabling events: can't open %s\n",
309                         evdir);
310                 return;
311         }
312
313         while (ent = readdir(dp), ent) {
314                 if (iioutils_check_suffix(ent->d_name, "_en")) {
315                         printf("%sabling: %s\n",
316                                enable ? "En" : "Dis",
317                                ent->d_name);
318                         ret = write_sysfs_int(ent->d_name, evdir,
319                                               enable);
320                         if (ret < 0)
321                                 fprintf(stderr, "Failed to enable/disable %s\n",
322                                         ent->d_name);
323                 }
324         }
325
326         if (closedir(dp) == -1) {
327                 perror("Enabling/disabling channels: "
328                        "Failed to close directory");
329                 return;
330         }
331 }
332
333 int main(int argc, char **argv)
334 {
335         struct iio_event_data event;
336         const char *device_name;
337         char *dev_dir_name = NULL;
338         char *chrdev_name;
339         int ret;
340         int dev_num;
341         int fd, event_fd;
342         bool all_events = false;
343
344         if (argc == 2) {
345                 device_name = argv[1];
346         } else if (argc == 3) {
347                 device_name = argv[2];
348                 if (!strcmp(argv[1], "-a"))
349                         all_events = true;
350         } else {
351                 fprintf(stderr,
352                         "Usage: iio_event_monitor [options] <device_name>\n"
353                         "Listen and display events from IIO devices\n"
354                         "  -a         Auto-activate all available events\n");
355                 return -1;
356         }
357
358         dev_num = find_type_by_name(device_name, "iio:device");
359         if (dev_num >= 0) {
360                 printf("Found IIO device with name %s with device number %d\n",
361                        device_name, dev_num);
362                 ret = asprintf(&chrdev_name, "/dev/iio:device%d", dev_num);
363                 if (ret < 0)
364                         return -ENOMEM;
365                 /* Look up sysfs dir as well if we can */
366                 ret = asprintf(&dev_dir_name, "%siio:device%d", iio_dir, dev_num);
367                 if (ret < 0)
368                         return -ENOMEM;
369         } else {
370                 /*
371                  * If we can't find an IIO device by name assume device_name is
372                  * an IIO chrdev
373                  */
374                 chrdev_name = strdup(device_name);
375                 if (!chrdev_name)
376                         return -ENOMEM;
377         }
378
379         if (all_events && dev_dir_name)
380                 enable_events(dev_dir_name, 1);
381
382         fd = open(chrdev_name, 0);
383         if (fd == -1) {
384                 ret = -errno;
385                 fprintf(stderr, "Failed to open %s\n", chrdev_name);
386                 goto error_free_chrdev_name;
387         }
388
389         ret = ioctl(fd, IIO_GET_EVENT_FD_IOCTL, &event_fd);
390         if (ret == -1 || event_fd == -1) {
391                 ret = -errno;
392                 if (ret == -ENODEV)
393                         fprintf(stderr,
394                                 "This device does not support events\n");
395                 else
396                         fprintf(stderr, "Failed to retrieve event fd\n");
397                 if (close(fd) == -1)
398                         perror("Failed to close character device file");
399
400                 goto error_free_chrdev_name;
401         }
402
403         if (close(fd) == -1)  {
404                 ret = -errno;
405                 goto error_free_chrdev_name;
406         }
407
408         while (true) {
409                 ret = read(event_fd, &event, sizeof(event));
410                 if (ret == -1) {
411                         if (errno == EAGAIN) {
412                                 fprintf(stderr, "nothing available\n");
413                                 continue;
414                         } else {
415                                 ret = -errno;
416                                 perror("Failed to read event from device");
417                                 break;
418                         }
419                 }
420
421                 if (ret != sizeof(event)) {
422                         fprintf(stderr, "Reading event failed!\n");
423                         ret = -EIO;
424                         break;
425                 }
426
427                 print_event(&event);
428         }
429
430         if (close(event_fd) == -1)
431                 perror("Failed to close event file");
432
433 error_free_chrdev_name:
434         /* Disable events after use */
435         if (all_events && dev_dir_name)
436                 enable_events(dev_dir_name, 0);
437
438         free(chrdev_name);
439
440         return ret;
441 }