2018-02-12 21:29:23 +01:00
|
|
|
#include <assert.h>
|
|
|
|
#include <errno.h>
|
2020-12-02 10:37:07 +01:00
|
|
|
#include <drm_fourcc.h>
|
2017-05-01 07:49:18 +02:00
|
|
|
#include <stdio.h>
|
2018-02-12 21:29:23 +01:00
|
|
|
#include <stdlib.h>
|
2017-05-02 03:00:25 +02:00
|
|
|
#include <string.h>
|
2018-02-12 21:29:23 +01:00
|
|
|
#include <unistd.h>
|
2019-07-27 10:53:54 +02:00
|
|
|
#include <wayland-server-core.h>
|
2017-06-05 01:30:37 +02:00
|
|
|
#include <wlr/backend/interface.h>
|
2018-02-12 21:29:23 +01:00
|
|
|
#include <wlr/backend/session.h>
|
2017-06-21 16:27:45 +02:00
|
|
|
#include <wlr/interfaces/wlr_output.h>
|
2017-06-21 18:10:07 +02:00
|
|
|
#include <wlr/util/log.h>
|
2018-02-12 21:29:23 +01:00
|
|
|
#include <xf86drm.h>
|
2017-09-30 08:03:34 +02:00
|
|
|
#include "backend/drm/drm.h"
|
2018-02-12 21:29:23 +01:00
|
|
|
#include "util/signal.h"
|
2017-05-01 07:49:18 +02:00
|
|
|
|
2018-09-17 22:25:20 +02: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;
|
|
|
|
}
|
|
|
|
|
2018-04-26 00:51:00 +02:00
|
|
|
static bool backend_start(struct wlr_backend *backend) {
|
2018-09-17 22:25:20 +02:00
|
|
|
struct wlr_drm_backend *drm = get_drm_backend_from_backend(backend);
|
2021-06-09 12:03:20 +02:00
|
|
|
scan_drm_connectors(drm, NULL);
|
2017-05-07 16:00:23 +02:00
|
|
|
return true;
|
|
|
|
}
|
2017-05-03 11:28:44 +02:00
|
|
|
|
2018-04-26 00:51:00 +02:00
|
|
|
static void backend_destroy(struct wlr_backend *backend) {
|
2017-09-30 11:22:26 +02:00
|
|
|
if (!backend) {
|
2017-05-07 16:00:23 +02:00
|
|
|
return;
|
|
|
|
}
|
2017-09-23 06:32:25 +02:00
|
|
|
|
2018-09-17 22:25:20 +02:00
|
|
|
struct wlr_drm_backend *drm = get_drm_backend_from_backend(backend);
|
2017-09-30 11:22:26 +02:00
|
|
|
|
2017-11-01 19:34:17 +01:00
|
|
|
struct wlr_drm_connector *conn, *next;
|
|
|
|
wl_list_for_each_safe(conn, next, &drm->outputs, link) {
|
2020-12-09 15:15:17 +01:00
|
|
|
destroy_drm_connector(conn);
|
2017-05-31 22:17:04 +02:00
|
|
|
}
|
2017-08-05 08:15:39 +02:00
|
|
|
|
2021-04-29 00:07:31 +02:00
|
|
|
wlr_backend_finish(backend);
|
2018-01-30 19:45:57 +01:00
|
|
|
|
2020-12-22 18:42:59 +01:00
|
|
|
struct wlr_drm_fb *fb, *fb_tmp;
|
|
|
|
wl_list_for_each_safe(fb, fb_tmp, &drm->fbs, link) {
|
|
|
|
drm_fb_destroy(fb);
|
|
|
|
}
|
|
|
|
|
2017-12-07 23:44:59 +01:00
|
|
|
wl_list_remove(&drm->display_destroy.link);
|
2019-11-30 11:57:37 +01:00
|
|
|
wl_list_remove(&drm->session_destroy.link);
|
2020-12-25 14:45:00 +01:00
|
|
|
wl_list_remove(&drm->session_active.link);
|
2020-12-27 15:26:04 +01:00
|
|
|
wl_list_remove(&drm->parent_destroy.link);
|
2020-12-25 14:45:00 +01:00
|
|
|
wl_list_remove(&drm->dev_change.link);
|
2020-12-27 15:21:07 +01:00
|
|
|
wl_list_remove(&drm->dev_remove.link);
|
2017-12-07 23:44:59 +01:00
|
|
|
|
2021-07-12 17:30:45 +02:00
|
|
|
if (drm->parent) {
|
|
|
|
finish_drm_renderer(&drm->mgpu_renderer);
|
|
|
|
}
|
|
|
|
|
2018-04-26 00:24:58 +02:00
|
|
|
finish_drm_resources(drm);
|
2020-12-17 20:48:47 +01:00
|
|
|
|
|
|
|
free(drm->name);
|
2020-11-06 10:16:07 +01:00
|
|
|
wlr_session_close_file(drm->session, drm->dev);
|
2017-09-30 11:22:26 +02:00
|
|
|
wl_event_source_remove(drm->drm_event);
|
|
|
|
free(drm);
|
2017-05-07 16:00:23 +02:00
|
|
|
}
|
|
|
|
|
2018-10-01 22:57:36 +02:00
|
|
|
static clockid_t backend_get_presentation_clock(struct wlr_backend *backend) {
|
2018-10-01 22:44:33 +02:00
|
|
|
struct wlr_drm_backend *drm = get_drm_backend_from_backend(backend);
|
|
|
|
return drm->clock;
|
|
|
|
}
|
|
|
|
|
2020-12-04 16:47:42 +01:00
|
|
|
static int backend_get_drm_fd(struct wlr_backend *backend) {
|
|
|
|
struct wlr_drm_backend *drm = get_drm_backend_from_backend(backend);
|
|
|
|
|
|
|
|
if (drm->parent) {
|
|
|
|
return drm->parent->fd;
|
|
|
|
} else {
|
|
|
|
return drm->fd;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-07-12 17:23:25 +02:00
|
|
|
static uint32_t drm_backend_get_buffer_caps(struct wlr_backend *backend) {
|
2021-04-28 16:09:33 +02:00
|
|
|
return WLR_BUFFER_CAP_DMABUF;
|
|
|
|
}
|
|
|
|
|
2021-02-04 14:57:18 +01:00
|
|
|
static const struct wlr_backend_impl backend_impl = {
|
2018-04-26 00:51:00 +02:00
|
|
|
.start = backend_start,
|
|
|
|
.destroy = backend_destroy,
|
2018-10-01 22:57:36 +02:00
|
|
|
.get_presentation_clock = backend_get_presentation_clock,
|
2020-12-04 16:47:42 +01:00
|
|
|
.get_drm_fd = backend_get_drm_fd,
|
2021-07-12 17:23:25 +02:00
|
|
|
.get_buffer_caps = drm_backend_get_buffer_caps,
|
2017-05-07 16:00:23 +02:00
|
|
|
};
|
|
|
|
|
2017-08-13 23:05:57 +02:00
|
|
|
bool wlr_backend_is_drm(struct wlr_backend *b) {
|
|
|
|
return b->impl == &backend_impl;
|
|
|
|
}
|
|
|
|
|
2020-12-25 14:45:00 +01:00
|
|
|
static void handle_session_active(struct wl_listener *listener, void *data) {
|
2017-12-07 23:44:59 +01:00
|
|
|
struct wlr_drm_backend *drm =
|
2020-12-25 14:45:00 +01:00
|
|
|
wl_container_of(listener, drm, session_active);
|
2020-11-06 11:34:55 +01:00
|
|
|
struct wlr_session *session = drm->session;
|
2017-06-21 02:47:53 +02:00
|
|
|
|
|
|
|
if (session->active) {
|
2018-07-09 23:49:54 +02:00
|
|
|
wlr_log(WLR_INFO, "DRM fd resumed");
|
2021-06-09 12:03:20 +02:00
|
|
|
scan_drm_connectors(drm, NULL);
|
2017-06-21 02:47:53 +02:00
|
|
|
|
2017-10-19 15:48:00 +02:00
|
|
|
struct wlr_drm_connector *conn;
|
2021-04-06 16:43:48 +02:00
|
|
|
wl_list_for_each(conn, &drm->outputs, link) {
|
2021-04-06 16:57:42 +02:00
|
|
|
struct wlr_output_mode *mode = NULL;
|
2021-09-07 11:34:53 +02:00
|
|
|
uint32_t committed = WLR_OUTPUT_STATE_ENABLED;
|
2019-12-29 10:55:16 +01:00
|
|
|
if (conn->output.enabled && conn->output.current_mode != NULL) {
|
2021-09-07 11:34:53 +02:00
|
|
|
committed |= WLR_OUTPUT_STATE_MODE;
|
2021-04-06 16:57:42 +02:00
|
|
|
mode = conn->output.current_mode;
|
2017-10-22 23:44:24 +02:00
|
|
|
}
|
2021-04-06 16:57:42 +02:00
|
|
|
struct wlr_output_state state = {
|
2021-09-07 11:34:53 +02:00
|
|
|
.committed = committed,
|
2021-04-06 16:57:42 +02:00
|
|
|
.enabled = mode != NULL,
|
|
|
|
.mode_type = WLR_OUTPUT_STATE_MODE_FIXED,
|
|
|
|
.mode = mode,
|
|
|
|
};
|
2021-04-06 17:58:10 +02:00
|
|
|
drm_connector_commit_state(conn, &state);
|
2017-06-21 02:47:53 +02:00
|
|
|
}
|
|
|
|
} else {
|
2018-07-09 23:49:54 +02:00
|
|
|
wlr_log(WLR_INFO, "DRM fd paused");
|
2017-05-13 15:12:47 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-12-25 14:45:00 +01:00
|
|
|
static void handle_dev_change(struct wl_listener *listener, void *data) {
|
|
|
|
struct wlr_drm_backend *drm = wl_container_of(listener, drm, dev_change);
|
2021-06-09 12:03:20 +02:00
|
|
|
struct wlr_device_change_event *change = data;
|
2017-06-03 05:47:33 +02:00
|
|
|
|
2020-12-26 11:42:23 +01:00
|
|
|
if (!drm->session->active) {
|
|
|
|
return;
|
|
|
|
}
|
2017-06-04 07:43:34 +02:00
|
|
|
|
2021-06-09 12:03:20 +02:00
|
|
|
// TODO: add and handle lease uevents
|
|
|
|
switch (change->type) {
|
|
|
|
case WLR_DEVICE_HOTPLUG:;
|
|
|
|
wlr_log(WLR_DEBUG, "Received hotplug event for %s", drm->name);
|
|
|
|
scan_drm_connectors(drm, &change->hotplug);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
wlr_log(WLR_DEBUG, "Received unknown change event for %s", drm->name);
|
|
|
|
}
|
2017-06-02 02:29:10 +02:00
|
|
|
}
|
|
|
|
|
2020-12-27 15:21:07 +01:00
|
|
|
static void handle_dev_remove(struct wl_listener *listener, void *data) {
|
|
|
|
struct wlr_drm_backend *drm = wl_container_of(listener, drm, dev_remove);
|
|
|
|
|
|
|
|
wlr_log(WLR_INFO, "Destroying DRM backend for %s", drm->name);
|
|
|
|
backend_destroy(&drm->backend);
|
|
|
|
}
|
|
|
|
|
2019-11-30 11:57:37 +01:00
|
|
|
static void handle_session_destroy(struct wl_listener *listener, void *data) {
|
|
|
|
struct wlr_drm_backend *drm =
|
|
|
|
wl_container_of(listener, drm, session_destroy);
|
|
|
|
backend_destroy(&drm->backend);
|
|
|
|
}
|
|
|
|
|
2017-12-07 23:44:59 +01:00
|
|
|
static void handle_display_destroy(struct wl_listener *listener, void *data) {
|
|
|
|
struct wlr_drm_backend *drm =
|
|
|
|
wl_container_of(listener, drm, display_destroy);
|
2018-04-26 00:51:00 +02:00
|
|
|
backend_destroy(&drm->backend);
|
2017-12-07 23:44:59 +01:00
|
|
|
}
|
|
|
|
|
2020-12-27 15:26:04 +01:00
|
|
|
static void handle_parent_destroy(struct wl_listener *listener, void *data) {
|
|
|
|
struct wlr_drm_backend *drm =
|
|
|
|
wl_container_of(listener, drm, parent_destroy);
|
|
|
|
backend_destroy(&drm->backend);
|
|
|
|
}
|
|
|
|
|
2017-05-07 16:00:23 +02:00
|
|
|
struct wlr_backend *wlr_drm_backend_create(struct wl_display *display,
|
2020-11-06 10:16:07 +01:00
|
|
|
struct wlr_session *session, struct wlr_device *dev,
|
2020-12-19 11:34:28 +01:00
|
|
|
struct wlr_backend *parent) {
|
2020-11-06 10:16:07 +01:00
|
|
|
assert(display && session && dev);
|
2017-10-01 08:22:47 +02:00
|
|
|
assert(!parent || wlr_backend_is_drm(parent));
|
2017-06-03 05:47:33 +02:00
|
|
|
|
2020-11-06 10:16:07 +01:00
|
|
|
char *name = drmGetDeviceNameFromFd2(dev->fd);
|
|
|
|
drmVersion *version = drmGetVersion(dev->fd);
|
2018-07-09 23:49:54 +02:00
|
|
|
wlr_log(WLR_INFO, "Initializing DRM backend for %s (%s)", name, version->name);
|
2017-06-03 05:47:33 +02:00
|
|
|
drmFreeVersion(version);
|
|
|
|
|
2017-09-30 11:22:26 +02:00
|
|
|
struct wlr_drm_backend *drm = calloc(1, sizeof(struct wlr_drm_backend));
|
|
|
|
if (!drm) {
|
2018-07-09 23:49:54 +02:00
|
|
|
wlr_log_errno(WLR_ERROR, "Allocation failed");
|
2017-05-07 16:00:23 +02:00
|
|
|
return NULL;
|
|
|
|
}
|
2017-09-30 11:22:26 +02:00
|
|
|
wlr_backend_init(&drm->backend, &backend_impl);
|
2017-05-03 06:23:07 +02:00
|
|
|
|
2017-09-30 11:22:26 +02:00
|
|
|
drm->session = session;
|
2020-12-22 18:42:59 +01:00
|
|
|
wl_list_init(&drm->fbs);
|
2017-10-19 15:48:00 +02:00
|
|
|
wl_list_init(&drm->outputs);
|
2017-05-02 04:34:33 +02:00
|
|
|
|
2020-11-06 10:16:07 +01:00
|
|
|
drm->dev = dev;
|
|
|
|
drm->fd = dev->fd;
|
2020-12-17 20:48:47 +01:00
|
|
|
drm->name = name;
|
2020-12-27 15:26:04 +01:00
|
|
|
|
2018-09-17 22:25:20 +02:00
|
|
|
if (parent != NULL) {
|
|
|
|
drm->parent = get_drm_backend_from_backend(parent);
|
2020-12-27 15:26:04 +01:00
|
|
|
|
|
|
|
drm->parent_destroy.notify = handle_parent_destroy;
|
|
|
|
wl_signal_add(&parent->events.destroy, &drm->parent_destroy);
|
|
|
|
} else {
|
|
|
|
wl_list_init(&drm->parent_destroy.link);
|
2018-09-17 22:25:20 +02:00
|
|
|
}
|
2017-05-01 07:49:18 +02:00
|
|
|
|
2020-12-25 14:45:00 +01:00
|
|
|
drm->dev_change.notify = handle_dev_change;
|
|
|
|
wl_signal_add(&dev->events.change, &drm->dev_change);
|
2017-06-04 07:43:34 +02:00
|
|
|
|
2020-12-27 15:21:07 +01:00
|
|
|
drm->dev_remove.notify = handle_dev_remove;
|
|
|
|
wl_signal_add(&dev->events.remove, &drm->dev_remove);
|
|
|
|
|
2017-09-30 11:22:26 +02:00
|
|
|
drm->display = display;
|
2017-05-03 11:28:44 +02:00
|
|
|
|
2020-12-27 15:26:04 +01:00
|
|
|
struct wl_event_loop *event_loop = wl_display_get_event_loop(display);
|
2017-09-30 11:22:26 +02:00
|
|
|
drm->drm_event = wl_event_loop_add_fd(event_loop, drm->fd,
|
2021-07-19 14:49:52 +02:00
|
|
|
WL_EVENT_READABLE, handle_drm_event, drm);
|
2017-09-30 11:22:26 +02:00
|
|
|
if (!drm->drm_event) {
|
2018-07-09 23:49:54 +02:00
|
|
|
wlr_log(WLR_ERROR, "Failed to create DRM event source");
|
2017-05-01 07:49:18 +02:00
|
|
|
goto error_fd;
|
|
|
|
}
|
|
|
|
|
2020-12-25 14:45:00 +01:00
|
|
|
drm->session_active.notify = handle_session_active;
|
|
|
|
wl_signal_add(&session->events.active, &drm->session_active);
|
2017-05-13 15:12:47 +02:00
|
|
|
|
2018-04-26 00:24:58 +02:00
|
|
|
if (!check_drm_features(drm)) {
|
2017-08-05 08:15:39 +02:00
|
|
|
goto error_event;
|
2017-07-20 10:51:59 +02:00
|
|
|
}
|
|
|
|
|
2018-04-26 00:24:58 +02:00
|
|
|
if (!init_drm_resources(drm)) {
|
2017-08-05 08:15:39 +02:00
|
|
|
goto error_event;
|
|
|
|
}
|
2017-07-20 10:51:59 +02:00
|
|
|
|
2020-12-02 10:37:07 +01:00
|
|
|
if (drm->parent) {
|
2021-07-12 17:23:25 +02:00
|
|
|
// Ensure we use the same renderer as the parent backend
|
|
|
|
drm->backend.renderer = wlr_backend_get_renderer(&drm->parent->backend);
|
|
|
|
assert(drm->backend.renderer != NULL);
|
|
|
|
|
2021-07-12 17:30:45 +02:00
|
|
|
if (!init_drm_renderer(drm, &drm->mgpu_renderer)) {
|
|
|
|
wlr_log(WLR_ERROR, "Failed to initialize renderer");
|
2021-08-10 13:18:00 +02:00
|
|
|
goto error_resources;
|
2021-07-12 17:30:45 +02:00
|
|
|
}
|
|
|
|
|
2020-12-02 10:37:07 +01:00
|
|
|
// We'll perform a multi-GPU copy for all submitted buffers, we need
|
|
|
|
// to be able to texture from them
|
2021-07-12 17:30:45 +02:00
|
|
|
struct wlr_renderer *renderer = drm->mgpu_renderer.wlr_rend;
|
2020-12-02 10:37:07 +01:00
|
|
|
const struct wlr_drm_format_set *texture_formats =
|
|
|
|
wlr_renderer_get_dmabuf_texture_formats(renderer);
|
|
|
|
if (texture_formats == NULL) {
|
|
|
|
wlr_log(WLR_ERROR, "Failed to query renderer texture formats");
|
2021-08-10 13:18:00 +02:00
|
|
|
goto error_mgpu_renderer;
|
2020-12-02 10:37:07 +01:00
|
|
|
}
|
|
|
|
|
2021-07-08 12:11:10 +02:00
|
|
|
// Force a linear layout. In case explicit modifiers aren't supported,
|
|
|
|
// the meaning of implicit modifiers changes from one GPU to the other.
|
|
|
|
// In case explicit modifiers are supported, we still have no guarantee
|
|
|
|
// that the buffer producer will support these, so they might fallback
|
|
|
|
// to implicit modifiers.
|
2020-12-02 10:37:07 +01:00
|
|
|
for (size_t i = 0; i < texture_formats->len; i++) {
|
|
|
|
const struct wlr_drm_format *fmt = texture_formats->formats[i];
|
2021-07-08 12:11:10 +02:00
|
|
|
wlr_drm_format_set_add(&drm->mgpu_formats, fmt->format,
|
|
|
|
DRM_FORMAT_MOD_LINEAR);
|
2020-12-02 10:37:07 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-30 11:57:37 +01:00
|
|
|
drm->session_destroy.notify = handle_session_destroy;
|
|
|
|
wl_signal_add(&session->events.destroy, &drm->session_destroy);
|
|
|
|
|
2017-12-07 23:44:59 +01:00
|
|
|
drm->display_destroy.notify = handle_display_destroy;
|
|
|
|
wl_display_add_destroy_listener(display, &drm->display_destroy);
|
|
|
|
|
2017-09-30 11:22:26 +02:00
|
|
|
return &drm->backend;
|
2017-05-01 07:49:18 +02:00
|
|
|
|
2021-08-10 13:18:00 +02:00
|
|
|
error_mgpu_renderer:
|
|
|
|
finish_drm_renderer(&drm->mgpu_renderer);
|
|
|
|
error_resources:
|
|
|
|
finish_drm_resources(drm);
|
2017-05-03 11:28:44 +02:00
|
|
|
error_event:
|
2020-12-25 14:45:00 +01:00
|
|
|
wl_list_remove(&drm->session_active.link);
|
2017-09-30 11:22:26 +02:00
|
|
|
wl_event_source_remove(drm->drm_event);
|
2017-05-01 07:49:18 +02:00
|
|
|
error_fd:
|
2021-08-10 13:18:00 +02:00
|
|
|
wl_list_remove(&drm->dev_remove.link);
|
|
|
|
wl_list_remove(&drm->dev_change.link);
|
|
|
|
wl_list_remove(&drm->parent_destroy.link);
|
2020-11-06 10:16:07 +01:00
|
|
|
wlr_session_close_file(drm->session, dev);
|
2017-09-30 11:22:26 +02:00
|
|
|
free(drm);
|
2017-05-01 07:49:18 +02:00
|
|
|
return NULL;
|
|
|
|
}
|