Thomas Gleixner | d2912cb | 2019-06-04 10:11:33 +0200 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0-only |
Jonathan Cameron | e58537c | 2010-10-08 12:14:14 +0100 | [diff] [blame] | 2 | /* Industrialio buffer test code. |
| 3 | * |
| 4 | * Copyright (c) 2008 Jonathan Cameron |
| 5 | * |
Jonathan Cameron | e58537c | 2010-10-08 12:14:14 +0100 | [diff] [blame] | 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. |
Jonathan Cameron | e58537c | 2010-10-08 12:14:14 +0100 | [diff] [blame] | 15 | */ |
| 16 | |
| 17 | #include <unistd.h> |
Roberta Dobrescu | bdcb31d | 2015-02-26 10:49:24 +0200 | [diff] [blame] | 18 | #include <stdlib.h> |
Jonathan Cameron | e58537c | 2010-10-08 12:14:14 +0100 | [diff] [blame] | 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> |
Jonathan Cameron | 30268a3 | 2011-02-11 13:09:12 +0000 | [diff] [blame] | 26 | #include <string.h> |
Jonathan Cameron | 52615d4 | 2011-05-18 14:41:19 +0100 | [diff] [blame] | 27 | #include <poll.h> |
Jonathan Cameron | 117cf8b | 2011-12-04 19:10:59 +0000 | [diff] [blame] | 28 | #include <endian.h> |
Peter Meerwald | bb23378 | 2012-06-25 23:12:17 +0200 | [diff] [blame] | 29 | #include <getopt.h> |
Peter Meerwald | 1bcdfbc | 2012-06-25 23:12:16 +0200 | [diff] [blame] | 30 | #include <inttypes.h> |
Crestez Dan Leonard | 4f20d59 | 2016-05-23 21:39:56 +0300 | [diff] [blame] | 31 | #include <stdbool.h> |
| 32 | #include <signal.h> |
Alexandru Ardelean | 8827faa | 2021-02-15 12:40:43 +0200 | [diff] [blame] | 33 | #include <sys/ioctl.h> |
| 34 | #include <linux/iio/buffer.h> |
Jonathan Cameron | e58537c | 2010-10-08 12:14:14 +0100 | [diff] [blame] | 35 | #include "iio_utils.h" |
| 36 | |
Jonathan Cameron | e58537c | 2010-10-08 12:14:14 +0100 | [diff] [blame] | 37 | /** |
Linus Walleij | 5f991a9 | 2016-04-14 10:26:47 +0200 | [diff] [blame] | 38 | * enum autochan - state for the automatic channel enabling mechanism |
| 39 | */ |
| 40 | enum autochan { |
| 41 | AUTOCHANNELS_DISABLED, |
| 42 | AUTOCHANNELS_ENABLED, |
| 43 | AUTOCHANNELS_ACTIVE, |
| 44 | }; |
| 45 | |
| 46 | /** |
Jonathan Cameron | e58537c | 2010-10-08 12:14:14 +0100 | [diff] [blame] | 47 | * size_from_channelarray() - calculate the storage size of a scan |
Peter Meerwald | d8da0ee | 2012-06-25 23:12:14 +0200 | [diff] [blame] | 48 | * @channels: the channel info array |
| 49 | * @num_channels: number of channels |
Jonathan Cameron | e58537c | 2010-10-08 12:14:14 +0100 | [diff] [blame] | 50 | * |
| 51 | * Has the side effect of filling the channels[i].location values used |
| 52 | * in processing the buffer output. |
| 53 | **/ |
Alexandru Ardelean | ebe5112 | 2021-02-15 12:40:42 +0200 | [diff] [blame] | 54 | static int size_from_channelarray(struct iio_channel_info *channels, int num_channels) |
Jonathan Cameron | e58537c | 2010-10-08 12:14:14 +0100 | [diff] [blame] | 55 | { |
| 56 | int bytes = 0; |
| 57 | int i = 0; |
Melike Yurtoglu | ff39a25 | 2014-10-03 23:34:50 +0300 | [diff] [blame] | 58 | |
Jonathan Cameron | e58537c | 2010-10-08 12:14:14 +0100 | [diff] [blame] | 59 | while (i < num_channels) { |
| 60 | if (bytes % channels[i].bytes == 0) |
| 61 | channels[i].location = bytes; |
| 62 | else |
Hartmut Knaack | 7663a4a | 2015-06-10 21:51:20 +0200 | [diff] [blame] | 63 | channels[i].location = bytes - bytes % channels[i].bytes |
| 64 | + channels[i].bytes; |
| 65 | |
Jonathan Cameron | e58537c | 2010-10-08 12:14:14 +0100 | [diff] [blame] | 66 | bytes = channels[i].location + channels[i].bytes; |
| 67 | i++; |
| 68 | } |
Hartmut Knaack | 7663a4a | 2015-06-10 21:51:20 +0200 | [diff] [blame] | 69 | |
Jonathan Cameron | e58537c | 2010-10-08 12:14:14 +0100 | [diff] [blame] | 70 | return bytes; |
| 71 | } |
| 72 | |
Alexandru Ardelean | ebe5112 | 2021-02-15 12:40:42 +0200 | [diff] [blame] | 73 | static void print1byte(uint8_t input, struct iio_channel_info *info) |
Tiberiu Breana | e8d0927 | 2015-07-03 12:57:36 +0300 | [diff] [blame] | 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 | |
Alexandru Ardelean | ebe5112 | 2021-02-15 12:40:42 +0200 | [diff] [blame] | 90 | static void print2byte(uint16_t input, struct iio_channel_info *info) |
Jonathan Cameron | 52615d4 | 2011-05-18 14:41:19 +0100 | [diff] [blame] | 91 | { |
Jonathan Cameron | 117cf8b | 2011-12-04 19:10:59 +0000 | [diff] [blame] | 92 | /* First swap if incorrect endian */ |
Jonathan Cameron | 117cf8b | 2011-12-04 19:10:59 +0000 | [diff] [blame] | 93 | if (info->be) |
Hartmut Knaack | 8e92613 | 2015-05-31 14:39:58 +0200 | [diff] [blame] | 94 | input = be16toh(input); |
Jonathan Cameron | 117cf8b | 2011-12-04 19:10:59 +0000 | [diff] [blame] | 95 | else |
Hartmut Knaack | 8e92613 | 2015-05-31 14:39:58 +0200 | [diff] [blame] | 96 | input = le16toh(input); |
Jonathan Cameron | 117cf8b | 2011-12-04 19:10:59 +0000 | [diff] [blame] | 97 | |
Peter Meerwald | d8da0ee | 2012-06-25 23:12:14 +0200 | [diff] [blame] | 98 | /* |
| 99 | * Shift before conversion to avoid sign extension |
| 100 | * of left aligned data |
| 101 | */ |
Aya Mahfouz | 1525ecf | 2015-02-26 11:45:26 +0200 | [diff] [blame] | 102 | input >>= info->shift; |
Hartmut Knaack | 8e92613 | 2015-05-31 14:39:58 +0200 | [diff] [blame] | 103 | input &= info->mask; |
Jonathan Cameron | 52615d4 | 2011-05-18 14:41:19 +0100 | [diff] [blame] | 104 | if (info->is_signed) { |
Hartmut Knaack | 8e92613 | 2015-05-31 14:39:58 +0200 | [diff] [blame] | 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); |
Jonathan Cameron | 52615d4 | 2011-05-18 14:41:19 +0100 | [diff] [blame] | 108 | } else { |
Hartmut Knaack | 8e92613 | 2015-05-31 14:39:58 +0200 | [diff] [blame] | 109 | printf("%05f ", ((float)input + info->offset) * info->scale); |
Jonathan Cameron | 52615d4 | 2011-05-18 14:41:19 +0100 | [diff] [blame] | 110 | } |
| 111 | } |
Hartmut Knaack | 8e92613 | 2015-05-31 14:39:58 +0200 | [diff] [blame] | 112 | |
Alexandru Ardelean | ebe5112 | 2021-02-15 12:40:42 +0200 | [diff] [blame] | 113 | static void print4byte(uint32_t input, struct iio_channel_info *info) |
Hartmut Knaack | 8e92613 | 2015-05-31 14:39:58 +0200 | [diff] [blame] | 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 | |
Alexandru Ardelean | ebe5112 | 2021-02-15 12:40:42 +0200 | [diff] [blame] | 136 | static void print8byte(uint64_t input, struct iio_channel_info *info) |
Hartmut Knaack | 8e92613 | 2015-05-31 14:39:58 +0200 | [diff] [blame] | 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 | |
Jonathan Cameron | e58537c | 2010-10-08 12:14:14 +0100 | [diff] [blame] | 164 | /** |
| 165 | * process_scan() - print out the values in SI units |
| 166 | * @data: pointer to the start of the scan |
Hartmut Knaack | 7663a4a | 2015-06-10 21:51:20 +0200 | [diff] [blame] | 167 | * @channels: information about the channels. |
| 168 | * Note: size_from_channelarray must have been called first |
| 169 | * to fill the location offsets. |
Peter Meerwald | d8da0ee | 2012-06-25 23:12:14 +0200 | [diff] [blame] | 170 | * @num_channels: number of channels |
Jonathan Cameron | e58537c | 2010-10-08 12:14:14 +0100 | [diff] [blame] | 171 | **/ |
Alexandru Ardelean | ebe5112 | 2021-02-15 12:40:42 +0200 | [diff] [blame] | 172 | static void process_scan(char *data, struct iio_channel_info *channels, |
| 173 | int num_channels) |
Jonathan Cameron | e58537c | 2010-10-08 12:14:14 +0100 | [diff] [blame] | 174 | { |
| 175 | int k; |
Melike Yurtoglu | ff39a25 | 2014-10-03 23:34:50 +0300 | [diff] [blame] | 176 | |
Jonathan Cameron | e58537c | 2010-10-08 12:14:14 +0100 | [diff] [blame] | 177 | for (k = 0; k < num_channels; k++) |
Peter Meerwald | d8da0ee | 2012-06-25 23:12:14 +0200 | [diff] [blame] | 178 | switch (channels[k].bytes) { |
Jonathan Cameron | e58537c | 2010-10-08 12:14:14 +0100 | [diff] [blame] | 179 | /* only a few cases implemented so far */ |
Tiberiu Breana | e8d0927 | 2015-07-03 12:57:36 +0300 | [diff] [blame] | 180 | case 1: |
| 181 | print1byte(*(uint8_t *)(data + channels[k].location), |
| 182 | &channels[k]); |
| 183 | break; |
Jonathan Cameron | e58537c | 2010-10-08 12:14:14 +0100 | [diff] [blame] | 184 | case 2: |
Peter Meerwald | d8da0ee | 2012-06-25 23:12:14 +0200 | [diff] [blame] | 185 | print2byte(*(uint16_t *)(data + channels[k].location), |
| 186 | &channels[k]); |
Jonathan Cameron | e58537c | 2010-10-08 12:14:14 +0100 | [diff] [blame] | 187 | break; |
Marek Vasut | 6cffc1f | 2012-08-12 16:21:00 +0100 | [diff] [blame] | 188 | case 4: |
Hartmut Knaack | 8e92613 | 2015-05-31 14:39:58 +0200 | [diff] [blame] | 189 | print4byte(*(uint32_t *)(data + channels[k].location), |
| 190 | &channels[k]); |
Marek Vasut | 6cffc1f | 2012-08-12 16:21:00 +0100 | [diff] [blame] | 191 | break; |
Jonathan Cameron | e58537c | 2010-10-08 12:14:14 +0100 | [diff] [blame] | 192 | case 8: |
Hartmut Knaack | 8e92613 | 2015-05-31 14:39:58 +0200 | [diff] [blame] | 193 | print8byte(*(uint64_t *)(data + channels[k].location), |
| 194 | &channels[k]); |
Jonathan Cameron | e58537c | 2010-10-08 12:14:14 +0100 | [diff] [blame] | 195 | break; |
| 196 | default: |
| 197 | break; |
| 198 | } |
| 199 | printf("\n"); |
| 200 | } |
| 201 | |
Alexandru Ardelean | 8827faa | 2021-02-15 12:40:43 +0200 | [diff] [blame] | 202 | static int enable_disable_all_channels(char *dev_dir_name, int buffer_idx, int enable) |
Linus Walleij | 5f991a9 | 2016-04-14 10:26:47 +0200 | [diff] [blame] | 203 | { |
| 204 | const struct dirent *ent; |
| 205 | char scanelemdir[256]; |
| 206 | DIR *dp; |
| 207 | int ret; |
| 208 | |
| 209 | snprintf(scanelemdir, sizeof(scanelemdir), |
Alexandru Ardelean | 8827faa | 2021-02-15 12:40:43 +0200 | [diff] [blame] | 210 | FORMAT_SCAN_ELEMENTS_DIR, dev_dir_name, buffer_idx); |
Linus Walleij | 5f991a9 | 2016-04-14 10:26:47 +0200 | [diff] [blame] | 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 | |
Alexandru Ardelean | ebe5112 | 2021-02-15 12:40:42 +0200 | [diff] [blame] | 242 | static void print_usage(void) |
Hartmut Knaack | e06e3d7 | 2015-05-31 14:40:22 +0200 | [diff] [blame] | 243 | { |
Cristina Opriceana | d9abc61 | 2015-07-17 18:43:42 +0300 | [diff] [blame] | 244 | fprintf(stderr, "Usage: generic_buffer [options]...\n" |
| 245 | "Capture, convert and output data from IIO device buffer\n" |
Linus Walleij | 5f991a9 | 2016-04-14 10:26:47 +0200 | [diff] [blame] | 246 | " -a Auto-activate all available channels\n" |
Eva Rachel Retuya | 4e2cf0e | 2016-10-14 18:18:39 +0800 | [diff] [blame] | 247 | " -A Force-activate ALL channels\n" |
Alexandru Ardelean | 8827faa | 2021-02-15 12:40:43 +0200 | [diff] [blame] | 248 | " -b <n> The buffer which to open (by index), default 0\n" |
Martin Kelly | 55dda0a | 2018-05-17 17:14:46 -0700 | [diff] [blame] | 249 | " -c <n> Do n conversions, or loop forever if n < 0\n" |
Cristina Opriceana | d9abc61 | 2015-07-17 18:43:42 +0300 | [diff] [blame] | 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" |
Crestez Dan Leonard | de397db | 2016-05-23 21:39:57 +0300 | [diff] [blame] | 253 | " --device-name -n <name>\n" |
| 254 | " --device-num -N <num>\n" |
| 255 | " Set device by name or number (mandatory)\n" |
Crestez Dan Leonard | 7c7e9da | 2016-05-23 21:39:58 +0300 | [diff] [blame] | 256 | " --trigger-name -t <name>\n" |
| 257 | " --trigger-num -T <num>\n" |
| 258 | " Set trigger by name or number\n" |
Cristina Opriceana | d9abc61 | 2015-07-17 18:43:42 +0300 | [diff] [blame] | 259 | " -w <n> Set delay between reads in us (event-less mode)\n"); |
Hartmut Knaack | e06e3d7 | 2015-05-31 14:40:22 +0200 | [diff] [blame] | 260 | } |
| 261 | |
Alexandru Ardelean | ebe5112 | 2021-02-15 12:40:42 +0200 | [diff] [blame] | 262 | static enum autochan autochannels = AUTOCHANNELS_DISABLED; |
| 263 | static char *dev_dir_name = NULL; |
| 264 | static char *buf_dir_name = NULL; |
Alexandru Ardelean | 8827faa | 2021-02-15 12:40:43 +0200 | [diff] [blame] | 265 | static int buffer_idx = 0; |
Alexandru Ardelean | ebe5112 | 2021-02-15 12:40:42 +0200 | [diff] [blame] | 266 | static bool current_trigger_set = false; |
Crestez Dan Leonard | 4f20d59 | 2016-05-23 21:39:56 +0300 | [diff] [blame] | 267 | |
Alexandru Ardelean | ebe5112 | 2021-02-15 12:40:42 +0200 | [diff] [blame] | 268 | static void cleanup(void) |
Crestez Dan Leonard | 4f20d59 | 2016-05-23 21:39:56 +0300 | [diff] [blame] | 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) { |
Alexandru Ardelean | 8827faa | 2021-02-15 12:40:43 +0200 | [diff] [blame] | 293 | ret = enable_disable_all_channels(dev_dir_name, buffer_idx, 0); |
Crestez Dan Leonard | 4f20d59 | 2016-05-23 21:39:56 +0300 | [diff] [blame] | 294 | if (ret) |
| 295 | fprintf(stderr, "Failed to disable all channels\n"); |
| 296 | autochannels = AUTOCHANNELS_DISABLED; |
| 297 | } |
| 298 | } |
| 299 | |
Alexandru Ardelean | ebe5112 | 2021-02-15 12:40:42 +0200 | [diff] [blame] | 300 | static void sig_handler(int signum) |
Crestez Dan Leonard | 4f20d59 | 2016-05-23 21:39:56 +0300 | [diff] [blame] | 301 | { |
| 302 | fprintf(stderr, "Caught signal %d\n", signum); |
| 303 | cleanup(); |
| 304 | exit(-signum); |
| 305 | } |
| 306 | |
Alexandru Ardelean | ebe5112 | 2021-02-15 12:40:42 +0200 | [diff] [blame] | 307 | static void register_cleanup(void) |
Crestez Dan Leonard | 4f20d59 | 2016-05-23 21:39:56 +0300 | [diff] [blame] | 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 | |
Crestez Dan Leonard | de397db | 2016-05-23 21:39:57 +0300 | [diff] [blame] | 322 | static const struct option longopts[] = { |
| 323 | { "device-name", 1, 0, 'n' }, |
| 324 | { "device-num", 1, 0, 'N' }, |
Crestez Dan Leonard | 7c7e9da | 2016-05-23 21:39:58 +0300 | [diff] [blame] | 325 | { "trigger-name", 1, 0, 't' }, |
| 326 | { "trigger-num", 1, 0, 'T' }, |
Crestez Dan Leonard | de397db | 2016-05-23 21:39:57 +0300 | [diff] [blame] | 327 | { }, |
| 328 | }; |
| 329 | |
Jonathan Cameron | e58537c | 2010-10-08 12:14:14 +0100 | [diff] [blame] | 330 | int main(int argc, char **argv) |
| 331 | { |
Martin Kelly | b119d3b | 2019-01-11 23:13:09 +0000 | [diff] [blame] | 332 | long long num_loops = 2; |
Jonathan Cameron | 96df979 | 2011-02-11 13:09:13 +0000 | [diff] [blame] | 333 | unsigned long timedelay = 1000000; |
| 334 | unsigned long buf_len = 128; |
| 335 | |
Martin Kelly | 71b52d2 | 2018-05-17 17:14:45 -0700 | [diff] [blame] | 336 | ssize_t i; |
Martin Kelly | 55dda0a | 2018-05-17 17:14:46 -0700 | [diff] [blame] | 337 | unsigned long long j; |
Martin Kelly | 71b52d2 | 2018-05-17 17:14:45 -0700 | [diff] [blame] | 338 | unsigned long toread; |
| 339 | int ret, c; |
Alexandru Ardelean | 8827faa | 2021-02-15 12:40:43 +0200 | [diff] [blame] | 340 | struct stat st; |
| 341 | int fd = -1; |
| 342 | int buf_fd = -1; |
Jonathan Cameron | e58537c | 2010-10-08 12:14:14 +0100 | [diff] [blame] | 343 | |
Crestez Dan Leonard | 4f20d59 | 2016-05-23 21:39:56 +0300 | [diff] [blame] | 344 | int num_channels = 0; |
Jonathan Cameron | e58537c | 2010-10-08 12:14:14 +0100 | [diff] [blame] | 345 | char *trigger_name = NULL, *device_name = NULL; |
Jonathan Cameron | e58537c | 2010-10-08 12:14:14 +0100 | [diff] [blame] | 346 | |
Crestez Dan Leonard | 4f20d59 | 2016-05-23 21:39:56 +0300 | [diff] [blame] | 347 | char *data = NULL; |
Jonathan Cameron | c77b381 | 2011-04-15 18:56:00 +0100 | [diff] [blame] | 348 | ssize_t read_size; |
Crestez Dan Leonard | deb4d1f | 2016-06-03 21:56:29 +0300 | [diff] [blame] | 349 | int dev_num = -1, trig_num = -1; |
Crestez Dan Leonard | 4f20d59 | 2016-05-23 21:39:56 +0300 | [diff] [blame] | 350 | char *buffer_access = NULL; |
Jonathan Cameron | e58537c | 2010-10-08 12:14:14 +0100 | [diff] [blame] | 351 | int scan_size; |
Jonathan Cameron | 30268a3 | 2011-02-11 13:09:12 +0000 | [diff] [blame] | 352 | int noevents = 0; |
Karol Wrona | b6d5be57 | 2014-11-04 15:29:39 +0100 | [diff] [blame] | 353 | int notrigger = 0; |
Jonathan Cameron | 96df979 | 2011-02-11 13:09:13 +0000 | [diff] [blame] | 354 | char *dummy; |
Eva Rachel Retuya | 71ccbe5 | 2016-10-20 17:19:23 +0800 | [diff] [blame] | 355 | bool force_autochannels = false; |
Jonathan Cameron | e58537c | 2010-10-08 12:14:14 +0100 | [diff] [blame] | 356 | |
Alison Schofield | ddbc719 | 2016-07-26 20:17:43 -0700 | [diff] [blame] | 357 | struct iio_channel_info *channels = NULL; |
Jonathan Cameron | e58537c | 2010-10-08 12:14:14 +0100 | [diff] [blame] | 358 | |
Crestez Dan Leonard | 4f20d59 | 2016-05-23 21:39:56 +0300 | [diff] [blame] | 359 | register_cleanup(); |
| 360 | |
Alexandru Ardelean | 8827faa | 2021-02-15 12:40:43 +0200 | [diff] [blame] | 361 | while ((c = getopt_long(argc, argv, "aAb:c:egl:n:N:t:T:w:?", longopts, |
Eva Rachel Retuya | 4e2cf0e | 2016-10-14 18:18:39 +0800 | [diff] [blame] | 362 | NULL)) != -1) { |
Jonathan Cameron | e58537c | 2010-10-08 12:14:14 +0100 | [diff] [blame] | 363 | switch (c) { |
Linus Walleij | 5f991a9 | 2016-04-14 10:26:47 +0200 | [diff] [blame] | 364 | case 'a': |
| 365 | autochannels = AUTOCHANNELS_ENABLED; |
| 366 | break; |
Eva Rachel Retuya | 4e2cf0e | 2016-10-14 18:18:39 +0800 | [diff] [blame] | 367 | case 'A': |
| 368 | autochannels = AUTOCHANNELS_ENABLED; |
Eva Rachel Retuya | 71ccbe5 | 2016-10-20 17:19:23 +0800 | [diff] [blame] | 369 | force_autochannels = true; |
Alexandru Ardelean | 8827faa | 2021-02-15 12:40:43 +0200 | [diff] [blame] | 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; |
Jonathan Cameron | 96df979 | 2011-02-11 13:09:13 +0000 | [diff] [blame] | 384 | case 'c': |
Hartmut Knaack | c8ce990 | 2015-05-31 14:40:03 +0200 | [diff] [blame] | 385 | errno = 0; |
Martin Kelly | 55dda0a | 2018-05-17 17:14:46 -0700 | [diff] [blame] | 386 | num_loops = strtoll(optarg, &dummy, 10); |
Crestez Dan Leonard | 4f20d59 | 2016-05-23 21:39:56 +0300 | [diff] [blame] | 387 | if (errno) { |
| 388 | ret = -errno; |
| 389 | goto error; |
| 390 | } |
Hartmut Knaack | 7663a4a | 2015-06-10 21:51:20 +0200 | [diff] [blame] | 391 | |
Jonathan Cameron | 96df979 | 2011-02-11 13:09:13 +0000 | [diff] [blame] | 392 | break; |
Hartmut Knaack | e06e3d7 | 2015-05-31 14:40:22 +0200 | [diff] [blame] | 393 | case 'e': |
| 394 | noevents = 1; |
| 395 | break; |
| 396 | case 'g': |
| 397 | notrigger = 1; |
Jonathan Cameron | 96df979 | 2011-02-11 13:09:13 +0000 | [diff] [blame] | 398 | break; |
| 399 | case 'l': |
Hartmut Knaack | c8ce990 | 2015-05-31 14:40:03 +0200 | [diff] [blame] | 400 | errno = 0; |
Jonathan Cameron | 96df979 | 2011-02-11 13:09:13 +0000 | [diff] [blame] | 401 | buf_len = strtoul(optarg, &dummy, 10); |
Crestez Dan Leonard | 4f20d59 | 2016-05-23 21:39:56 +0300 | [diff] [blame] | 402 | if (errno) { |
| 403 | ret = -errno; |
| 404 | goto error; |
| 405 | } |
Hartmut Knaack | 7663a4a | 2015-06-10 21:51:20 +0200 | [diff] [blame] | 406 | |
Jonathan Cameron | 96df979 | 2011-02-11 13:09:13 +0000 | [diff] [blame] | 407 | break; |
Hartmut Knaack | e06e3d7 | 2015-05-31 14:40:22 +0200 | [diff] [blame] | 408 | case 'n': |
Crestez Dan Leonard | de397db | 2016-05-23 21:39:57 +0300 | [diff] [blame] | 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 | } |
Hartmut Knaack | e06e3d7 | 2015-05-31 14:40:22 +0200 | [diff] [blame] | 418 | break; |
| 419 | case 't': |
Crestez Dan Leonard | 4f20d59 | 2016-05-23 21:39:56 +0300 | [diff] [blame] | 420 | trigger_name = strdup(optarg); |
Hartmut Knaack | e06e3d7 | 2015-05-31 14:40:22 +0200 | [diff] [blame] | 421 | break; |
Crestez Dan Leonard | 7c7e9da | 2016-05-23 21:39:58 +0300 | [diff] [blame] | 422 | case 'T': |
| 423 | errno = 0; |
| 424 | trig_num = strtoul(optarg, &dummy, 10); |
| 425 | if (errno) |
| 426 | return -errno; |
| 427 | break; |
Hartmut Knaack | e06e3d7 | 2015-05-31 14:40:22 +0200 | [diff] [blame] | 428 | case 'w': |
| 429 | errno = 0; |
| 430 | timedelay = strtoul(optarg, &dummy, 10); |
Crestez Dan Leonard | 4f20d59 | 2016-05-23 21:39:56 +0300 | [diff] [blame] | 431 | if (errno) { |
| 432 | ret = -errno; |
| 433 | goto error; |
| 434 | } |
Karol Wrona | b6d5be57 | 2014-11-04 15:29:39 +0100 | [diff] [blame] | 435 | break; |
Jonathan Cameron | e58537c | 2010-10-08 12:14:14 +0100 | [diff] [blame] | 436 | case '?': |
Hartmut Knaack | e06e3d7 | 2015-05-31 14:40:22 +0200 | [diff] [blame] | 437 | print_usage(); |
Crestez Dan Leonard | 4f20d59 | 2016-05-23 21:39:56 +0300 | [diff] [blame] | 438 | ret = -1; |
| 439 | goto error; |
Jonathan Cameron | e58537c | 2010-10-08 12:14:14 +0100 | [diff] [blame] | 440 | } |
| 441 | } |
| 442 | |
| 443 | /* Find the device requested */ |
Crestez Dan Leonard | de397db | 2016-05-23 21:39:57 +0300 | [diff] [blame] | 444 | if (dev_num < 0 && !device_name) { |
| 445 | fprintf(stderr, "Device not set\n"); |
| 446 | print_usage(); |
| 447 | ret = -1; |
Crestez Dan Leonard | 4f20d59 | 2016-05-23 21:39:56 +0300 | [diff] [blame] | 448 | goto error; |
Crestez Dan Leonard | de397db | 2016-05-23 21:39:57 +0300 | [diff] [blame] | 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 | } |
Jonathan Cameron | e58537c | 2010-10-08 12:14:14 +0100 | [diff] [blame] | 461 | } |
| 462 | printf("iio device number being used is %d\n", dev_num); |
| 463 | |
Hartmut Knaack | e9e45b4 | 2015-05-31 14:40:02 +0200 | [diff] [blame] | 464 | ret = asprintf(&dev_dir_name, "%siio:device%d", iio_dir, dev_num); |
Crestez Dan Leonard | de397db | 2016-05-23 21:39:57 +0300 | [diff] [blame] | 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 | } |
Crestez Dan Leonard | 4f20d59 | 2016-05-23 21:39:56 +0300 | [diff] [blame] | 479 | } |
Jonathan Cameron | e58537c | 2010-10-08 12:14:14 +0100 | [diff] [blame] | 480 | |
Crestez Dan Leonard | 7c7e9da | 2016-05-23 21:39:58 +0300 | [diff] [blame] | 481 | if (notrigger) { |
| 482 | printf("trigger-less mode selected\n"); |
Gregor Boirie | f8e81d7 | 2016-08-24 15:28:27 +0200 | [diff] [blame] | 483 | } else if (trig_num >= 0) { |
Crestez Dan Leonard | 7c7e9da | 2016-05-23 21:39:58 +0300 | [diff] [blame] | 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 { |
Cristina Opriceana | ff1ac63 | 2015-07-13 16:15:56 +0300 | [diff] [blame] | 498 | if (!trigger_name) { |
Karol Wrona | b6d5be57 | 2014-11-04 15:29:39 +0100 | [diff] [blame] | 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; |
Crestez Dan Leonard | 4f20d59 | 2016-05-23 21:39:56 +0300 | [diff] [blame] | 508 | goto error; |
Karol Wrona | b6d5be57 | 2014-11-04 15:29:39 +0100 | [diff] [blame] | 509 | } |
| 510 | } |
| 511 | |
Linus Walleij | 793d6b5 | 2016-03-24 09:39:14 +0100 | [diff] [blame] | 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; |
Crestez Dan Leonard | 4f20d59 | 2016-05-23 21:39:56 +0300 | [diff] [blame] | 521 | goto error; |
Linus Walleij | 793d6b5 | 2016-03-24 09:39:14 +0100 | [diff] [blame] | 522 | } |
| 523 | } |
| 524 | |
Karol Wrona | b6d5be57 | 2014-11-04 15:29:39 +0100 | [diff] [blame] | 525 | trig_num = find_type_by_name(trigger_name, "trigger"); |
| 526 | if (trig_num < 0) { |
Cristina Opriceana | d9abc61 | 2015-07-17 18:43:42 +0300 | [diff] [blame] | 527 | fprintf(stderr, "Failed to find the trigger %s\n", |
| 528 | trigger_name); |
Hartmut Knaack | e83a47c | 2015-05-31 14:39:57 +0200 | [diff] [blame] | 529 | ret = trig_num; |
Crestez Dan Leonard | 4f20d59 | 2016-05-23 21:39:56 +0300 | [diff] [blame] | 530 | goto error; |
Karol Wrona | b6d5be57 | 2014-11-04 15:29:39 +0100 | [diff] [blame] | 531 | } |
Hartmut Knaack | 7663a4a | 2015-06-10 21:51:20 +0200 | [diff] [blame] | 532 | |
Karol Wrona | b6d5be57 | 2014-11-04 15:29:39 +0100 | [diff] [blame] | 533 | printf("iio trigger number being used is %d\n", trig_num); |
Hartmut Knaack | 7663a4a | 2015-06-10 21:51:20 +0200 | [diff] [blame] | 534 | } |
Jonathan Cameron | e58537c | 2010-10-08 12:14:14 +0100 | [diff] [blame] | 535 | |
| 536 | /* |
| 537 | * Parse the files in scan_elements to identify what channels are |
| 538 | * present |
| 539 | */ |
Alexandru Ardelean | 8827faa | 2021-02-15 12:40:43 +0200 | [diff] [blame] | 540 | ret = build_channel_array(dev_dir_name, buffer_idx, &channels, &num_channels); |
Jonathan Cameron | e58537c | 2010-10-08 12:14:14 +0100 | [diff] [blame] | 541 | if (ret) { |
Cristina Opriceana | d9abc61 | 2015-07-17 18:43:42 +0300 | [diff] [blame] | 542 | fprintf(stderr, "Problem reading scan element information\n" |
| 543 | "diag %s\n", dev_dir_name); |
Crestez Dan Leonard | 4f20d59 | 2016-05-23 21:39:56 +0300 | [diff] [blame] | 544 | goto error; |
Jonathan Cameron | e58537c | 2010-10-08 12:14:14 +0100 | [diff] [blame] | 545 | } |
Eva Rachel Retuya | 7c5fe41 | 2016-10-20 17:19:24 +0800 | [diff] [blame] | 546 | if (num_channels && autochannels == AUTOCHANNELS_ENABLED && |
Eva Rachel Retuya | 71ccbe5 | 2016-10-20 17:19:23 +0800 | [diff] [blame] | 547 | !force_autochannels) { |
Linus Walleij | 5f991a9 | 2016-04-14 10:26:47 +0200 | [diff] [blame] | 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 | |
Eva Rachel Retuya | 4e2cf0e | 2016-10-14 18:18:39 +0800 | [diff] [blame] | 553 | if ((!num_channels && autochannels == AUTOCHANNELS_ENABLED) || |
Eva Rachel Retuya | 7c5fe41 | 2016-10-20 17:19:24 +0800 | [diff] [blame] | 554 | (autochannels == AUTOCHANNELS_ENABLED && force_autochannels)) { |
Eva Rachel Retuya | 4e2cf0e | 2016-10-14 18:18:39 +0800 | [diff] [blame] | 555 | fprintf(stderr, "Enabling all channels\n"); |
Linus Walleij | 5f991a9 | 2016-04-14 10:26:47 +0200 | [diff] [blame] | 556 | |
Alexandru Ardelean | 8827faa | 2021-02-15 12:40:43 +0200 | [diff] [blame] | 557 | ret = enable_disable_all_channels(dev_dir_name, buffer_idx, 1); |
Linus Walleij | 5f991a9 | 2016-04-14 10:26:47 +0200 | [diff] [blame] | 558 | if (ret) { |
| 559 | fprintf(stderr, "Failed to enable all channels\n"); |
Crestez Dan Leonard | 4f20d59 | 2016-05-23 21:39:56 +0300 | [diff] [blame] | 560 | goto error; |
Linus Walleij | 5f991a9 | 2016-04-14 10:26:47 +0200 | [diff] [blame] | 561 | } |
| 562 | |
| 563 | /* This flags that we need to disable the channels again */ |
| 564 | autochannels = AUTOCHANNELS_ACTIVE; |
| 565 | |
Alexandru Ardelean | 8827faa | 2021-02-15 12:40:43 +0200 | [diff] [blame] | 566 | ret = build_channel_array(dev_dir_name, buffer_idx, &channels, |
Linus Walleij | 5f991a9 | 2016-04-14 10:26:47 +0200 | [diff] [blame] | 567 | &num_channels); |
| 568 | if (ret) { |
| 569 | fprintf(stderr, "Problem reading scan element " |
| 570 | "information\n" |
| 571 | "diag %s\n", dev_dir_name); |
Crestez Dan Leonard | 4f20d59 | 2016-05-23 21:39:56 +0300 | [diff] [blame] | 572 | goto error; |
Linus Walleij | 5f991a9 | 2016-04-14 10:26:47 +0200 | [diff] [blame] | 573 | } |
| 574 | if (!num_channels) { |
| 575 | fprintf(stderr, "Still no channels after " |
| 576 | "auto-enabling, giving up\n"); |
Crestez Dan Leonard | 4f20d59 | 2016-05-23 21:39:56 +0300 | [diff] [blame] | 577 | goto error; |
Linus Walleij | 5f991a9 | 2016-04-14 10:26:47 +0200 | [diff] [blame] | 578 | } |
| 579 | } |
| 580 | |
| 581 | if (!num_channels && autochannels == AUTOCHANNELS_DISABLED) { |
Linus Walleij | 53dabaf | 2015-08-10 10:55:08 +0200 | [diff] [blame] | 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 |
Linus Walleij | 5f991a9 | 2016-04-14 10:26:47 +0200 | [diff] [blame] | 586 | "/*_en or pass -a to autoenable channels and " |
Alexandru Ardelean | 8827faa | 2021-02-15 12:40:43 +0200 | [diff] [blame] | 587 | "try again.\n", dev_dir_name, buffer_idx); |
Linus Walleij | 53dabaf | 2015-08-10 10:55:08 +0200 | [diff] [blame] | 588 | ret = -ENOENT; |
Crestez Dan Leonard | 4f20d59 | 2016-05-23 21:39:56 +0300 | [diff] [blame] | 589 | goto error; |
Linus Walleij | 53dabaf | 2015-08-10 10:55:08 +0200 | [diff] [blame] | 590 | } |
Jonathan Cameron | e58537c | 2010-10-08 12:14:14 +0100 | [diff] [blame] | 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 | */ |
Jonathan Cameron | 1aa0427 | 2011-08-30 12:32:47 +0100 | [diff] [blame] | 597 | ret = asprintf(&buf_dir_name, |
Alexandru Ardelean | 8827faa | 2021-02-15 12:40:43 +0200 | [diff] [blame] | 598 | "%siio:device%d/buffer%d", iio_dir, dev_num, buffer_idx); |
Jonathan Cameron | e58537c | 2010-10-08 12:14:14 +0100 | [diff] [blame] | 599 | if (ret < 0) { |
| 600 | ret = -ENOMEM; |
Crestez Dan Leonard | 4f20d59 | 2016-05-23 21:39:56 +0300 | [diff] [blame] | 601 | goto error; |
Jonathan Cameron | e58537c | 2010-10-08 12:14:14 +0100 | [diff] [blame] | 602 | } |
Karol Wrona | b6d5be57 | 2014-11-04 15:29:39 +0100 | [diff] [blame] | 603 | |
Alexandru Ardelean | 8827faa | 2021-02-15 12:40:43 +0200 | [diff] [blame] | 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 | |
Karol Wrona | b6d5be57 | 2014-11-04 15:29:39 +0100 | [diff] [blame] | 617 | if (!notrigger) { |
| 618 | printf("%s %s\n", dev_dir_name, trigger_name); |
Hartmut Knaack | 7663a4a | 2015-06-10 21:51:20 +0200 | [diff] [blame] | 619 | /* |
| 620 | * Set the device trigger to be the data ready trigger found |
| 621 | * above |
| 622 | */ |
Karol Wrona | b6d5be57 | 2014-11-04 15:29:39 +0100 | [diff] [blame] | 623 | ret = write_sysfs_string_and_verify("trigger/current_trigger", |
| 624 | dev_dir_name, |
| 625 | trigger_name); |
| 626 | if (ret < 0) { |
Cristina Opriceana | d9abc61 | 2015-07-17 18:43:42 +0300 | [diff] [blame] | 627 | fprintf(stderr, |
| 628 | "Failed to write current_trigger file\n"); |
Crestez Dan Leonard | 4f20d59 | 2016-05-23 21:39:56 +0300 | [diff] [blame] | 629 | goto error; |
Karol Wrona | b6d5be57 | 2014-11-04 15:29:39 +0100 | [diff] [blame] | 630 | } |
Jonathan Cameron | e58537c | 2010-10-08 12:14:14 +0100 | [diff] [blame] | 631 | } |
| 632 | |
Alexandru Ardelean | 8827faa | 2021-02-15 12:40:43 +0200 | [diff] [blame] | 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 | |
Jonathan Cameron | e58537c | 2010-10-08 12:14:14 +0100 | [diff] [blame] | 662 | /* Setup ring buffer parameters */ |
| 663 | ret = write_sysfs_int("length", buf_dir_name, buf_len); |
| 664 | if (ret < 0) |
Crestez Dan Leonard | 4f20d59 | 2016-05-23 21:39:56 +0300 | [diff] [blame] | 665 | goto error; |
Jonathan Cameron | e58537c | 2010-10-08 12:14:14 +0100 | [diff] [blame] | 666 | |
| 667 | /* Enable the buffer */ |
| 668 | ret = write_sysfs_int("enable", buf_dir_name, 1); |
Irina Tirdea | e723149 | 2015-07-24 16:28:06 +0300 | [diff] [blame] | 669 | if (ret < 0) { |
| 670 | fprintf(stderr, |
Alexandru Ardelean | 8827faa | 2021-02-15 12:40:43 +0200 | [diff] [blame] | 671 | "Failed to enable buffer '%s': %s\n", |
| 672 | buf_dir_name, strerror(-ret)); |
Crestez Dan Leonard | 4f20d59 | 2016-05-23 21:39:56 +0300 | [diff] [blame] | 673 | goto error; |
Irina Tirdea | e723149 | 2015-07-24 16:28:06 +0300 | [diff] [blame] | 674 | } |
Hartmut Knaack | 7663a4a | 2015-06-10 21:51:20 +0200 | [diff] [blame] | 675 | |
Peter Meerwald | d8da0ee | 2012-06-25 23:12:14 +0200 | [diff] [blame] | 676 | scan_size = size_from_channelarray(channels, num_channels); |
Hartmut Knaack | 7663a4a | 2015-06-10 21:51:20 +0200 | [diff] [blame] | 677 | data = malloc(scan_size * buf_len); |
Jonathan Cameron | e58537c | 2010-10-08 12:14:14 +0100 | [diff] [blame] | 678 | if (!data) { |
| 679 | ret = -ENOMEM; |
Crestez Dan Leonard | 4f20d59 | 2016-05-23 21:39:56 +0300 | [diff] [blame] | 680 | goto error; |
Jonathan Cameron | e58537c | 2010-10-08 12:14:14 +0100 | [diff] [blame] | 681 | } |
| 682 | |
Alexandru Ardelean | 8827faa | 2021-02-15 12:40:43 +0200 | [diff] [blame] | 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 | } |
Jonathan Cameron | e58537c | 2010-10-08 12:14:14 +0100 | [diff] [blame] | 696 | } |
| 697 | |
Alexandru Ardelean | 8827faa | 2021-02-15 12:40:43 +0200 | [diff] [blame] | 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; |
Jonathan Cameron | e58537c | 2010-10-08 12:14:14 +0100 | [diff] [blame] | 702 | |
Martin Kelly | 55dda0a | 2018-05-17 17:14:46 -0700 | [diff] [blame] | 703 | for (j = 0; j < num_loops || num_loops < 0; j++) { |
Jonathan Cameron | 30268a3 | 2011-02-11 13:09:12 +0000 | [diff] [blame] | 704 | if (!noevents) { |
Jonathan Cameron | 52615d4 | 2011-05-18 14:41:19 +0100 | [diff] [blame] | 705 | struct pollfd pfd = { |
Alexandru Ardelean | 8827faa | 2021-02-15 12:40:43 +0200 | [diff] [blame] | 706 | .fd = buf_fd, |
Jonathan Cameron | 52615d4 | 2011-05-18 14:41:19 +0100 | [diff] [blame] | 707 | .events = POLLIN, |
| 708 | }; |
| 709 | |
Hartmut Knaack | 6bb7cac | 2015-05-31 14:40:04 +0200 | [diff] [blame] | 710 | ret = poll(&pfd, 1, -1); |
| 711 | if (ret < 0) { |
| 712 | ret = -errno; |
Crestez Dan Leonard | 4f20d59 | 2016-05-23 21:39:56 +0300 | [diff] [blame] | 713 | goto error; |
Hartmut Knaack | 6bb7cac | 2015-05-31 14:40:04 +0200 | [diff] [blame] | 714 | } else if (ret == 0) { |
| 715 | continue; |
| 716 | } |
| 717 | |
Jonathan Cameron | 52615d4 | 2011-05-18 14:41:19 +0100 | [diff] [blame] | 718 | toread = buf_len; |
Jonathan Cameron | 30268a3 | 2011-02-11 13:09:12 +0000 | [diff] [blame] | 719 | } else { |
Jonathan Cameron | 96df979 | 2011-02-11 13:09:13 +0000 | [diff] [blame] | 720 | usleep(timedelay); |
Jonathan Cameron | 30268a3 | 2011-02-11 13:09:12 +0000 | [diff] [blame] | 721 | toread = 64; |
Jonathan Cameron | e58537c | 2010-10-08 12:14:14 +0100 | [diff] [blame] | 722 | } |
Jonathan Cameron | 30268a3 | 2011-02-11 13:09:12 +0000 | [diff] [blame] | 723 | |
Alexandru Ardelean | 8827faa | 2021-02-15 12:40:43 +0200 | [diff] [blame] | 724 | read_size = read(buf_fd, data, toread * scan_size); |
Peter Meerwald | 97b603a | 2014-12-06 06:00:00 +0000 | [diff] [blame] | 725 | if (read_size < 0) { |
Hartmut Knaack | 8749948 | 2015-05-31 14:39:56 +0200 | [diff] [blame] | 726 | if (errno == EAGAIN) { |
Cristina Opriceana | d9abc61 | 2015-07-17 18:43:42 +0300 | [diff] [blame] | 727 | fprintf(stderr, "nothing available\n"); |
Peter Meerwald | 97b603a | 2014-12-06 06:00:00 +0000 | [diff] [blame] | 728 | continue; |
Hartmut Knaack | 7663a4a | 2015-06-10 21:51:20 +0200 | [diff] [blame] | 729 | } else { |
Peter Meerwald | 97b603a | 2014-12-06 06:00:00 +0000 | [diff] [blame] | 730 | break; |
Hartmut Knaack | 7663a4a | 2015-06-10 21:51:20 +0200 | [diff] [blame] | 731 | } |
Jonathan Cameron | e58537c | 2010-10-08 12:14:14 +0100 | [diff] [blame] | 732 | } |
Hartmut Knaack | 7663a4a | 2015-06-10 21:51:20 +0200 | [diff] [blame] | 733 | for (i = 0; i < read_size / scan_size; i++) |
| 734 | process_scan(data + scan_size * i, channels, |
Jonathan Cameron | e58537c | 2010-10-08 12:14:14 +0100 | [diff] [blame] | 735 | num_channels); |
| 736 | } |
| 737 | |
Crestez Dan Leonard | 4f20d59 | 2016-05-23 21:39:56 +0300 | [diff] [blame] | 738 | error: |
| 739 | cleanup(); |
Jonathan Cameron | e58537c | 2010-10-08 12:14:14 +0100 | [diff] [blame] | 740 | |
Alexandru Ardelean | 8827faa | 2021-02-15 12:40:43 +0200 | [diff] [blame] | 741 | if (fd >= 0 && close(fd) == -1) |
| 742 | perror("Failed to close character device"); |
| 743 | if (buf_fd >= 0 && close(buf_fd) == -1) |
Hartmut Knaack | 6bb7cac | 2015-05-31 14:40:04 +0200 | [diff] [blame] | 744 | perror("Failed to close buffer"); |
Jonathan Cameron | e58537c | 2010-10-08 12:14:14 +0100 | [diff] [blame] | 745 | free(buffer_access); |
Hartmut Knaack | a71bfb4 | 2015-05-31 14:39:41 +0200 | [diff] [blame] | 746 | free(data); |
Jonathan Cameron | e58537c | 2010-10-08 12:14:14 +0100 | [diff] [blame] | 747 | free(buf_dir_name); |
Hartmut Knaack | 63f05c8 | 2015-05-31 14:39:44 +0200 | [diff] [blame] | 748 | for (i = num_channels - 1; i >= 0; i--) { |
| 749 | free(channels[i].name); |
| 750 | free(channels[i].generic_name); |
| 751 | } |
| 752 | free(channels); |
Crestez Dan Leonard | 4f20d59 | 2016-05-23 21:39:56 +0300 | [diff] [blame] | 753 | free(trigger_name); |
Crestez Dan Leonard | de397db | 2016-05-23 21:39:57 +0300 | [diff] [blame] | 754 | free(device_name); |
Hartmut Knaack | d3ccfc4 | 2015-05-31 14:39:42 +0200 | [diff] [blame] | 755 | free(dev_dir_name); |
Hartmut Knaack | 0e79987 | 2015-05-31 14:40:17 +0200 | [diff] [blame] | 756 | |
Jonathan Cameron | e58537c | 2010-10-08 12:14:14 +0100 | [diff] [blame] | 757 | return ret; |
| 758 | } |