2018-05-15 23:10:51 +02:00
|
|
|
#define _POSIX_C_SOURCE 200809L
|
2017-08-12 17:43:36 +02:00
|
|
|
#include <assert.h>
|
2018-02-12 21:29:23 +01:00
|
|
|
#include <errno.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <unistd.h>
|
2019-07-27 10:53:54 +02:00
|
|
|
#include <wayland-server-core.h>
|
2021-03-26 16:28:37 +01:00
|
|
|
|
2018-05-15 01:07:41 +02:00
|
|
|
#include <wlr/backend/headless.h>
|
2018-02-12 21:29:23 +01:00
|
|
|
#include <wlr/backend/interface.h>
|
|
|
|
#include <wlr/backend/multi.h>
|
|
|
|
#include <wlr/backend/session.h>
|
2017-06-19 19:40:58 +02:00
|
|
|
#include <wlr/backend/wayland.h>
|
2018-07-21 15:44:20 +02:00
|
|
|
#include <wlr/config.h>
|
2021-04-28 23:22:46 +02:00
|
|
|
#include <wlr/render/wlr_renderer.h>
|
2018-03-27 09:19:44 +02:00
|
|
|
#include <wlr/util/log.h>
|
2021-04-28 16:09:33 +02:00
|
|
|
#include "backend/backend.h"
|
2018-09-24 23:17:08 +02:00
|
|
|
#include "backend/multi.h"
|
2021-08-25 09:33:19 +02:00
|
|
|
#include "render/allocator/allocator.h"
|
2021-04-29 00:07:31 +02:00
|
|
|
#include "util/signal.h"
|
2018-07-21 15:44:20 +02:00
|
|
|
|
2021-03-26 16:28:37 +01:00
|
|
|
#if WLR_HAS_DRM_BACKEND
|
|
|
|
#include <wlr/backend/drm.h>
|
2021-12-10 21:14:57 +01:00
|
|
|
#include "backend/drm/monitor.h"
|
2021-03-26 16:28:37 +01:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#if WLR_HAS_LIBINPUT_BACKEND
|
|
|
|
#include <wlr/backend/libinput.h>
|
|
|
|
#endif
|
|
|
|
|
2018-11-12 10:12:46 +01:00
|
|
|
#if WLR_HAS_X11_BACKEND
|
2018-03-27 05:15:21 +02:00
|
|
|
#include <wlr/backend/x11.h>
|
2018-03-23 10:28:36 +01:00
|
|
|
#endif
|
2017-05-07 16:00:23 +02:00
|
|
|
|
2021-09-07 20:09:14 +02:00
|
|
|
#define WAIT_SESSION_TIMEOUT 10000 // ms
|
|
|
|
|
2017-08-13 15:59:14 +02:00
|
|
|
void wlr_backend_init(struct wlr_backend *backend,
|
2017-08-12 17:43:36 +02:00
|
|
|
const struct wlr_backend_impl *impl) {
|
2022-04-26 09:43:54 +02:00
|
|
|
memset(backend, 0, sizeof(*backend));
|
2017-05-07 16:00:23 +02:00
|
|
|
backend->impl = impl;
|
2017-12-20 00:14:47 +01:00
|
|
|
wl_signal_init(&backend->events.destroy);
|
2018-02-12 10:36:43 +01:00
|
|
|
wl_signal_init(&backend->events.new_input);
|
|
|
|
wl_signal_init(&backend->events.new_output);
|
2017-05-07 16:00:23 +02:00
|
|
|
}
|
|
|
|
|
2021-04-29 00:07:31 +02:00
|
|
|
void wlr_backend_finish(struct wlr_backend *backend) {
|
|
|
|
wlr_signal_emit_safe(&backend->events.destroy, backend);
|
|
|
|
}
|
|
|
|
|
2017-08-13 15:59:14 +02:00
|
|
|
bool wlr_backend_start(struct wlr_backend *backend) {
|
|
|
|
if (backend->impl->start) {
|
|
|
|
return backend->impl->start(backend);
|
2017-08-12 17:43:36 +02:00
|
|
|
}
|
|
|
|
return true;
|
2017-05-07 16:00:23 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void wlr_backend_destroy(struct wlr_backend *backend) {
|
2017-12-22 00:38:58 +01:00
|
|
|
if (!backend) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-08-14 16:16:20 +02:00
|
|
|
if (backend->impl && backend->impl->destroy) {
|
2017-08-12 17:43:36 +02:00
|
|
|
backend->impl->destroy(backend);
|
2017-08-14 16:16:20 +02:00
|
|
|
} else {
|
|
|
|
free(backend);
|
2017-08-12 17:43:36 +02:00
|
|
|
}
|
2017-05-07 16:00:23 +02:00
|
|
|
}
|
2017-05-31 21:38:26 +02:00
|
|
|
|
2018-09-24 23:17:08 +02:00
|
|
|
struct wlr_session *wlr_backend_get_session(struct wlr_backend *backend) {
|
|
|
|
if (backend->impl->get_session) {
|
|
|
|
return backend->impl->get_session(backend);
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2021-09-07 20:09:14 +02:00
|
|
|
static uint64_t get_current_time_ms(void) {
|
|
|
|
struct timespec ts = {0};
|
|
|
|
clock_gettime(CLOCK_MONOTONIC, &ts);
|
|
|
|
return (uint64_t)ts.tv_sec * 1000 + (uint64_t)ts.tv_nsec / 1000000;
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct wlr_session *session_create_and_wait(struct wl_display *disp) {
|
|
|
|
struct wlr_session *session = wlr_session_create(disp);
|
|
|
|
|
|
|
|
if (!session) {
|
|
|
|
wlr_log(WLR_ERROR, "Failed to start a session");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!session->active) {
|
|
|
|
wlr_log(WLR_INFO, "Waiting for a session to become active");
|
|
|
|
|
|
|
|
uint64_t started_at = get_current_time_ms();
|
|
|
|
uint64_t timeout = WAIT_SESSION_TIMEOUT;
|
|
|
|
struct wl_event_loop *event_loop =
|
|
|
|
wl_display_get_event_loop(session->display);
|
|
|
|
|
|
|
|
while (!session->active) {
|
|
|
|
int ret = wl_event_loop_dispatch(event_loop, (int)timeout);
|
|
|
|
if (ret < 0) {
|
|
|
|
wlr_log_errno(WLR_ERROR, "Failed to wait for session active: "
|
|
|
|
"wl_event_loop_dispatch failed");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint64_t now = get_current_time_ms();
|
|
|
|
if (now >= started_at + WAIT_SESSION_TIMEOUT) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
timeout = started_at + WAIT_SESSION_TIMEOUT - now;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!session->active) {
|
|
|
|
wlr_log(WLR_ERROR, "Timeout waiting session to become active");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return session;
|
|
|
|
}
|
|
|
|
|
2018-10-01 22:57:36 +02:00
|
|
|
clockid_t wlr_backend_get_presentation_clock(struct wlr_backend *backend) {
|
|
|
|
if (backend->impl->get_presentation_clock) {
|
|
|
|
return backend->impl->get_presentation_clock(backend);
|
2018-10-01 22:44:33 +02:00
|
|
|
}
|
|
|
|
return CLOCK_MONOTONIC;
|
|
|
|
}
|
|
|
|
|
2021-04-12 10:39:51 +02:00
|
|
|
int wlr_backend_get_drm_fd(struct wlr_backend *backend) {
|
2020-12-01 16:00:12 +01:00
|
|
|
if (!backend->impl->get_drm_fd) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
return backend->impl->get_drm_fd(backend);
|
|
|
|
}
|
|
|
|
|
2021-04-28 16:09:33 +02:00
|
|
|
uint32_t backend_get_buffer_caps(struct wlr_backend *backend) {
|
|
|
|
if (!backend->impl->get_buffer_caps) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return backend->impl->get_buffer_caps(backend);
|
|
|
|
}
|
|
|
|
|
2018-03-31 05:36:05 +02:00
|
|
|
static size_t parse_outputs_env(const char *name) {
|
2018-03-31 04:09:06 +02:00
|
|
|
const char *outputs_str = getenv(name);
|
|
|
|
if (outputs_str == NULL) {
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
char *end;
|
|
|
|
int outputs = (int)strtol(outputs_str, &end, 10);
|
|
|
|
if (*end || outputs < 0) {
|
2018-07-09 23:49:54 +02:00
|
|
|
wlr_log(WLR_ERROR, "%s specified with invalid integer, ignoring", name);
|
2018-03-31 04:09:06 +02:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return outputs;
|
|
|
|
}
|
|
|
|
|
2020-12-19 11:34:28 +01:00
|
|
|
static struct wlr_backend *attempt_wl_backend(struct wl_display *display) {
|
|
|
|
struct wlr_backend *backend = wlr_wl_backend_create(display, NULL);
|
2018-03-31 04:09:06 +02:00
|
|
|
if (backend == NULL) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2018-03-31 05:36:05 +02:00
|
|
|
size_t outputs = parse_outputs_env("WLR_WL_OUTPUTS");
|
|
|
|
for (size_t i = 0; i < outputs; ++i) {
|
2018-03-31 04:09:06 +02:00
|
|
|
wlr_wl_output_create(backend);
|
2017-06-21 00:22:21 +02:00
|
|
|
}
|
2018-03-31 04:09:06 +02:00
|
|
|
|
2021-11-15 18:10:57 +01:00
|
|
|
return backend;
|
2018-03-31 04:09:06 +02:00
|
|
|
}
|
|
|
|
|
2018-11-12 10:12:46 +01:00
|
|
|
#if WLR_HAS_X11_BACKEND
|
2018-03-31 04:09:06 +02:00
|
|
|
static struct wlr_backend *attempt_x11_backend(struct wl_display *display,
|
2020-12-19 11:34:28 +01:00
|
|
|
const char *x11_display) {
|
|
|
|
struct wlr_backend *backend = wlr_x11_backend_create(display, x11_display);
|
2018-03-31 04:09:06 +02:00
|
|
|
if (backend == NULL) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2018-03-31 05:36:05 +02:00
|
|
|
size_t outputs = parse_outputs_env("WLR_X11_OUTPUTS");
|
|
|
|
for (size_t i = 0; i < outputs; ++i) {
|
2018-03-31 04:09:06 +02:00
|
|
|
wlr_x11_output_create(backend);
|
|
|
|
}
|
|
|
|
|
2021-11-15 18:10:57 +01:00
|
|
|
return backend;
|
2017-06-21 00:22:21 +02:00
|
|
|
}
|
2018-04-04 19:59:47 +02:00
|
|
|
#endif
|
2017-06-21 00:22:21 +02:00
|
|
|
|
2018-05-15 01:07:41 +02:00
|
|
|
static struct wlr_backend *attempt_headless_backend(
|
2020-12-19 11:34:28 +01:00
|
|
|
struct wl_display *display) {
|
|
|
|
struct wlr_backend *backend = wlr_headless_backend_create(display);
|
2018-05-15 01:07:41 +02:00
|
|
|
if (backend == NULL) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
size_t outputs = parse_outputs_env("WLR_HEADLESS_OUTPUTS");
|
|
|
|
for (size_t i = 0; i < outputs; ++i) {
|
|
|
|
wlr_headless_add_output(backend, 1280, 720);
|
|
|
|
}
|
|
|
|
|
2021-11-15 18:10:57 +01:00
|
|
|
return backend;
|
2018-05-15 01:07:41 +02:00
|
|
|
}
|
|
|
|
|
2021-03-26 16:28:37 +01:00
|
|
|
#if WLR_HAS_DRM_BACKEND
|
2018-05-19 10:32:08 +02:00
|
|
|
static struct wlr_backend *attempt_drm_backend(struct wl_display *display,
|
2020-12-19 11:34:28 +01:00
|
|
|
struct wlr_backend *backend, struct wlr_session *session) {
|
2020-11-06 10:16:07 +01:00
|
|
|
struct wlr_device *gpus[8];
|
2020-12-28 10:52:40 +01:00
|
|
|
ssize_t num_gpus = wlr_session_find_gpus(session, 8, gpus);
|
|
|
|
if (num_gpus < 0) {
|
|
|
|
wlr_log(WLR_ERROR, "Failed to find GPUs");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2021-10-17 23:38:53 +02:00
|
|
|
if (num_gpus == 0) {
|
|
|
|
wlr_log(WLR_ERROR, "Found 0 GPUs, cannot create backend");
|
|
|
|
return NULL;
|
|
|
|
} else {
|
|
|
|
wlr_log(WLR_INFO, "Found %zu GPUs", num_gpus);
|
|
|
|
}
|
2018-05-19 10:32:08 +02:00
|
|
|
|
2020-12-28 10:52:40 +01:00
|
|
|
struct wlr_backend *primary_drm = NULL;
|
|
|
|
for (size_t i = 0; i < (size_t)num_gpus; ++i) {
|
2018-05-19 10:32:08 +02:00
|
|
|
struct wlr_backend *drm = wlr_drm_backend_create(display, session,
|
2020-12-19 11:34:28 +01:00
|
|
|
gpus[i], primary_drm);
|
2018-05-19 10:32:08 +02:00
|
|
|
if (!drm) {
|
2020-11-06 10:16:07 +01:00
|
|
|
wlr_log(WLR_ERROR, "Failed to create DRM backend");
|
2018-05-19 10:32:08 +02:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!primary_drm) {
|
|
|
|
primary_drm = drm;
|
|
|
|
}
|
|
|
|
|
|
|
|
wlr_multi_backend_add(backend, drm);
|
|
|
|
}
|
2021-10-17 23:38:53 +02:00
|
|
|
if (!primary_drm) {
|
|
|
|
wlr_log(WLR_ERROR, "Could not successfully create backend on any GPU");
|
|
|
|
return NULL;
|
|
|
|
}
|
2018-05-19 10:32:08 +02:00
|
|
|
|
2021-12-13 14:53:41 +01:00
|
|
|
return primary_drm;
|
2018-05-19 10:32:08 +02:00
|
|
|
}
|
2021-03-26 16:28:37 +01:00
|
|
|
#endif
|
2018-05-19 10:32:08 +02:00
|
|
|
|
2021-11-19 16:41:52 +01:00
|
|
|
static bool attempt_backend_by_name(struct wl_display *display,
|
|
|
|
struct wlr_multi_backend *multi, char *name) {
|
|
|
|
struct wlr_backend *backend = NULL;
|
2018-05-15 01:07:41 +02:00
|
|
|
if (strcmp(name, "wayland") == 0) {
|
2021-11-19 16:41:52 +01:00
|
|
|
backend = attempt_wl_backend(display);
|
2018-11-12 10:12:46 +01:00
|
|
|
#if WLR_HAS_X11_BACKEND
|
2018-05-15 01:07:41 +02:00
|
|
|
} else if (strcmp(name, "x11") == 0) {
|
2021-11-19 16:41:52 +01:00
|
|
|
backend = attempt_x11_backend(display, NULL);
|
2018-05-15 01:07:41 +02:00
|
|
|
#endif
|
|
|
|
} else if (strcmp(name, "headless") == 0) {
|
2021-11-19 16:41:52 +01:00
|
|
|
backend = attempt_headless_backend(display);
|
2018-05-19 10:32:08 +02:00
|
|
|
} else if (strcmp(name, "drm") == 0 || strcmp(name, "libinput") == 0) {
|
|
|
|
// DRM and libinput need a session
|
2021-11-19 16:41:52 +01:00
|
|
|
if (multi->session == NULL) {
|
|
|
|
multi->session = session_create_and_wait(display);
|
|
|
|
if (multi->session == NULL) {
|
2018-09-24 23:17:08 +02:00
|
|
|
wlr_log(WLR_ERROR, "failed to start a session");
|
2021-11-19 16:41:52 +01:00
|
|
|
return false;
|
2018-09-24 23:17:08 +02:00
|
|
|
}
|
2018-05-19 10:32:08 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (strcmp(name, "libinput") == 0) {
|
2021-03-26 16:28:37 +01:00
|
|
|
#if WLR_HAS_LIBINPUT_BACKEND
|
2021-11-19 16:41:52 +01:00
|
|
|
backend = wlr_libinput_backend_create(display, multi->session);
|
2021-03-26 16:28:37 +01:00
|
|
|
#endif
|
2018-05-19 10:32:08 +02:00
|
|
|
} else {
|
2021-03-26 16:28:37 +01:00
|
|
|
#if WLR_HAS_DRM_BACKEND
|
2021-11-19 16:41:52 +01:00
|
|
|
// attempt_drm_backend adds the multi drm backends itself
|
|
|
|
return attempt_drm_backend(display, &multi->backend,
|
|
|
|
multi->session) != NULL;
|
2021-03-26 16:28:37 +01:00
|
|
|
#endif
|
2018-05-19 10:32:08 +02:00
|
|
|
}
|
2021-11-19 16:41:52 +01:00
|
|
|
} else {
|
|
|
|
wlr_log(WLR_ERROR, "unrecognized backend '%s'", name);
|
|
|
|
return false;
|
2018-05-15 01:07:41 +02:00
|
|
|
}
|
2018-05-19 10:32:08 +02:00
|
|
|
|
2021-11-19 16:41:52 +01:00
|
|
|
return wlr_multi_backend_add(&multi->backend, backend);
|
2018-05-15 01:07:41 +02:00
|
|
|
}
|
|
|
|
|
2020-12-19 11:34:28 +01:00
|
|
|
struct wlr_backend *wlr_backend_autocreate(struct wl_display *display) {
|
2017-12-20 01:07:33 +01:00
|
|
|
struct wlr_backend *backend = wlr_multi_backend_create(display);
|
2018-09-24 23:17:08 +02:00
|
|
|
struct wlr_multi_backend *multi = (struct wlr_multi_backend *)backend;
|
2017-12-20 01:07:33 +01:00
|
|
|
if (!backend) {
|
2018-07-09 23:49:54 +02:00
|
|
|
wlr_log(WLR_ERROR, "could not allocate multibackend");
|
2017-12-20 01:07:33 +01:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2018-05-15 23:10:51 +02:00
|
|
|
char *names = getenv("WLR_BACKENDS");
|
|
|
|
if (names) {
|
2021-04-28 21:06:41 +02:00
|
|
|
wlr_log(WLR_INFO, "Loading user-specified backends due to WLR_BACKENDS: %s",
|
|
|
|
names);
|
|
|
|
|
2018-05-15 23:10:51 +02:00
|
|
|
names = strdup(names);
|
|
|
|
if (names == NULL) {
|
2018-07-09 23:49:54 +02:00
|
|
|
wlr_log(WLR_ERROR, "allocation failed");
|
2018-05-19 10:32:08 +02:00
|
|
|
wlr_backend_destroy(backend);
|
2018-05-15 01:07:41 +02:00
|
|
|
return NULL;
|
|
|
|
}
|
2018-05-15 23:10:51 +02:00
|
|
|
|
|
|
|
char *saveptr;
|
|
|
|
char *name = strtok_r(names, ",", &saveptr);
|
|
|
|
while (name != NULL) {
|
2021-11-19 16:41:52 +01:00
|
|
|
if (!attempt_backend_by_name(display, multi, name)) {
|
2018-07-09 23:49:54 +02:00
|
|
|
wlr_log(WLR_ERROR, "failed to add backend '%s'", name);
|
2018-09-24 23:17:08 +02:00
|
|
|
wlr_session_destroy(multi->session);
|
2018-10-13 10:58:59 +02:00
|
|
|
wlr_backend_destroy(backend);
|
2018-06-30 04:11:06 +02:00
|
|
|
free(names);
|
2018-05-15 23:10:51 +02:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
name = strtok_r(NULL, ",", &saveptr);
|
|
|
|
}
|
|
|
|
|
2018-06-30 04:11:06 +02:00
|
|
|
free(names);
|
2018-05-15 23:10:51 +02:00
|
|
|
return backend;
|
2018-05-15 01:07:41 +02:00
|
|
|
}
|
|
|
|
|
2020-09-16 12:54:40 +02:00
|
|
|
if (getenv("WAYLAND_DISPLAY") || getenv("WAYLAND_SOCKET")) {
|
2020-12-19 11:34:28 +01:00
|
|
|
struct wlr_backend *wl_backend = attempt_wl_backend(display);
|
2019-11-18 07:44:05 +01:00
|
|
|
if (!wl_backend) {
|
|
|
|
goto error;
|
2017-06-21 00:22:21 +02:00
|
|
|
}
|
2019-11-18 07:44:05 +01:00
|
|
|
|
|
|
|
wlr_multi_backend_add(backend, wl_backend);
|
|
|
|
return backend;
|
2017-06-19 19:40:58 +02:00
|
|
|
}
|
2017-06-10 18:21:54 +02:00
|
|
|
|
2018-11-12 10:12:46 +01:00
|
|
|
#if WLR_HAS_X11_BACKEND
|
2017-09-22 04:58:41 +02:00
|
|
|
const char *x11_display = getenv("DISPLAY");
|
|
|
|
if (x11_display) {
|
2017-12-20 01:07:33 +01:00
|
|
|
struct wlr_backend *x11_backend =
|
2020-12-19 11:34:28 +01:00
|
|
|
attempt_x11_backend(display, x11_display);
|
2019-11-18 07:44:05 +01:00
|
|
|
if (!x11_backend) {
|
|
|
|
goto error;
|
2018-03-31 04:09:06 +02:00
|
|
|
}
|
2019-11-18 07:44:05 +01:00
|
|
|
|
|
|
|
wlr_multi_backend_add(backend, x11_backend);
|
|
|
|
return backend;
|
2017-08-13 01:55:40 +02:00
|
|
|
}
|
2018-03-09 15:17:15 +01:00
|
|
|
#endif
|
2017-08-13 01:55:40 +02:00
|
|
|
|
|
|
|
// Attempt DRM+libinput
|
2021-09-07 20:09:14 +02:00
|
|
|
multi->session = session_create_and_wait(display);
|
2018-09-24 23:17:08 +02:00
|
|
|
if (!multi->session) {
|
2018-07-09 23:49:54 +02:00
|
|
|
wlr_log(WLR_ERROR, "Failed to start a DRM session");
|
2017-12-22 00:38:58 +01:00
|
|
|
wlr_backend_destroy(backend);
|
|
|
|
return NULL;
|
2017-08-13 01:55:40 +02:00
|
|
|
}
|
|
|
|
|
2021-03-26 16:28:37 +01:00
|
|
|
#if WLR_HAS_LIBINPUT_BACKEND
|
2018-09-24 23:17:08 +02:00
|
|
|
struct wlr_backend *libinput = wlr_libinput_backend_create(display,
|
|
|
|
multi->session);
|
2018-05-19 10:32:08 +02:00
|
|
|
if (!libinput) {
|
2018-07-09 23:49:54 +02:00
|
|
|
wlr_log(WLR_ERROR, "Failed to start libinput backend");
|
2018-09-24 23:17:08 +02:00
|
|
|
wlr_session_destroy(multi->session);
|
2018-10-13 10:58:59 +02:00
|
|
|
wlr_backend_destroy(backend);
|
2017-12-22 00:38:58 +01:00
|
|
|
return NULL;
|
2017-08-13 01:55:40 +02:00
|
|
|
}
|
2018-05-19 10:32:08 +02:00
|
|
|
wlr_multi_backend_add(backend, libinput);
|
2021-12-19 16:39:57 +01:00
|
|
|
#else
|
|
|
|
const char *no_devs = getenv("WLR_LIBINPUT_NO_DEVICES");
|
|
|
|
if (no_devs && strcmp(no_devs, "1") == 0) {
|
|
|
|
wlr_log(WLR_INFO, "WLR_LIBINPUT_NO_DEVICES is set, "
|
|
|
|
"starting without libinput backend");
|
|
|
|
} else {
|
|
|
|
wlr_log(WLR_ERROR, "libinput support is not compiled in, "
|
|
|
|
"refusing to start");
|
|
|
|
wlr_log(WLR_ERROR, "Set WLR_LIBINPUT_NO_DEVICES=1 to suppress this check");
|
|
|
|
wlr_session_destroy(multi->session);
|
|
|
|
wlr_backend_destroy(backend);
|
|
|
|
return NULL;
|
|
|
|
}
|
2021-03-26 16:28:37 +01:00
|
|
|
#endif
|
2017-08-13 01:55:40 +02:00
|
|
|
|
2021-03-26 16:28:37 +01:00
|
|
|
#if WLR_HAS_DRM_BACKEND
|
2020-12-19 11:34:28 +01:00
|
|
|
struct wlr_backend *primary_drm =
|
|
|
|
attempt_drm_backend(display, backend, multi->session);
|
2017-10-01 05:47:05 +02:00
|
|
|
if (!primary_drm) {
|
2018-07-09 23:49:54 +02:00
|
|
|
wlr_log(WLR_ERROR, "Failed to open any DRM device");
|
2018-09-24 23:17:08 +02:00
|
|
|
wlr_session_destroy(multi->session);
|
2018-10-13 10:58:59 +02:00
|
|
|
wlr_backend_destroy(backend);
|
2017-12-21 14:33:34 +01:00
|
|
|
return NULL;
|
|
|
|
}
|
2017-08-13 01:55:40 +02:00
|
|
|
|
2021-12-10 21:14:57 +01:00
|
|
|
drm_backend_monitor_create(backend, primary_drm, multi->session);
|
|
|
|
|
2017-12-20 01:07:33 +01:00
|
|
|
return backend;
|
2021-03-26 16:28:37 +01:00
|
|
|
#endif
|
2019-11-18 07:44:05 +01:00
|
|
|
|
|
|
|
error:
|
|
|
|
wlr_backend_destroy(backend);
|
|
|
|
return NULL;
|
2017-08-13 01:55:40 +02:00
|
|
|
}
|