]> git.ipfire.org Git - thirdparty/linux.git/blame - tools/iio/iio_generic_buffer.c
Merge tag 'for-linus' of git://git.kernel.org/pub/scm/virt/kvm/kvm
[thirdparty/linux.git] / tools / iio / iio_generic_buffer.c
CommitLineData
d2912cb1 1// SPDX-License-Identifier: GPL-2.0-only
e58537cc
JC
2/* Industrialio buffer test code.
3 *
4 * Copyright (c) 2008 Jonathan Cameron
5 *
e58537cc
JC
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 * Command line parameters
12 * generic_buffer -n <device_name> -t <trigger_name>
13 * If trigger name is not specified the program assumes you want a dataready
14 * trigger associated with the device and goes looking for it.
e58537cc
JC
15 */
16
17#include <unistd.h>
bdcb31d0 18#include <stdlib.h>
e58537cc
JC
19#include <dirent.h>
20#include <fcntl.h>
21#include <stdio.h>
22#include <errno.h>
23#include <sys/stat.h>
24#include <sys/dir.h>
25#include <linux/types.h>
30268a3d 26#include <string.h>
52615d47 27#include <poll.h>
117cf8b7 28#include <endian.h>
bb23378c 29#include <getopt.h>
1bcdfbcf 30#include <inttypes.h>
4f20d592
LC
31#include <stdbool.h>
32#include <signal.h>
e58537cc
JC
33#include "iio_utils.h"
34
5f991a92
LW
35/**
36 * enum autochan - state for the automatic channel enabling mechanism
37 */
38enum autochan {
39 AUTOCHANNELS_DISABLED,
40 AUTOCHANNELS_ENABLED,
41 AUTOCHANNELS_ACTIVE,
42};
43
e58537cc
JC
44/**
45 * size_from_channelarray() - calculate the storage size of a scan
d8da0eee
PM
46 * @channels: the channel info array
47 * @num_channels: number of channels
e58537cc
JC
48 *
49 * Has the side effect of filling the channels[i].location values used
50 * in processing the buffer output.
51 **/
52int size_from_channelarray(struct iio_channel_info *channels, int num_channels)
53{
54 int bytes = 0;
55 int i = 0;
ff39a252 56
e58537cc
JC
57 while (i < num_channels) {
58 if (bytes % channels[i].bytes == 0)
59 channels[i].location = bytes;
60 else
7663a4aa
HK
61 channels[i].location = bytes - bytes % channels[i].bytes
62 + channels[i].bytes;
63
e58537cc
JC
64 bytes = channels[i].location + channels[i].bytes;
65 i++;
66 }
7663a4aa 67
e58537cc
JC
68 return bytes;
69}
70
e8d0927a
TB
71void print1byte(uint8_t input, struct iio_channel_info *info)
72{
73 /*
74 * Shift before conversion to avoid sign extension
75 * of left aligned data
76 */
77 input >>= info->shift;
78 input &= info->mask;
79 if (info->is_signed) {
80 int8_t val = (int8_t)(input << (8 - info->bits_used)) >>
81 (8 - info->bits_used);
82 printf("%05f ", ((float)val + info->offset) * info->scale);
83 } else {
84 printf("%05f ", ((float)input + info->offset) * info->scale);
85 }
86}
87
8e926134 88void print2byte(uint16_t input, struct iio_channel_info *info)
52615d47 89{
117cf8b7 90 /* First swap if incorrect endian */
117cf8b7 91 if (info->be)
8e926134 92 input = be16toh(input);
117cf8b7 93 else
8e926134 94 input = le16toh(input);
117cf8b7 95
d8da0eee
PM
96 /*
97 * Shift before conversion to avoid sign extension
98 * of left aligned data
99 */
1525ecfc 100 input >>= info->shift;
8e926134 101 input &= info->mask;
52615d47 102 if (info->is_signed) {
8e926134
HK
103 int16_t val = (int16_t)(input << (16 - info->bits_used)) >>
104 (16 - info->bits_used);
105 printf("%05f ", ((float)val + info->offset) * info->scale);
106 } else {
107 printf("%05f ", ((float)input + info->offset) * info->scale);
108 }
109}
ff39a252 110
8e926134
HK
111void print4byte(uint32_t input, struct iio_channel_info *info)
112{
113 /* First swap if incorrect endian */
114 if (info->be)
115 input = be32toh(input);
116 else
117 input = le32toh(input);
118
119 /*
120 * Shift before conversion to avoid sign extension
121 * of left aligned data
122 */
123 input >>= info->shift;
124 input &= info->mask;
125 if (info->is_signed) {
126 int32_t val = (int32_t)(input << (32 - info->bits_used)) >>
127 (32 - info->bits_used);
128 printf("%05f ", ((float)val + info->offset) * info->scale);
52615d47 129 } else {
8e926134
HK
130 printf("%05f ", ((float)input + info->offset) * info->scale);
131 }
132}
ff39a252 133
8e926134
HK
134void print8byte(uint64_t input, struct iio_channel_info *info)
135{
136 /* First swap if incorrect endian */
137 if (info->be)
138 input = be64toh(input);
139 else
140 input = le64toh(input);
141
142 /*
143 * Shift before conversion to avoid sign extension
144 * of left aligned data
145 */
146 input >>= info->shift;
147 input &= info->mask;
148 if (info->is_signed) {
149 int64_t val = (int64_t)(input << (64 - info->bits_used)) >>
150 (64 - info->bits_used);
151 /* special case for timestamp */
152 if (info->scale == 1.0f && info->offset == 0.0f)
153 printf("%" PRId64 " ", val);
154 else
155 printf("%05f ",
156 ((float)val + info->offset) * info->scale);
157 } else {
158 printf("%05f ", ((float)input + info->offset) * info->scale);
52615d47
JC
159 }
160}
8e926134 161
e58537cc
JC
162/**
163 * process_scan() - print out the values in SI units
164 * @data: pointer to the start of the scan
7663a4aa
HK
165 * @channels: information about the channels.
166 * Note: size_from_channelarray must have been called first
167 * to fill the location offsets.
d8da0eee 168 * @num_channels: number of channels
e58537cc
JC
169 **/
170void process_scan(char *data,
d8da0eee 171 struct iio_channel_info *channels,
e58537cc
JC
172 int num_channels)
173{
174 int k;
ff39a252 175
e58537cc 176 for (k = 0; k < num_channels; k++)
d8da0eee 177 switch (channels[k].bytes) {
e58537cc 178 /* only a few cases implemented so far */
e8d0927a
TB
179 case 1:
180 print1byte(*(uint8_t *)(data + channels[k].location),
181 &channels[k]);
182 break;
e58537cc 183 case 2:
d8da0eee
PM
184 print2byte(*(uint16_t *)(data + channels[k].location),
185 &channels[k]);
e58537cc 186 break;
6cffc1f8 187 case 4:
8e926134
HK
188 print4byte(*(uint32_t *)(data + channels[k].location),
189 &channels[k]);
6cffc1f8 190 break;
e58537cc 191 case 8:
8e926134
HK
192 print8byte(*(uint64_t *)(data + channels[k].location),
193 &channels[k]);
e58537cc
JC
194 break;
195 default:
196 break;
197 }
198 printf("\n");
199}
200
5f991a92
LW
201static int enable_disable_all_channels(char *dev_dir_name, int enable)
202{
203 const struct dirent *ent;
204 char scanelemdir[256];
205 DIR *dp;
206 int ret;
207
208 snprintf(scanelemdir, sizeof(scanelemdir),
209 FORMAT_SCAN_ELEMENTS_DIR, dev_dir_name);
210 scanelemdir[sizeof(scanelemdir)-1] = '\0';
211
212 dp = opendir(scanelemdir);
213 if (!dp) {
214 fprintf(stderr, "Enabling/disabling channels: can't open %s\n",
215 scanelemdir);
216 return -EIO;
217 }
218
219 ret = -ENOENT;
220 while (ent = readdir(dp), ent) {
221 if (iioutils_check_suffix(ent->d_name, "_en")) {
222 printf("%sabling: %s\n",
223 enable ? "En" : "Dis",
224 ent->d_name);
225 ret = write_sysfs_int(ent->d_name, scanelemdir,
226 enable);
227 if (ret < 0)
228 fprintf(stderr, "Failed to enable/disable %s\n",
229 ent->d_name);
230 }
231 }
232
233 if (closedir(dp) == -1) {
234 perror("Enabling/disabling channels: "
235 "Failed to close directory");
236 return -errno;
237 }
238 return 0;
239}
240
e06e3d71
HK
241void print_usage(void)
242{
d9abc615
CO
243 fprintf(stderr, "Usage: generic_buffer [options]...\n"
244 "Capture, convert and output data from IIO device buffer\n"
5f991a92 245 " -a Auto-activate all available channels\n"
4e2cf0e2 246 " -A Force-activate ALL channels\n"
55dda0ab 247 " -c <n> Do n conversions, or loop forever if n < 0\n"
d9abc615
CO
248 " -e Disable wait for event (new data)\n"
249 " -g Use trigger-less mode\n"
250 " -l <n> Set buffer length to n samples\n"
de397db8
LC
251 " --device-name -n <name>\n"
252 " --device-num -N <num>\n"
253 " Set device by name or number (mandatory)\n"
7c7e9dad
LC
254 " --trigger-name -t <name>\n"
255 " --trigger-num -T <num>\n"
256 " Set trigger by name or number\n"
d9abc615 257 " -w <n> Set delay between reads in us (event-less mode)\n");
e06e3d71
HK
258}
259
4f20d592
LC
260enum autochan autochannels = AUTOCHANNELS_DISABLED;
261char *dev_dir_name = NULL;
262char *buf_dir_name = NULL;
263bool current_trigger_set = false;
264
265void cleanup(void)
266{
267 int ret;
268
269 /* Disable trigger */
270 if (dev_dir_name && current_trigger_set) {
271 /* Disconnect the trigger - just write a dummy name. */
272 ret = write_sysfs_string("trigger/current_trigger",
273 dev_dir_name, "NULL");
274 if (ret < 0)
275 fprintf(stderr, "Failed to disable trigger: %s\n",
276 strerror(-ret));
277 current_trigger_set = false;
278 }
279
280 /* Disable buffer */
281 if (buf_dir_name) {
282 ret = write_sysfs_int("enable", buf_dir_name, 0);
283 if (ret < 0)
284 fprintf(stderr, "Failed to disable buffer: %s\n",
285 strerror(-ret));
286 }
287
288 /* Disable channels if auto-enabled */
289 if (dev_dir_name && autochannels == AUTOCHANNELS_ACTIVE) {
290 ret = enable_disable_all_channels(dev_dir_name, 0);
291 if (ret)
292 fprintf(stderr, "Failed to disable all channels\n");
293 autochannels = AUTOCHANNELS_DISABLED;
294 }
295}
296
297void sig_handler(int signum)
298{
299 fprintf(stderr, "Caught signal %d\n", signum);
300 cleanup();
301 exit(-signum);
302}
303
304void register_cleanup(void)
305{
306 struct sigaction sa = { .sa_handler = sig_handler };
307 const int signums[] = { SIGINT, SIGTERM, SIGABRT };
308 int ret, i;
309
310 for (i = 0; i < ARRAY_SIZE(signums); ++i) {
311 ret = sigaction(signums[i], &sa, NULL);
312 if (ret) {
313 perror("Failed to register signal handler");
314 exit(-1);
315 }
316 }
317}
318
de397db8
LC
319static const struct option longopts[] = {
320 { "device-name", 1, 0, 'n' },
321 { "device-num", 1, 0, 'N' },
7c7e9dad
LC
322 { "trigger-name", 1, 0, 't' },
323 { "trigger-num", 1, 0, 'T' },
de397db8
LC
324 { },
325};
326
e58537cc
JC
327int main(int argc, char **argv)
328{
b119d3bc 329 long long num_loops = 2;
96df9799
JC
330 unsigned long timedelay = 1000000;
331 unsigned long buf_len = 128;
332
71b52d2c 333 ssize_t i;
55dda0ab 334 unsigned long long j;
71b52d2c
MK
335 unsigned long toread;
336 int ret, c;
4f20d592 337 int fp = -1;
e58537cc 338
4f20d592 339 int num_channels = 0;
e58537cc 340 char *trigger_name = NULL, *device_name = NULL;
e58537cc 341
4f20d592 342 char *data = NULL;
c77b3810 343 ssize_t read_size;
deb4d1fd 344 int dev_num = -1, trig_num = -1;
4f20d592 345 char *buffer_access = NULL;
e58537cc 346 int scan_size;
30268a3d 347 int noevents = 0;
b6d5be57 348 int notrigger = 0;
96df9799 349 char *dummy;
71ccbe5d 350 bool force_autochannels = false;
e58537cc 351
ddbc719f 352 struct iio_channel_info *channels = NULL;
e58537cc 353
4f20d592
LC
354 register_cleanup();
355
4e2cf0e2
ERR
356 while ((c = getopt_long(argc, argv, "aAc:egl:n:N:t:T:w:?", longopts,
357 NULL)) != -1) {
e58537cc 358 switch (c) {
5f991a92
LW
359 case 'a':
360 autochannels = AUTOCHANNELS_ENABLED;
361 break;
4e2cf0e2
ERR
362 case 'A':
363 autochannels = AUTOCHANNELS_ENABLED;
71ccbe5d 364 force_autochannels = true;
4e2cf0e2 365 break;
96df9799 366 case 'c':
c8ce9903 367 errno = 0;
55dda0ab 368 num_loops = strtoll(optarg, &dummy, 10);
4f20d592
LC
369 if (errno) {
370 ret = -errno;
371 goto error;
372 }
7663a4aa 373
96df9799 374 break;
e06e3d71
HK
375 case 'e':
376 noevents = 1;
377 break;
378 case 'g':
379 notrigger = 1;
96df9799
JC
380 break;
381 case 'l':
c8ce9903 382 errno = 0;
96df9799 383 buf_len = strtoul(optarg, &dummy, 10);
4f20d592
LC
384 if (errno) {
385 ret = -errno;
386 goto error;
387 }
7663a4aa 388
96df9799 389 break;
e06e3d71 390 case 'n':
de397db8
LC
391 device_name = strdup(optarg);
392 break;
393 case 'N':
394 errno = 0;
395 dev_num = strtoul(optarg, &dummy, 10);
396 if (errno) {
397 ret = -errno;
398 goto error;
399 }
e06e3d71
HK
400 break;
401 case 't':
4f20d592 402 trigger_name = strdup(optarg);
e06e3d71 403 break;
7c7e9dad
LC
404 case 'T':
405 errno = 0;
406 trig_num = strtoul(optarg, &dummy, 10);
407 if (errno)
408 return -errno;
409 break;
e06e3d71
HK
410 case 'w':
411 errno = 0;
412 timedelay = strtoul(optarg, &dummy, 10);
4f20d592
LC
413 if (errno) {
414 ret = -errno;
415 goto error;
416 }
b6d5be57 417 break;
e58537cc 418 case '?':
e06e3d71 419 print_usage();
4f20d592
LC
420 ret = -1;
421 goto error;
e58537cc
JC
422 }
423 }
424
425 /* Find the device requested */
de397db8
LC
426 if (dev_num < 0 && !device_name) {
427 fprintf(stderr, "Device not set\n");
428 print_usage();
429 ret = -1;
430 goto error;
431 } else if (dev_num >= 0 && device_name) {
432 fprintf(stderr, "Only one of --device-num or --device-name needs to be set\n");
433 print_usage();
434 ret = -1;
4f20d592 435 goto error;
de397db8
LC
436 } else if (dev_num < 0) {
437 dev_num = find_type_by_name(device_name, "iio:device");
438 if (dev_num < 0) {
439 fprintf(stderr, "Failed to find the %s\n", device_name);
440 ret = dev_num;
441 goto error;
442 }
e58537cc
JC
443 }
444 printf("iio device number being used is %d\n", dev_num);
445
e9e45b43 446 ret = asprintf(&dev_dir_name, "%siio:device%d", iio_dir, dev_num);
de397db8
LC
447 if (ret < 0)
448 return -ENOMEM;
449 /* Fetch device_name if specified by number */
450 if (!device_name) {
451 device_name = malloc(IIO_MAX_NAME_LENGTH);
452 if (!device_name) {
453 ret = -ENOMEM;
454 goto error;
455 }
456 ret = read_sysfs_string("name", dev_dir_name, device_name);
457 if (ret < 0) {
458 fprintf(stderr, "Failed to read name of device %d\n", dev_num);
459 goto error;
460 }
4f20d592 461 }
b6d5be57 462
7c7e9dad
LC
463 if (notrigger) {
464 printf("trigger-less mode selected\n");
f8e81d7e 465 } else if (trig_num >= 0) {
7c7e9dad
LC
466 char *trig_dev_name;
467 ret = asprintf(&trig_dev_name, "%strigger%d", iio_dir, trig_num);
468 if (ret < 0) {
469 return -ENOMEM;
470 }
471 trigger_name = malloc(IIO_MAX_NAME_LENGTH);
472 ret = read_sysfs_string("name", trig_dev_name, trigger_name);
473 free(trig_dev_name);
474 if (ret < 0) {
475 fprintf(stderr, "Failed to read trigger%d name from\n", trig_num);
476 return ret;
477 }
478 printf("iio trigger number being used is %d\n", trig_num);
479 } else {
ff1ac639 480 if (!trigger_name) {
b6d5be57
KW
481 /*
482 * Build the trigger name. If it is device associated
483 * its name is <device_name>_dev[n] where n matches
484 * the device number found above.
485 */
486 ret = asprintf(&trigger_name,
487 "%s-dev%d", device_name, dev_num);
488 if (ret < 0) {
489 ret = -ENOMEM;
4f20d592 490 goto error;
b6d5be57 491 }
e58537cc 492 }
e58537cc 493
793d6b5e
LW
494 /* Look for this "-devN" trigger */
495 trig_num = find_type_by_name(trigger_name, "trigger");
496 if (trig_num < 0) {
497 /* OK try the simpler "-trigger" suffix instead */
498 free(trigger_name);
499 ret = asprintf(&trigger_name,
500 "%s-trigger", device_name);
501 if (ret < 0) {
502 ret = -ENOMEM;
4f20d592 503 goto error;
793d6b5e
LW
504 }
505 }
506
b6d5be57
KW
507 trig_num = find_type_by_name(trigger_name, "trigger");
508 if (trig_num < 0) {
d9abc615
CO
509 fprintf(stderr, "Failed to find the trigger %s\n",
510 trigger_name);
e83a47cf 511 ret = trig_num;
4f20d592 512 goto error;
b6d5be57 513 }
7663a4aa 514
b6d5be57 515 printf("iio trigger number being used is %d\n", trig_num);
7663a4aa 516 }
e58537cc
JC
517
518 /*
519 * Parse the files in scan_elements to identify what channels are
520 * present
521 */
d8da0eee 522 ret = build_channel_array(dev_dir_name, &channels, &num_channels);
e58537cc 523 if (ret) {
d9abc615
CO
524 fprintf(stderr, "Problem reading scan element information\n"
525 "diag %s\n", dev_dir_name);
4f20d592 526 goto error;
e58537cc 527 }
7c5fe411 528 if (num_channels && autochannels == AUTOCHANNELS_ENABLED &&
71ccbe5d 529 !force_autochannels) {
5f991a92
LW
530 fprintf(stderr, "Auto-channels selected but some channels "
531 "are already activated in sysfs\n");
532 fprintf(stderr, "Proceeding without activating any channels\n");
533 }
534
4e2cf0e2 535 if ((!num_channels && autochannels == AUTOCHANNELS_ENABLED) ||
7c5fe411 536 (autochannels == AUTOCHANNELS_ENABLED && force_autochannels)) {
4e2cf0e2 537 fprintf(stderr, "Enabling all channels\n");
5f991a92
LW
538
539 ret = enable_disable_all_channels(dev_dir_name, 1);
540 if (ret) {
541 fprintf(stderr, "Failed to enable all channels\n");
4f20d592 542 goto error;
5f991a92
LW
543 }
544
545 /* This flags that we need to disable the channels again */
546 autochannels = AUTOCHANNELS_ACTIVE;
547
548 ret = build_channel_array(dev_dir_name, &channels,
549 &num_channels);
550 if (ret) {
551 fprintf(stderr, "Problem reading scan element "
552 "information\n"
553 "diag %s\n", dev_dir_name);
4f20d592 554 goto error;
5f991a92
LW
555 }
556 if (!num_channels) {
557 fprintf(stderr, "Still no channels after "
558 "auto-enabling, giving up\n");
4f20d592 559 goto error;
5f991a92
LW
560 }
561 }
562
563 if (!num_channels && autochannels == AUTOCHANNELS_DISABLED) {
53dabafe
LW
564 fprintf(stderr,
565 "No channels are enabled, we have nothing to scan.\n");
566 fprintf(stderr, "Enable channels manually in "
567 FORMAT_SCAN_ELEMENTS_DIR
5f991a92
LW
568 "/*_en or pass -a to autoenable channels and "
569 "try again.\n", dev_dir_name);
53dabafe 570 ret = -ENOENT;
4f20d592 571 goto error;
53dabafe 572 }
e58537cc
JC
573
574 /*
575 * Construct the directory name for the associated buffer.
576 * As we know that the lis3l02dq has only one buffer this may
577 * be built rather than found.
578 */
1aa04278
JC
579 ret = asprintf(&buf_dir_name,
580 "%siio:device%d/buffer", iio_dir, dev_num);
e58537cc
JC
581 if (ret < 0) {
582 ret = -ENOMEM;
4f20d592 583 goto error;
e58537cc 584 }
b6d5be57
KW
585
586 if (!notrigger) {
587 printf("%s %s\n", dev_dir_name, trigger_name);
7663a4aa
HK
588 /*
589 * Set the device trigger to be the data ready trigger found
590 * above
591 */
b6d5be57
KW
592 ret = write_sysfs_string_and_verify("trigger/current_trigger",
593 dev_dir_name,
594 trigger_name);
595 if (ret < 0) {
d9abc615
CO
596 fprintf(stderr,
597 "Failed to write current_trigger file\n");
4f20d592 598 goto error;
b6d5be57 599 }
e58537cc
JC
600 }
601
602 /* Setup ring buffer parameters */
603 ret = write_sysfs_int("length", buf_dir_name, buf_len);
604 if (ret < 0)
4f20d592 605 goto error;
e58537cc
JC
606
607 /* Enable the buffer */
608 ret = write_sysfs_int("enable", buf_dir_name, 1);
e7231491
IT
609 if (ret < 0) {
610 fprintf(stderr,
611 "Failed to enable buffer: %s\n", strerror(-ret));
4f20d592 612 goto error;
e7231491 613 }
7663a4aa 614
d8da0eee 615 scan_size = size_from_channelarray(channels, num_channels);
7663a4aa 616 data = malloc(scan_size * buf_len);
e58537cc
JC
617 if (!data) {
618 ret = -ENOMEM;
4f20d592 619 goto error;
e58537cc
JC
620 }
621
1aa04278 622 ret = asprintf(&buffer_access, "/dev/iio:device%d", dev_num);
e58537cc
JC
623 if (ret < 0) {
624 ret = -ENOMEM;
4f20d592 625 goto error;
e58537cc
JC
626 }
627
e58537cc
JC
628 /* Attempt to open non blocking the access dev */
629 fp = open(buffer_access, O_RDONLY | O_NONBLOCK);
7663a4aa 630 if (fp == -1) { /* TODO: If it isn't there make the node */
e58537cc 631 ret = -errno;
d9abc615 632 fprintf(stderr, "Failed to open %s\n", buffer_access);
4f20d592 633 goto error;
e58537cc
JC
634 }
635
55dda0ab 636 for (j = 0; j < num_loops || num_loops < 0; j++) {
30268a3d 637 if (!noevents) {
52615d47
JC
638 struct pollfd pfd = {
639 .fd = fp,
640 .events = POLLIN,
641 };
642
6bb7cac8
HK
643 ret = poll(&pfd, 1, -1);
644 if (ret < 0) {
645 ret = -errno;
4f20d592 646 goto error;
6bb7cac8
HK
647 } else if (ret == 0) {
648 continue;
649 }
650
52615d47 651 toread = buf_len;
30268a3d 652 } else {
96df9799 653 usleep(timedelay);
30268a3d 654 toread = 64;
e58537cc 655 }
30268a3d 656
7663a4aa 657 read_size = read(fp, data, toread * scan_size);
97b603a4 658 if (read_size < 0) {
8749948a 659 if (errno == EAGAIN) {
d9abc615 660 fprintf(stderr, "nothing available\n");
97b603a4 661 continue;
7663a4aa 662 } else {
97b603a4 663 break;
7663a4aa 664 }
e58537cc 665 }
7663a4aa
HK
666 for (i = 0; i < read_size / scan_size; i++)
667 process_scan(data + scan_size * i, channels,
e58537cc
JC
668 num_channels);
669 }
670
4f20d592
LC
671error:
672 cleanup();
e58537cc 673
4f20d592 674 if (fp >= 0 && close(fp) == -1)
6bb7cac8 675 perror("Failed to close buffer");
e58537cc 676 free(buffer_access);
a71bfb4a 677 free(data);
e58537cc 678 free(buf_dir_name);
63f05c85
HK
679 for (i = num_channels - 1; i >= 0; i--) {
680 free(channels[i].name);
681 free(channels[i].generic_name);
682 }
683 free(channels);
4f20d592 684 free(trigger_name);
de397db8 685 free(device_name);
d3ccfc41 686 free(dev_dir_name);
0e799878 687
e58537cc
JC
688 return ret;
689}