4 /* IIO - useful set of util functionality
6 * Copyright (c) 2008 Jonathan Cameron
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms of the GNU General Public License version 2 as published by
10 * the Free Software Foundation.
15 /* Made up value to limit allocation sizes */
16 #define IIO_MAX_NAME_LENGTH 64
18 #define FORMAT_SCAN_ELEMENTS_DIR "%s/scan_elements"
19 #define FORMAT_TYPE_FILE "%s_type"
21 #define ARRAY_SIZE(arr) (sizeof(arr) / sizeof(arr[0]))
23 extern const char *iio_dir
;
26 * struct iio_channel_info - information about a given channel
28 * @generic_name: general name for channel type
29 * @scale: scale factor to be applied for conversion to si units
30 * @offset: offset to be applied for conversion to si units
31 * @index: the channel index in the buffer output
32 * @bytes: number of bytes occupied in buffer output
33 * @bits_used: number of valid bits of data
34 * @shift: amount of bits to shift right data before applying bit mask
35 * @mask: a bit mask for the raw output
36 * @be: flag if data is big endian
37 * @is_signed: is the raw value stored signed
38 * @location: data offset for this channel inside the buffer (in bytes)
40 struct iio_channel_info
{
55 static inline int iioutils_check_suffix(const char *str
, const char *suffix
)
57 return strlen(str
) >= strlen(suffix
) &&
58 strncmp(str
+strlen(str
)-strlen(suffix
),
59 suffix
, strlen(suffix
)) == 0;
62 int iioutils_break_up_name(const char *full_name
, char **generic_name
);
63 int iioutils_get_type(unsigned *is_signed
, unsigned *bytes
, unsigned *bits_used
,
64 unsigned *shift
, uint64_t *mask
, unsigned *be
,
65 const char *device_dir
, const char *name
,
66 const char *generic_name
);
67 int iioutils_get_param_float(float *output
, const char *param_name
,
68 const char *device_dir
, const char *name
,
69 const char *generic_name
);
70 void bsort_channel_array_by_index(struct iio_channel_info
*ci_array
, int cnt
);
71 int build_channel_array(const char *device_dir
,
72 struct iio_channel_info
**ci_array
, int *counter
);
73 int find_type_by_name(const char *name
, const char *type
);
74 int write_sysfs_int(const char *filename
, const char *basedir
, int val
);
75 int write_sysfs_int_and_verify(const char *filename
, const char *basedir
,
77 int write_sysfs_string_and_verify(const char *filename
, const char *basedir
,
79 int write_sysfs_string(const char *filename
, const char *basedir
,
81 int read_sysfs_posint(const char *filename
, const char *basedir
);
82 int read_sysfs_float(const char *filename
, const char *basedir
, float *val
);
83 int read_sysfs_string(const char *filename
, const char *basedir
, char *str
);
85 #endif /* _IIO_UTILS_H_ */