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: GPL-2.0-or-later
*
* QemuDmaBuf struct and helpers used for accessing its data
*
* This work is licensed under the terms of the GNU GPL, version 2 or later.
* See the COPYING file in the top-level directory.
*/
#include "qemu/osdep.h"
#include "ui/dmabuf.h"
struct QemuDmaBuf {
int fd[DMABUF_MAX_PLANES];
uint32_t width;
uint32_t height;
uint32_t offset[DMABUF_MAX_PLANES];
uint32_t stride[DMABUF_MAX_PLANES];
uint32_t num_planes;
uint32_t fourcc;
uint64_t modifier;
uint32_t texture;
uint32_t x;
uint32_t y;
uint32_t backing_width;
uint32_t backing_height;
bool y0_top;
void *sync;
int fence_fd;
bool allow_fences;
bool draw_submitted;
};
QemuDmaBuf *qemu_dmabuf_new(uint32_t width, uint32_t height,
const uint32_t *offset, const uint32_t *stride,
uint32_t x, uint32_t y,
uint32_t backing_width, uint32_t backing_height,
uint32_t fourcc, uint64_t modifier,
const int32_t *dmabuf_fd, uint32_t num_planes,
bool allow_fences, bool y0_top) {
QemuDmaBuf *dmabuf;
assert(num_planes > 0 && num_planes <= DMABUF_MAX_PLANES);
dmabuf = g_new0(QemuDmaBuf, 1);
dmabuf->width = width;
dmabuf->height = height;
memcpy(dmabuf->offset, offset, num_planes * sizeof(*offset));
memcpy(dmabuf->stride, stride, num_planes * sizeof(*stride));
dmabuf->x = x;
dmabuf->y = y;
dmabuf->backing_width = backing_width;
dmabuf->backing_height = backing_height;
dmabuf->fourcc = fourcc;
dmabuf->modifier = modifier;
memcpy(dmabuf->fd, dmabuf_fd, num_planes * sizeof(*dmabuf_fd));
dmabuf->allow_fences = allow_fences;
dmabuf->y0_top = y0_top;
dmabuf->fence_fd = -1;
dmabuf->num_planes = num_planes;
return dmabuf;
}
void qemu_dmabuf_free(QemuDmaBuf *dmabuf)
{
if (dmabuf == NULL) {
return;
}
g_free(dmabuf);
}
const int *qemu_dmabuf_get_fds(QemuDmaBuf *dmabuf, int *nfds)
{
assert(dmabuf != NULL);
if (nfds) {
*nfds = ARRAY_SIZE(dmabuf->fd);
}
return dmabuf->fd;
}
void qemu_dmabuf_dup_fds(QemuDmaBuf *dmabuf, int *fds, int nfds)
{
int i;
assert(dmabuf != NULL);
assert(nfds >= dmabuf->num_planes);
for (i = 0; i < dmabuf->num_planes; i++) {
fds[i] = dmabuf->fd[i] >= 0 ? dup(dmabuf->fd[i]) : -1;
}
}
void qemu_dmabuf_close(QemuDmaBuf *dmabuf)
{
int i;
assert(dmabuf != NULL);
for (i = 0; i < dmabuf->num_planes; i++) {
if (dmabuf->fd[i] >= 0) {
close(dmabuf->fd[i]);
dmabuf->fd[i] = -1;
}
}
}
uint32_t qemu_dmabuf_get_width(QemuDmaBuf *dmabuf)
{
assert(dmabuf != NULL);
return dmabuf->width;
}
uint32_t qemu_dmabuf_get_height(QemuDmaBuf *dmabuf)
{
assert(dmabuf != NULL);
return dmabuf->height;
}
const uint32_t *qemu_dmabuf_get_offsets(QemuDmaBuf *dmabuf, int *noffsets)
{
assert(dmabuf != NULL);
if (noffsets) {
*noffsets = ARRAY_SIZE(dmabuf->offset);
}
return dmabuf->offset;
}
const uint32_t *qemu_dmabuf_get_strides(QemuDmaBuf *dmabuf, int *nstrides)
{
assert(dmabuf != NULL);
if (nstrides) {
*nstrides = ARRAY_SIZE(dmabuf->stride);
}
return dmabuf->stride;
}
uint32_t qemu_dmabuf_get_num_planes(QemuDmaBuf *dmabuf)
{
assert(dmabuf != NULL);
return dmabuf->num_planes;
}
uint32_t qemu_dmabuf_get_fourcc(QemuDmaBuf *dmabuf)
{
assert(dmabuf != NULL);
return dmabuf->fourcc;
}
uint64_t qemu_dmabuf_get_modifier(QemuDmaBuf *dmabuf)
{
assert(dmabuf != NULL);
return dmabuf->modifier;
}
uint32_t qemu_dmabuf_get_texture(QemuDmaBuf *dmabuf)
{
assert(dmabuf != NULL);
return dmabuf->texture;
}
uint32_t qemu_dmabuf_get_x(QemuDmaBuf *dmabuf)
{
assert(dmabuf != NULL);
return dmabuf->x;
}
uint32_t qemu_dmabuf_get_y(QemuDmaBuf *dmabuf)
{
assert(dmabuf != NULL);
return dmabuf->y;
}
uint32_t qemu_dmabuf_get_backing_width(QemuDmaBuf *dmabuf)
{
assert(dmabuf != NULL);
return dmabuf->backing_width;
}
uint32_t qemu_dmabuf_get_backing_height(QemuDmaBuf *dmabuf)
{
assert(dmabuf != NULL);
return dmabuf->backing_height;
}
bool qemu_dmabuf_get_y0_top(QemuDmaBuf *dmabuf)
{
assert(dmabuf != NULL);
return dmabuf->y0_top;
}
void *qemu_dmabuf_get_sync(QemuDmaBuf *dmabuf)
{
assert(dmabuf != NULL);
return dmabuf->sync;
}
int32_t qemu_dmabuf_get_fence_fd(QemuDmaBuf *dmabuf)
{
assert(dmabuf != NULL);
return dmabuf->fence_fd;
}
bool qemu_dmabuf_get_allow_fences(QemuDmaBuf *dmabuf)
{
assert(dmabuf != NULL);
return dmabuf->allow_fences;
}
bool qemu_dmabuf_get_draw_submitted(QemuDmaBuf *dmabuf)
{
assert(dmabuf != NULL);
return dmabuf->draw_submitted;
}
void qemu_dmabuf_set_texture(QemuDmaBuf *dmabuf, uint32_t texture)
{
assert(dmabuf != NULL);
dmabuf->texture = texture;
}
void qemu_dmabuf_set_fence_fd(QemuDmaBuf *dmabuf, int32_t fence_fd)
{
assert(dmabuf != NULL);
dmabuf->fence_fd = fence_fd;
}
void qemu_dmabuf_set_sync(QemuDmaBuf *dmabuf, void *sync)
{
assert(dmabuf != NULL);
dmabuf->sync = sync;
}
void qemu_dmabuf_set_draw_submitted(QemuDmaBuf *dmabuf, bool draw_submitted)
{
assert(dmabuf != NULL);
dmabuf->draw_submitted = draw_submitted;
}
|