wlroots/backend/drm/backend.c

213 lines
5.8 KiB
C
Raw Normal View History

2018-02-12 20:29:23 +00:00
#include <assert.h>
#include <errno.h>
2017-05-01 05:49:18 +00:00
#include <stdio.h>
2018-02-12 20:29:23 +00:00
#include <stdlib.h>
2017-05-02 01:00:25 +00:00
#include <string.h>
2018-02-12 20:29:23 +00:00
#include <unistd.h>
2017-05-03 09:28:44 +00:00
#include <wayland-server.h>
2017-06-04 23:30:37 +00:00
#include <wlr/backend/interface.h>
2018-02-12 20:29:23 +00:00
#include <wlr/backend/session.h>
2017-06-21 14:27:45 +00:00
#include <wlr/interfaces/wlr_output.h>
2018-02-12 20:29:23 +00:00
#include <wlr/render/egl.h>
2017-10-22 02:00:04 +00:00
#include <wlr/types/wlr_list.h>
2017-06-21 16:10:07 +00:00
#include <wlr/util/log.h>
2018-02-12 20:29:23 +00:00
#include <xf86drm.h>
#include "backend/drm/drm.h"
2018-02-12 20:29:23 +00:00
#include "util/signal.h"
2017-05-01 05:49:18 +00:00
2018-09-17 20:25:20 +00:00
struct wlr_drm_backend *get_drm_backend_from_backend(
struct wlr_backend *wlr_backend) {
assert(wlr_backend_is_drm(wlr_backend));
return (struct wlr_drm_backend *)wlr_backend;
}
static bool backend_start(struct wlr_backend *backend) {
2018-09-17 20:25:20 +00:00
struct wlr_drm_backend *drm = get_drm_backend_from_backend(backend);
scan_drm_connectors(drm);
2017-05-07 14:00:23 +00:00
return true;
}
2017-05-03 09:28:44 +00:00
static void backend_destroy(struct wlr_backend *backend) {
2017-09-30 09:22:26 +00:00
if (!backend) {
2017-05-07 14:00:23 +00:00
return;
}
2018-09-17 20:25:20 +00:00
struct wlr_drm_backend *drm = get_drm_backend_from_backend(backend);
2017-09-30 09:22:26 +00:00
restore_drm_outputs(drm);
struct wlr_drm_connector *conn, *next;
wl_list_for_each_safe(conn, next, &drm->outputs, link) {
wlr_output_destroy(&conn->output);
2017-05-31 20:17:04 +00:00
}
2017-08-05 06:15:39 +00:00
2018-02-12 08:12:31 +00:00
wlr_signal_emit_safe(&backend->events.destroy, backend);
2017-12-07 22:44:59 +00:00
wl_list_remove(&drm->display_destroy.link);
wl_list_remove(&drm->session_signal.link);
wl_list_remove(&drm->drm_invalidated.link);
finish_drm_resources(drm);
finish_drm_renderer(&drm->renderer);
2017-09-30 09:22:26 +00:00
wlr_session_close_file(drm->session, drm->fd);
wl_event_source_remove(drm->drm_event);
free(drm);
2017-05-07 14:00:23 +00:00
}
static struct wlr_renderer *backend_get_renderer(
struct wlr_backend *backend) {
2018-09-17 20:25:20 +00:00
struct wlr_drm_backend *drm = get_drm_backend_from_backend(backend);
if (drm->parent) {
return drm->parent->renderer.wlr_rend;
} else {
return drm->renderer.wlr_rend;
}
}
static clockid_t backend_get_presentation_clock(struct wlr_backend *backend) {
2018-10-01 20:44:33 +00:00
struct wlr_drm_backend *drm = get_drm_backend_from_backend(backend);
return drm->clock;
}
2017-05-07 14:00:23 +00:00
static struct wlr_backend_impl backend_impl = {
.start = backend_start,
.destroy = backend_destroy,
.get_renderer = backend_get_renderer,
.get_presentation_clock = backend_get_presentation_clock,
2017-05-07 14:00:23 +00:00
};
bool wlr_backend_is_drm(struct wlr_backend *b) {
return b->impl == &backend_impl;
}
static void session_signal(struct wl_listener *listener, void *data) {
2017-12-07 22:44:59 +00:00
struct wlr_drm_backend *drm =
wl_container_of(listener, drm, session_signal);
struct wlr_session *session = data;
if (session->active) {
2018-07-09 21:49:54 +00:00
wlr_log(WLR_INFO, "DRM fd resumed");
scan_drm_connectors(drm);
struct wlr_drm_connector *conn;
wl_list_for_each(conn, &drm->outputs, link){
if (conn->output.enabled) {
drm_connector_set_mode(&conn->output,
conn->output.current_mode);
} else {
enable_drm_connector(&conn->output, false);
2017-10-22 21:44:24 +00:00
}
2017-08-09 08:43:01 +00:00
if (!conn->crtc) {
2017-08-09 13:43:42 +00:00
continue;
}
struct wlr_drm_plane *plane = conn->crtc->cursor;
drm->iface->crtc_set_cursor(drm, conn->crtc,
Allow cursor render surface to be used as fb In order for a surface to be used as a cursor plane framebuffer, it appears that requiring the buffer to be linear is sufficient. GBM_BO_USE_SCANOUT is added in case GBM_BO_USE_LINEAR isn't sufficient on untested hardware. Fixes #1323 Removed wlr_drm_plane.cursor_bo as it does not serve any purpose anymore. Relevant analysis (taken from the PR description): While trying to implement a fix for #1323, I found that when exporting the rendered surface into a DMA-BUF and reimporting it with `GBM_BO_USE_CURSOR`, the resulting object does not appear to be valid. After some digging (turning on drm-kms debugging and switching to legacy mode), I managed to extract the following error: ``` [drm:__setplane_check.isra.1 [drm]] Invalid pixel format AR24 little-endian (0x34325241), modifier 0x100000000000001 ``` The format itself refers to ARGB8888 which is the same format as `renderer->gbm_format` used in master to create the cursor bo. However, using `gbm_bo_create` with `GBM_BO_USE_CURSOR` results in a modifier of 0. A modifier of zero represents a linear buffer while the modifier of the surface that is rendered to is `I915_FORMAT_MOD_X_TILED` (see https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/tree/include/uapi/drm/drm_fourcc.h?h=v4.20.6#n263). In order to fix this mismatch in modifier, I added the `GBM_BO_USE_LINEAR` to the render surface and everything started to work just fine. I wondered however, whether the export and import is really necessary. I then decided to test if the back buffer of the render surface works as well, and at least on my hardware (Intel HD 530 and Intel UHD 620) it does. This is the patch in this PR and this requires no exporting and importing. I have to note that I cheated in order to import DMA_BUFs into a cursor bo when doing the first tests, since on import the Intel drivers check that the cursor is 64x64. This is strange since cursor sizes other than 64x64 have been around for quite some time now (https://lists.freedesktop.org/archives/mesa-commit/2014-June/050268.html). Removing this check made everything work fine. I later (while writing this PR) found out that `__DRI_IMAGE_USE_CURSOR` (to which `GBM_BO_USE_CURSOR` translates) has been deprecated in mesa (https://gitlab.freedesktop.org/mesa/mesa/blob/master/include/GL/internal/dri_interface.h#L1296), which makes me wonder what the usecase of `GBM_BO_USE_CURSOR` is. The reason we never encountered this is that when specifying `GBM_BO_USE_WRITE`, a dumb buffer is created trough DRM and the usage flag never reaches the Intel driver directly. The relevant code is in https://gitlab.freedesktop.org/mesa/mesa/blob/master/src/gbm/backends/dri/gbm_dri.c#L1011-1089 . From this it seems that as long as the size, format and modifiers are right, any surface can be used as a cursor.
2019-02-04 19:47:07 +00:00
(plane && plane->cursor_enabled) ? plane->surf.back : NULL);
drm->iface->crtc_move_cursor(drm, conn->crtc, conn->cursor_x,
conn->cursor_y);
if (conn->crtc->gamma_table != NULL) {
size_t size = conn->crtc->gamma_table_size;
uint16_t *r = conn->crtc->gamma_table;
uint16_t *g = conn->crtc->gamma_table + size;
uint16_t *b = conn->crtc->gamma_table + 2 * size;
drm->iface->crtc_set_gamma(drm, conn->crtc, size, r, g, b);
} else {
set_drm_connector_gamma(&conn->output, 0, NULL, NULL, NULL);
}
}
} else {
2018-07-09 21:49:54 +00:00
wlr_log(WLR_INFO, "DRM fd paused");
2017-05-13 13:12:47 +00:00
}
}
2017-06-03 03:47:33 +00:00
static void drm_invalidated(struct wl_listener *listener, void *data) {
2017-12-07 22:44:59 +00:00
struct wlr_drm_backend *drm =
wl_container_of(listener, drm, drm_invalidated);
2017-06-03 03:47:33 +00:00
2017-09-30 09:22:26 +00:00
char *name = drmGetDeviceNameFromFd2(drm->fd);
2018-07-09 21:49:54 +00:00
wlr_log(WLR_DEBUG, "%s invalidated", name);
2017-06-04 05:43:34 +00:00
free(name);
scan_drm_connectors(drm);
2017-06-02 00:29:10 +00:00
}
2017-12-07 22:44:59 +00:00
static void handle_display_destroy(struct wl_listener *listener, void *data) {
struct wlr_drm_backend *drm =
wl_container_of(listener, drm, display_destroy);
backend_destroy(&drm->backend);
2017-12-07 22:44:59 +00:00
}
2017-05-07 14:00:23 +00:00
struct wlr_backend *wlr_drm_backend_create(struct wl_display *display,
struct wlr_session *session, int gpu_fd, struct wlr_backend *parent,
wlr_renderer_create_func_t create_renderer_func) {
2017-08-05 06:15:39 +00:00
assert(display && session && gpu_fd >= 0);
2017-10-01 06:22:47 +00:00
assert(!parent || wlr_backend_is_drm(parent));
2017-06-03 03:47:33 +00:00
char *name = drmGetDeviceNameFromFd2(gpu_fd);
drmVersion *version = drmGetVersion(gpu_fd);
2018-07-09 21:49:54 +00:00
wlr_log(WLR_INFO, "Initializing DRM backend for %s (%s)", name, version->name);
2017-06-03 03:47:33 +00:00
free(name);
drmFreeVersion(version);
2017-09-30 09:22:26 +00:00
struct wlr_drm_backend *drm = calloc(1, sizeof(struct wlr_drm_backend));
if (!drm) {
2018-07-09 21:49:54 +00:00
wlr_log_errno(WLR_ERROR, "Allocation failed");
2017-05-07 14:00:23 +00:00
return NULL;
}
2017-09-30 09:22:26 +00:00
wlr_backend_init(&drm->backend, &backend_impl);
2017-09-30 09:22:26 +00:00
drm->session = session;
wl_list_init(&drm->outputs);
2017-05-02 02:34:33 +00:00
2017-09-30 09:22:26 +00:00
drm->fd = gpu_fd;
2018-09-17 20:25:20 +00:00
if (parent != NULL) {
drm->parent = get_drm_backend_from_backend(parent);
}
2017-05-01 05:49:18 +00:00
2017-09-30 09:22:26 +00:00
drm->drm_invalidated.notify = drm_invalidated;
wlr_session_signal_add(session, gpu_fd, &drm->drm_invalidated);
2017-06-04 05:43:34 +00:00
2017-09-30 09:22:26 +00:00
drm->display = display;
2017-05-03 09:28:44 +00:00
struct wl_event_loop *event_loop = wl_display_get_event_loop(display);
2017-09-30 09:22:26 +00:00
drm->drm_event = wl_event_loop_add_fd(event_loop, drm->fd,
WL_EVENT_READABLE, handle_drm_event, NULL);
2017-09-30 09:22:26 +00:00
if (!drm->drm_event) {
2018-07-09 21:49:54 +00:00
wlr_log(WLR_ERROR, "Failed to create DRM event source");
2017-05-01 05:49:18 +00:00
goto error_fd;
}
2017-09-30 09:22:26 +00:00
drm->session_signal.notify = session_signal;
wl_signal_add(&session->session_signal, &drm->session_signal);
2017-05-13 13:12:47 +00:00
if (!check_drm_features(drm)) {
2017-08-05 06:15:39 +00:00
goto error_event;
2017-07-20 08:51:59 +00:00
}
if (!init_drm_resources(drm)) {
2017-08-05 06:15:39 +00:00
goto error_event;
}
2017-07-20 08:51:59 +00:00
if (!init_drm_renderer(drm, &drm->renderer, create_renderer_func)) {
2018-07-09 21:49:54 +00:00
wlr_log(WLR_ERROR, "Failed to initialize renderer");
2017-05-03 09:28:44 +00:00
goto error_event;
}
2017-12-07 22:44:59 +00:00
drm->display_destroy.notify = handle_display_destroy;
wl_display_add_destroy_listener(display, &drm->display_destroy);
2017-09-30 09:22:26 +00:00
return &drm->backend;
2017-05-01 05:49:18 +00:00
2017-05-03 09:28:44 +00:00
error_event:
wl_list_remove(&drm->session_signal.link);
2017-09-30 09:22:26 +00:00
wl_event_source_remove(drm->drm_event);
2017-05-01 05:49:18 +00:00
error_fd:
2017-09-30 09:22:26 +00:00
wlr_session_close_file(drm->session, drm->fd);
free(drm);
2017-05-01 05:49:18 +00:00
return NULL;
}