-
Notifications
You must be signed in to change notification settings - Fork 316
/
iio-private.h
261 lines (201 loc) · 6.44 KB
/
iio-private.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
/* SPDX-License-Identifier: LGPL-2.1-or-later */
/*
* libiio - Library for interfacing industrial I/O (IIO) devices
*
* Copyright (C) 2014 Analog Devices, Inc.
* Author: Paul Cercueil <paul.cercueil@analog.com>
*/
#ifndef __IIO_PRIVATE_H__
#define __IIO_PRIVATE_H__
#include "iio-config.h"
/* Include public interface */
#include <iio/iio.h>
#include <iio/iio-backend.h>
#include <iio/iio-debug.h>
#include <stdbool.h>
#define MAX_CHN_ID NAME_MAX /* encoded in the sysfs filename */
#define MAX_CHN_NAME NAME_MAX /* encoded in the sysfs filename */
#define MAX_DEV_ID NAME_MAX /* encoded in the sysfs filename */
#define MAX_DEV_NAME NAME_MAX /* encoded in the sysfs filename */
#define MAX_CTX_NAME NAME_MAX /* nominally "xml" */
#define MAX_CTX_DESC NAME_MAX /* nominally "linux ..." */
#define MAX_ATTR_NAME NAME_MAX /* encoded in the sysfs filename */
#define MAX_ATTR_VALUE (8 * PAGESIZE) /* 8x Linux page size, could be anything */
#ifdef _MSC_BUILD
/* Windows only runs on little-endian systems */
#define is_little_endian() true
#else
#define is_little_endian() (__BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__)
#endif
#define BIT(x) (1ull << (x))
#define BIT_MASK(bit) BIT((bit) % 32)
#define BIT_WORD(bit) ((bit) / 32)
/* ntohl/htonl are a nightmare to use in cross-platform applications,
* since they are defined in different headers on different platforms.
* iio_be32toh/iio_htobe32 are just clones of ntohl/htonl. */
static inline uint32_t iio_be32toh(uint32_t word)
{
if (!is_little_endian())
return word;
#ifdef __GNUC__
return __builtin_bswap32(word);
#else
return ((word & 0xff) << 24) | ((word & 0xff00) << 8) |
((word >> 8) & 0xff00) | ((word >> 24) & 0xff);
#endif
}
static inline uint32_t iio_htobe32(uint32_t word)
{
return iio_be32toh(word);
}
/*
* If these structures are updated, the qsort functions defined in sort.c
* may need to be updated.
*/
struct iio_buffer_pdata;
struct iio_context_pdata;
struct iio_device_pdata;
struct iio_channel_pdata;
struct iio_directory;
struct iio_module;
struct iio_mutex;
struct iio_task;
struct iio_attr_list {
struct iio_attr *attrs;
unsigned int num;
};
struct iio_context {
struct iio_context_pdata *pdata;
const struct iio_backend_ops *ops;
const char *name;
char *description;
void *userdata;
unsigned int major;
unsigned int minor;
char *git_tag;
struct iio_device **devices;
unsigned int nb_devices;
char **values;
struct iio_attr_list attrlist;
struct iio_context_params params;
struct iio_module *lib;
};
struct iio_channel {
struct iio_device *dev;
struct iio_channel_pdata *pdata;
void *userdata;
bool is_output;
bool is_scan_element;
struct iio_data_format format;
char __format_padding[128 - sizeof(struct iio_data_format)];
char *name, *id;
long index;
enum iio_modifier modifier;
enum iio_chan_type type;
struct iio_attr_list attrlist;
unsigned int number;
};
struct iio_device {
const struct iio_context *ctx;
struct iio_device_pdata *pdata;
void *userdata;
char *name, *id, *label;
struct iio_attr_list attrlist[3];
struct iio_channel **channels;
unsigned int nb_channels;
};
struct iio_buffer {
const struct iio_device *dev;
struct iio_buffer_pdata *pdata;
void *userdata;
size_t length;
struct iio_channels_mask *mask;
unsigned int idx;
struct iio_task *worker;
/* These two fields are set by the last block created. They are only
* used when communicating with v0.x IIOD. */
size_t block_size;
bool cyclic;
struct iio_attr_list attrlist;
/* Mutex to protect nb_blocks. Should really be an atomic... */
struct iio_mutex *lock;
unsigned int nb_blocks;
};
struct iio_context_info {
char *description;
char *uri;
};
struct iio_channels_mask {
size_t words;
uint32_t mask[];
};
int iio_channels_mask_copy(struct iio_channels_mask *dst,
const struct iio_channels_mask *src);
static inline bool
iio_channels_mask_test_bit(const struct iio_channels_mask *mask,
unsigned int bit)
{
return mask->mask[BIT_WORD(bit)] & BIT_MASK(bit);
}
static inline void
iio_channels_mask_set_bit(struct iio_channels_mask *mask, unsigned int bit)
{
mask->mask[BIT_WORD(bit)] |= BIT_MASK(bit);
}
static inline void
iio_channels_mask_clear_bit(struct iio_channels_mask *mask, unsigned int bit)
{
mask->mask[BIT_WORD(bit)] &= ~BIT_MASK(bit);
}
struct iio_module * iio_open_module(const struct iio_context_params *params,
const char *name);
void iio_release_module(struct iio_module *module);
const struct iio_backend * iio_module_get_backend(struct iio_module *module);
void free_channel(struct iio_channel *chn);
void free_device(struct iio_device *dev);
ssize_t iio_snprintf_channel_xml(char *str, ssize_t slen,
const struct iio_channel *chn);
ssize_t iio_snprintf_device_xml(char *str, ssize_t slen,
const struct iio_device *dev);
int iio_context_init(struct iio_context *ctx);
bool iio_device_is_tx(const struct iio_device *dev);
int read_double(const char *str, double *val);
int write_double(char *buf, size_t len, double val);
bool iio_list_has_elem(const char *list, const char *elem);
struct iio_context *
iio_create_dynamic_context(const struct iio_context_params *params,
const char *uri);
int iio_dynamic_scan(const struct iio_context_params *params,
struct iio_scan *ctx, const char *backends);
void iio_channel_init_finalize(struct iio_channel *chn);
unsigned int find_channel_modifier(const char *s, size_t *len_p);
char *iio_strndup(const char *str, size_t n);
char *iio_strtok_r(char *str, const char *delim, char **saveptr);
char * iio_getenv (char * envvar);
uint64_t iio_read_counter_us(void);
__cnst const struct iio_context_params *get_default_params(void);
extern const struct iio_backend iio_ip_backend;
extern const struct iio_backend iio_local_backend;
extern const struct iio_backend iio_serial_backend;
extern const struct iio_backend iio_usb_backend;
extern const struct iio_backend iio_xml_backend;
extern const struct iio_backend * const iio_backends[];
extern const unsigned int iio_backends_size;
extern uint64_t library_startup_time_us;
ssize_t iio_xml_print_and_sanitized_param(char *ptr, ssize_t len,
const char *before,
const char *param,
const char *after);
static inline void iio_update_xml_indexes(ssize_t ret, char **ptr, ssize_t *len,
ssize_t *alen)
{
if (*ptr) {
*ptr += ret;
*len -= ret;
}
*alen += ret;
}
bool iio_channel_is_hwmon(const char *id);
int iio_block_io(struct iio_block *block);
void libiio_cleanup_xml_backend(void);
#endif /* __IIO_PRIVATE_H__ */