2021-01-28 04:10:59 +01:00
|
|
|
|
|
|
|
#include <assert.h>
|
|
|
|
#include <drm_fourcc.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <sys/mman.h>
|
|
|
|
#include <unistd.h>
|
2021-11-09 15:42:22 +01:00
|
|
|
#include <wlr/backend.h>
|
|
|
|
#include <wlr/backend/session.h>
|
2022-03-03 15:38:26 +01:00
|
|
|
#include <wlr/interfaces/wlr_buffer.h>
|
2021-11-09 15:42:22 +01:00
|
|
|
#include <wlr/render/allocator.h>
|
|
|
|
#include <wlr/render/drm_format_set.h>
|
2021-01-28 04:10:59 +01:00
|
|
|
#include <wlr/util/log.h>
|
|
|
|
#include <xf86drm.h>
|
|
|
|
#include <xf86drmMode.h>
|
|
|
|
|
2021-08-25 09:33:19 +02:00
|
|
|
#include "render/allocator/drm_dumb.h"
|
2022-10-01 17:47:56 +02:00
|
|
|
#include "render/drm_format_set.h"
|
2021-01-28 04:10:59 +01:00
|
|
|
#include "render/pixel_format.h"
|
|
|
|
|
|
|
|
static const struct wlr_buffer_impl buffer_impl;
|
|
|
|
|
|
|
|
static struct wlr_drm_dumb_buffer *drm_dumb_buffer_from_buffer(
|
|
|
|
struct wlr_buffer *wlr_buf) {
|
|
|
|
assert(wlr_buf->impl == &buffer_impl);
|
2023-07-11 17:54:08 +02:00
|
|
|
struct wlr_drm_dumb_buffer *buf = wl_container_of(wlr_buf, buf, base);
|
|
|
|
return buf;
|
2021-01-28 04:10:59 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static struct wlr_drm_dumb_buffer *create_buffer(
|
|
|
|
struct wlr_drm_dumb_allocator *alloc, int width, int height,
|
|
|
|
const struct wlr_drm_format *format) {
|
2022-10-01 17:47:56 +02:00
|
|
|
if (!wlr_drm_format_has(format, DRM_FORMAT_MOD_INVALID) &&
|
|
|
|
!wlr_drm_format_has(format, DRM_FORMAT_MOD_LINEAR)) {
|
|
|
|
wlr_log(WLR_ERROR, "DRM dumb allocator only supports INVALID and "
|
|
|
|
"LINEAR modifiers");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2021-01-28 04:10:59 +01:00
|
|
|
const struct wlr_pixel_format_info *info =
|
|
|
|
drm_get_pixel_format_info(format->format);
|
|
|
|
if (info == NULL) {
|
|
|
|
wlr_log(WLR_ERROR, "DRM format 0x%"PRIX32" not supported",
|
|
|
|
format->format);
|
2022-10-01 17:49:27 +02:00
|
|
|
return NULL;
|
2023-05-08 22:17:26 +02:00
|
|
|
} else if (pixel_format_info_pixels_per_block(info) != 1) {
|
|
|
|
wlr_log(WLR_ERROR, "Block formats are not supported");
|
|
|
|
return NULL;
|
2022-10-01 17:49:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
struct wlr_drm_dumb_buffer *buffer = calloc(1, sizeof(*buffer));
|
|
|
|
if (buffer == NULL) {
|
|
|
|
return NULL;
|
2021-01-28 04:10:59 +01:00
|
|
|
}
|
2022-10-01 17:49:27 +02:00
|
|
|
wlr_buffer_init(&buffer->base, &buffer_impl, width, height);
|
|
|
|
wl_list_insert(&alloc->buffers, &buffer->link);
|
2021-01-28 04:10:59 +01:00
|
|
|
|
2022-10-01 17:52:34 +02:00
|
|
|
buffer->drm_fd = alloc->drm_fd;
|
|
|
|
|
2023-05-08 22:17:26 +02:00
|
|
|
uint32_t bpp = 8 * info->bytes_per_block;
|
|
|
|
if (drmModeCreateDumbBuffer(alloc->drm_fd, width, height, bpp, 0,
|
2022-11-03 09:46:58 +01:00
|
|
|
&buffer->handle, &buffer->stride, &buffer->size) != 0) {
|
2021-01-28 04:10:59 +01:00
|
|
|
wlr_log_errno(WLR_ERROR, "Failed to create DRM dumb buffer");
|
2022-10-01 17:52:34 +02:00
|
|
|
goto create_destroy;
|
2021-01-28 04:10:59 +01:00
|
|
|
}
|
|
|
|
|
2022-11-03 09:46:58 +01:00
|
|
|
buffer->width = width;
|
|
|
|
buffer->height = height;
|
2021-01-28 04:10:59 +01:00
|
|
|
buffer->format = format->format;
|
|
|
|
|
2022-11-03 09:46:58 +01:00
|
|
|
uint64_t offset;
|
|
|
|
if (drmModeMapDumbBuffer(alloc->drm_fd, buffer->handle, &offset) != 0) {
|
2021-01-28 04:10:59 +01:00
|
|
|
wlr_log_errno(WLR_ERROR, "Failed to map DRM dumb buffer");
|
|
|
|
goto create_destroy;
|
|
|
|
}
|
|
|
|
|
2022-11-03 09:46:58 +01:00
|
|
|
buffer->data = mmap(NULL, buffer->size, PROT_READ | PROT_WRITE, MAP_SHARED,
|
|
|
|
alloc->drm_fd, offset);
|
2021-01-28 04:10:59 +01:00
|
|
|
if (buffer->data == MAP_FAILED) {
|
|
|
|
wlr_log_errno(WLR_ERROR, "Failed to mmap DRM dumb buffer");
|
|
|
|
goto create_destroy;
|
|
|
|
}
|
|
|
|
|
2022-11-03 09:46:58 +01:00
|
|
|
memset(buffer->data, 0, buffer->size);
|
2021-01-28 04:10:59 +01:00
|
|
|
|
|
|
|
int prime_fd;
|
|
|
|
if (drmPrimeHandleToFD(alloc->drm_fd, buffer->handle, DRM_CLOEXEC,
|
|
|
|
&prime_fd) != 0) {
|
|
|
|
wlr_log_errno(WLR_ERROR, "Failed to get PRIME handle from GEM handle");
|
|
|
|
goto create_destroy;
|
|
|
|
}
|
|
|
|
|
|
|
|
buffer->dmabuf = (struct wlr_dmabuf_attributes){
|
|
|
|
.width = buffer->width,
|
|
|
|
.height = buffer->height,
|
|
|
|
.format = format->format,
|
2022-10-01 17:42:57 +02:00
|
|
|
.modifier = DRM_FORMAT_MOD_LINEAR,
|
2021-01-28 04:10:59 +01:00
|
|
|
.n_planes = 1,
|
|
|
|
.offset[0] = 0,
|
|
|
|
.stride[0] = buffer->stride,
|
|
|
|
.fd[0] = prime_fd,
|
|
|
|
};
|
|
|
|
|
|
|
|
wlr_log(WLR_DEBUG, "Allocated %"PRIu32"x%"PRIu32" DRM dumb buffer",
|
|
|
|
buffer->width, buffer->height);
|
|
|
|
|
|
|
|
return buffer;
|
|
|
|
|
|
|
|
create_destroy:
|
2022-10-01 17:55:49 +02:00
|
|
|
wlr_buffer_drop(&buffer->base);
|
2021-01-28 04:10:59 +01:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2021-06-02 17:02:28 +02:00
|
|
|
static bool drm_dumb_buffer_begin_data_ptr_access(struct wlr_buffer *wlr_buffer,
|
2021-06-29 17:08:32 +02:00
|
|
|
uint32_t flags, void **data, uint32_t *format, size_t *stride) {
|
2021-01-28 04:10:59 +01:00
|
|
|
struct wlr_drm_dumb_buffer *buf = drm_dumb_buffer_from_buffer(wlr_buffer);
|
|
|
|
*data = buf->data;
|
|
|
|
*stride = buf->stride;
|
|
|
|
*format = buf->format;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2021-06-02 17:02:28 +02:00
|
|
|
static void drm_dumb_buffer_end_data_ptr_access(struct wlr_buffer *wlr_buffer) {
|
|
|
|
// This space is intentionally left blank
|
|
|
|
}
|
|
|
|
|
2021-01-28 04:10:59 +01:00
|
|
|
static bool buffer_get_dmabuf(struct wlr_buffer *wlr_buffer,
|
|
|
|
struct wlr_dmabuf_attributes *attribs) {
|
|
|
|
struct wlr_drm_dumb_buffer *buf = drm_dumb_buffer_from_buffer(wlr_buffer);
|
2023-08-03 12:07:27 +02:00
|
|
|
*attribs = buf->dmabuf;
|
2021-01-28 04:10:59 +01:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void buffer_destroy(struct wlr_buffer *wlr_buffer) {
|
|
|
|
struct wlr_drm_dumb_buffer *buf = drm_dumb_buffer_from_buffer(wlr_buffer);
|
2022-10-01 17:55:49 +02:00
|
|
|
|
|
|
|
if (buf->data) {
|
|
|
|
munmap(buf->data, buf->size);
|
|
|
|
}
|
|
|
|
|
|
|
|
wlr_dmabuf_attributes_finish(&buf->dmabuf);
|
|
|
|
|
|
|
|
if (buf->drm_fd >= 0) {
|
2022-11-03 09:46:58 +01:00
|
|
|
if (drmModeDestroyDumbBuffer(buf->drm_fd, buf->handle) != 0) {
|
2022-10-01 17:55:49 +02:00
|
|
|
wlr_log_errno(WLR_ERROR, "Failed to destroy DRM dumb buffer");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
wl_list_remove(&buf->link);
|
2021-01-28 04:10:59 +01:00
|
|
|
free(buf);
|
|
|
|
}
|
|
|
|
|
|
|
|
static const struct wlr_buffer_impl buffer_impl = {
|
|
|
|
.destroy = buffer_destroy,
|
|
|
|
.get_dmabuf = buffer_get_dmabuf,
|
2021-06-02 17:02:28 +02:00
|
|
|
.begin_data_ptr_access = drm_dumb_buffer_begin_data_ptr_access,
|
|
|
|
.end_data_ptr_access = drm_dumb_buffer_end_data_ptr_access,
|
2021-01-28 04:10:59 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
static const struct wlr_allocator_interface allocator_impl;
|
|
|
|
|
|
|
|
static struct wlr_drm_dumb_allocator *drm_dumb_alloc_from_alloc(
|
|
|
|
struct wlr_allocator *wlr_alloc) {
|
|
|
|
assert(wlr_alloc->impl == &allocator_impl);
|
2023-07-11 17:54:08 +02:00
|
|
|
struct wlr_drm_dumb_allocator *alloc = wl_container_of(wlr_alloc, alloc, base);
|
|
|
|
return alloc;
|
2021-01-28 04:10:59 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static struct wlr_buffer *allocator_create_buffer(
|
|
|
|
struct wlr_allocator *wlr_alloc, int width, int height,
|
|
|
|
const struct wlr_drm_format *drm_format) {
|
|
|
|
struct wlr_drm_dumb_allocator *alloc = drm_dumb_alloc_from_alloc(wlr_alloc);
|
|
|
|
struct wlr_drm_dumb_buffer *buffer = create_buffer(alloc, width, height,
|
|
|
|
drm_format);
|
|
|
|
if (buffer == NULL) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
return &buffer->base;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void allocator_destroy(struct wlr_allocator *wlr_alloc) {
|
|
|
|
struct wlr_drm_dumb_allocator *alloc = drm_dumb_alloc_from_alloc(wlr_alloc);
|
|
|
|
|
|
|
|
struct wlr_drm_dumb_buffer *buf, *buf_tmp;
|
|
|
|
wl_list_for_each_safe(buf, buf_tmp, &alloc->buffers, link) {
|
|
|
|
buf->drm_fd = -1;
|
|
|
|
wl_list_remove(&buf->link);
|
|
|
|
wl_list_init(&buf->link);
|
|
|
|
}
|
|
|
|
|
|
|
|
close(alloc->drm_fd);
|
|
|
|
free(alloc);
|
|
|
|
}
|
|
|
|
|
|
|
|
static const struct wlr_allocator_interface allocator_impl = {
|
|
|
|
.create_buffer = allocator_create_buffer,
|
|
|
|
.destroy = allocator_destroy,
|
|
|
|
};
|
|
|
|
|
2021-09-01 19:05:18 +02:00
|
|
|
struct wlr_allocator *wlr_drm_dumb_allocator_create(int drm_fd) {
|
|
|
|
if (drmGetNodeTypeFromFd(drm_fd) != DRM_NODE_PRIMARY) {
|
|
|
|
wlr_log(WLR_ERROR, "Cannot use DRM dumb buffers with non-primary DRM FD");
|
2021-01-28 04:10:59 +01:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint64_t has_dumb = 0;
|
|
|
|
if (drmGetCap(drm_fd, DRM_CAP_DUMB_BUFFER, &has_dumb) < 0) {
|
|
|
|
wlr_log(WLR_ERROR, "Failed to get DRM capabilities");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (has_dumb == 0) {
|
|
|
|
wlr_log(WLR_ERROR, "DRM dumb buffers not supported");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct wlr_drm_dumb_allocator *alloc = calloc(1, sizeof(*alloc));
|
|
|
|
if (alloc == NULL) {
|
|
|
|
return NULL;
|
|
|
|
}
|
2021-05-31 20:16:32 +02:00
|
|
|
wlr_allocator_init(&alloc->base, &allocator_impl,
|
|
|
|
WLR_BUFFER_CAP_DATA_PTR | WLR_BUFFER_CAP_DMABUF);
|
2021-01-28 04:10:59 +01:00
|
|
|
|
|
|
|
alloc->drm_fd = drm_fd;
|
|
|
|
wl_list_init(&alloc->buffers);
|
|
|
|
|
2021-09-01 19:05:18 +02:00
|
|
|
wlr_log(WLR_DEBUG, "Created DRM dumb allocator");
|
2021-01-28 04:10:59 +01:00
|
|
|
return &alloc->base;
|
|
|
|
}
|