Linux Audio

Check our new training course

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