-
Notifications
You must be signed in to change notification settings - Fork 316
/
local.h
66 lines (53 loc) · 1.83 KB
/
local.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
/* SPDX-License-Identifier: LGPL-2.1-or-later */
/*
* libiio - Library for interfacing industrial I/O (IIO) devices
*
* Copyright (C) 2022 Analog Devices, Inc.
* Author: Paul Cercueil <[email protected]>
*/
#ifndef __IIO_LOCAL_H
#define __IIO_LOCAL_H
#include <stdbool.h>
#include <stddef.h>
#include <stdint.h>
struct iio_buffer_impl_pdata;
struct iio_block_impl_pdata;
struct iio_device;
struct timespec;
struct iio_buffer_pdata {
const struct iio_device *dev;
struct iio_buffer_impl_pdata *pdata;
int fd, cancel_fd;
unsigned int idx;
bool dmabuf_supported;
bool mmap_supported;
size_t size;
};
struct iio_block_pdata {
struct iio_buffer_pdata *buf;
struct iio_block_impl_pdata *pdata;
size_t size;
void *data;
bool dequeued;
bool cpu_access_disabled;
};
int ioctl_nointr(int fd, unsigned long request, void *data);
int buffer_check_ready(struct iio_buffer_pdata *pdata, int fd,
short events, struct timespec *start);
struct iio_block_pdata *
local_create_dmabuf(struct iio_buffer_pdata *pdata, size_t size, void **data);
void local_free_dmabuf(struct iio_block_pdata *pdata);
int local_enqueue_dmabuf(struct iio_block_pdata *pdata,
size_t bytes_used, bool cyclic);
int local_dequeue_dmabuf(struct iio_block_pdata *pdata, bool nonblock);
int local_dmabuf_get_fd(struct iio_block_pdata *pdata);
int local_dmabuf_disable_cpu_access(struct iio_block_pdata *pdata, bool disable);
struct iio_block_pdata *
local_create_mmap_block(struct iio_buffer_pdata *pdata,
size_t size, void **data);
void local_free_mmap_block(struct iio_block_pdata *pdata);
int local_enqueue_mmap_block(struct iio_block_pdata *pdata,
size_t bytes_used, bool cyclic);
int local_dequeue_mmap_block(struct iio_block_pdata *pdata, bool nonblock);
struct iio_buffer_impl_pdata * local_alloc_mmap_buffer_impl(void);
#endif /* __IIO_LOCAL_H */