-
Notifications
You must be signed in to change notification settings - Fork 316
/
local-dmabuf.c
253 lines (199 loc) · 5.27 KB
/
local-dmabuf.c
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
// 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 <paul.cercueil@analog.com>
*/
#define _GNU_SOURCE
#include "local.h"
#include <errno.h>
#include <fcntl.h>
#include <iio/iio.h>
#include <iio/iio-backend.h>
#include <iio/iio-debug.h>
#include <poll.h>
#include <stdlib.h>
#include <string.h>
#include <sys/ioctl.h>
#include <sys/mman.h>
#include <sys/syscall.h>
#include <time.h>
#include <unistd.h>
struct iio_dmabuf_heap_data {
uint64_t len;
uint32_t fd;
uint32_t fd_flags;
uint64_t heap_flags;
};
#define IIO_DMA_HEAP_ALLOC _IOWR('H', 0x0, struct iio_dmabuf_heap_data)
#define IIO_DMABUF_ATTACH_IOCTL _IOW('i', 0x92, int)
#define IIO_DMABUF_DETACH_IOCTL _IOW('i', 0x93, int)
#define IIO_DMABUF_ENQUEUE_IOCTL _IOW('i', 0x94, struct iio_dmabuf)
#define IIO_DMABUF_SYNC_IOCTL _IOW('b', 0, struct dma_buf_sync)
#define IIO_DMABUF_FLAG_CYCLIC (1 << 0)
#define DMA_BUF_SYNC_READ (1 << 0)
#define DMA_BUF_SYNC_WRITE (2 << 0)
#define DMA_BUF_SYNC_RW (DMA_BUF_SYNC_READ | DMA_BUF_SYNC_WRITE)
#define DMA_BUF_SYNC_START (0 << 2)
#define DMA_BUF_SYNC_END (1 << 2)
struct iio_dmabuf {
int32_t fd;
uint32_t flags;
uint64_t bytes_used;
};
struct dma_buf_sync {
uint64_t flags;
};
static int enable_cpu_access(struct iio_block_pdata *pdata, bool enable)
{
struct dma_buf_sync dbuf_sync = { 0 };
int fd = (int)(intptr_t) pdata->pdata;
dbuf_sync.flags = DMA_BUF_SYNC_RW;
if (enable)
dbuf_sync.flags |= DMA_BUF_SYNC_START;
else
dbuf_sync.flags |= DMA_BUF_SYNC_END;
return ioctl_nointr(fd, IIO_DMABUF_SYNC_IOCTL, &dbuf_sync);
}
struct iio_block_pdata *
local_create_dmabuf(struct iio_buffer_pdata *pdata, size_t size, void **data)
{
struct iio_dmabuf_heap_data req = {
.len = size,
.fd_flags = O_CLOEXEC | O_RDWR,
};
struct iio_block_pdata *priv;
int ret, fd, devfd;
priv = zalloc(sizeof(*priv));
if (!priv)
return iio_ptr(-ENOMEM);
devfd = open("/dev/dma_heap/system", O_RDONLY | O_CLOEXEC | O_NOFOLLOW); /* Flawfinder: ignore */
if (devfd < 0) {
ret = -errno;
/* If we're running on an old kernel, return -ENOSYS to mark
* the DMABUF interface as unavailable */
if (ret == -ENOENT)
ret = -ENOSYS;
goto err_free_priv;
}
ret = ioctl(devfd, IIO_DMA_HEAP_ALLOC, &req);
if (ret < 0) {
ret = -errno;
goto err_close_devfd;
}
fd = req.fd;
*data = mmap(NULL, size, PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0);
if (*data == MAP_FAILED) {
ret = -errno;
goto err_close_fd;
}
priv->pdata = (void *)(intptr_t) fd;
priv->data = *data;
priv->size = size;
priv->buf = pdata;
priv->dequeued = true;
/* The new block is dequeued by default, so enable CPU access */
ret = enable_cpu_access(priv, true);
if (ret)
goto err_data_unmap;
/* Attach DMABUF to the buffer */
ret = ioctl(pdata->fd, IIO_DMABUF_ATTACH_IOCTL, &fd);
if (ret) {
ret = -errno;
if (ret == -ENODEV) {
/* If the ioctl is not available, return -ENOSYS to mark
* the DMABUF interface as unavailable */
ret = -ENOSYS;
}
goto err_data_unmap;
}
pdata->dmabuf_supported = true;
close(devfd);
return priv;
err_data_unmap:
munmap(priv->data, priv->size);
err_close_fd:
close(fd);
err_close_devfd:
close(devfd);
err_free_priv:
free(priv);
return iio_ptr(ret);
}
void local_free_dmabuf(struct iio_block_pdata *pdata)
{
int ret, fd = (int)(intptr_t) pdata->pdata;
ret = ioctl(pdata->buf->fd, IIO_DMABUF_DETACH_IOCTL, &fd);
if (ret)
dev_perror(pdata->buf->dev, ret, "Unable to detach DMABUF");
munmap(pdata->data, pdata->size);
close(fd);
free(pdata);
}
int local_dmabuf_get_fd(struct iio_block_pdata *pdata)
{
return (int)(intptr_t) pdata->pdata;
}
int local_enqueue_dmabuf(struct iio_block_pdata *pdata,
size_t bytes_used, bool cyclic)
{
struct iio_dmabuf dmabuf;
int ret, fd = (int)(intptr_t) pdata->pdata;
if (!pdata->dequeued)
return -EPERM;
if (bytes_used > pdata->size || bytes_used == 0)
return -EINVAL;
dmabuf.fd = fd;
dmabuf.flags = 0;
dmabuf.bytes_used = bytes_used;
if (cyclic)
dmabuf.flags |= IIO_DMABUF_FLAG_CYCLIC;
if (!pdata->cpu_access_disabled) {
/* Disable CPU access to last block */
ret = enable_cpu_access(pdata, false);
if (ret)
return ret;
}
ret = ioctl_nointr(pdata->buf->fd, IIO_DMABUF_ENQUEUE_IOCTL, &dmabuf);
if (ret) {
dev_perror(pdata->buf->dev, ret, "Unable to enqueue DMABUF");
return ret;
}
pdata->dequeued = false;
return 0;
}
int local_dequeue_dmabuf(struct iio_block_pdata *pdata, bool nonblock)
{
struct iio_buffer_pdata *buf_pdata = pdata->buf;
struct timespec start, *time_ptr = NULL;
int ret, fd = (int)(intptr_t) pdata->pdata;
if (pdata->dequeued)
return -EPERM;
if (!nonblock) {
clock_gettime(CLOCK_MONOTONIC, &start);
time_ptr = &start;
}
ret = buffer_check_ready(buf_pdata, fd, POLLOUT, time_ptr);
if (ret < 0)
return ret;
if (!pdata->cpu_access_disabled) {
/* Enable CPU access to new block */
ret = enable_cpu_access(pdata, true);
if (ret < 0)
return ret;
}
pdata->dequeued = true;
return 0;
}
int local_dmabuf_disable_cpu_access(struct iio_block_pdata *pdata, bool disable)
{
int ret;
if (pdata->dequeued) {
ret = enable_cpu_access(pdata, !disable);
if (ret)
return ret;
}
pdata->cpu_access_disabled = disable;
return 0;
}