2017-08-12 17:43:36 +02:00
|
|
|
#include <assert.h>
|
2018-02-12 21:29:23 +01:00
|
|
|
#include <errno.h>
|
2017-06-10 18:21:54 +02:00
|
|
|
#include <libinput.h>
|
2018-02-12 21:29:23 +01:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <wayland-server.h>
|
2017-08-13 01:55:40 +02:00
|
|
|
#include <wlr/backend/drm.h>
|
2018-02-12 21:29:23 +01:00
|
|
|
#include <wlr/backend/interface.h>
|
2017-08-13 01:55:40 +02:00
|
|
|
#include <wlr/backend/libinput.h>
|
2018-02-12 21:29:23 +01:00
|
|
|
#include <wlr/backend/multi.h>
|
|
|
|
#include <wlr/backend/session.h>
|
2017-06-19 19:40:58 +02:00
|
|
|
#include <wlr/backend/wayland.h>
|
2017-09-22 04:58:41 +02:00
|
|
|
#include <wlr/backend/x11.h>
|
2017-06-21 18:10:07 +02:00
|
|
|
#include <wlr/util/log.h>
|
2017-05-07 16:00:23 +02:00
|
|
|
|
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) {
|
|
|
|
assert(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
|
|
|
}
|
|
|
|
|
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
|
|
|
|
2017-08-11 04:15:37 +02:00
|
|
|
struct wlr_egl *wlr_backend_get_egl(struct wlr_backend *backend) {
|
2017-08-12 17:43:36 +02:00
|
|
|
if (backend->impl->get_egl) {
|
|
|
|
return backend->impl->get_egl(backend);
|
2017-08-11 04:15:37 +02:00
|
|
|
}
|
2017-08-12 17:43:36 +02:00
|
|
|
return NULL;
|
2017-08-11 04:15:37 +02:00
|
|
|
}
|
|
|
|
|
2018-01-23 22:06:54 +01:00
|
|
|
struct wlr_renderer *wlr_backend_get_renderer(struct wlr_backend *backend) {
|
|
|
|
if (backend->impl->get_renderer) {
|
|
|
|
return backend->impl->get_renderer(backend);
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2017-06-21 00:22:21 +02:00
|
|
|
static struct wlr_backend *attempt_wl_backend(struct wl_display *display) {
|
2018-01-13 21:20:15 +01:00
|
|
|
struct wlr_backend *backend = wlr_wl_backend_create(display, NULL);
|
2017-06-21 00:22:21 +02:00
|
|
|
if (backend) {
|
|
|
|
int outputs = 1;
|
|
|
|
const char *_outputs = getenv("WLR_WL_OUTPUTS");
|
|
|
|
if (_outputs) {
|
|
|
|
char *end;
|
|
|
|
outputs = (int)strtol(_outputs, &end, 10);
|
|
|
|
if (*end) {
|
|
|
|
wlr_log(L_ERROR, "WLR_WL_OUTPUTS specified with invalid integer, ignoring");
|
|
|
|
outputs = 1;
|
|
|
|
} else if (outputs < 0) {
|
|
|
|
wlr_log(L_ERROR, "WLR_WL_OUTPUTS specified with negative outputs, ignoring");
|
|
|
|
outputs = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
while (outputs--) {
|
|
|
|
wlr_wl_output_create(backend);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return backend;
|
|
|
|
}
|
|
|
|
|
2017-07-11 08:51:19 +02: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);
|
|
|
|
if (!backend) {
|
|
|
|
wlr_log(L_ERROR, "could not allocate multibackend");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2017-06-19 22:39:20 +02:00
|
|
|
if (getenv("WAYLAND_DISPLAY") || getenv("_WAYLAND_DISPLAY")) {
|
2017-12-20 01:07:33 +01:00
|
|
|
struct wlr_backend *wl_backend = attempt_wl_backend(display);
|
|
|
|
if (wl_backend) {
|
|
|
|
wlr_multi_backend_add(backend, wl_backend);
|
2017-12-22 00:38:58 +01:00
|
|
|
return backend;
|
2017-06-21 00:22:21 +02:00
|
|
|
}
|
2017-06-19 19:40:58 +02:00
|
|
|
}
|
2017-06-10 18:21:54 +02:00
|
|
|
|
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 =
|
|
|
|
wlr_x11_backend_create(display, x11_display);
|
|
|
|
wlr_multi_backend_add(backend, x11_backend);
|
2017-12-22 00:38:58 +01:00
|
|
|
return backend;
|
2017-08-13 01:55:40 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Attempt DRM+libinput
|
2017-08-26 01:56:43 +02:00
|
|
|
struct wlr_session *session = wlr_session_create(display);
|
2017-08-13 01:55:40 +02:00
|
|
|
if (!session) {
|
|
|
|
wlr_log(L_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
|
|
|
}
|
|
|
|
|
2017-08-26 04:02:04 +02:00
|
|
|
struct wlr_backend *libinput = wlr_libinput_backend_create(display, session);
|
2017-12-21 14:33:34 +01:00
|
|
|
if (libinput) {
|
|
|
|
wlr_multi_backend_add(backend, libinput);
|
2017-12-22 00:38:58 +01:00
|
|
|
} else {
|
|
|
|
wlr_log(L_ERROR, "Failed to start libinput backend");
|
|
|
|
wlr_backend_destroy(backend);
|
|
|
|
wlr_session_destroy(session);
|
|
|
|
return NULL;
|
2017-08-13 01:55:40 +02:00
|
|
|
}
|
|
|
|
|
2017-10-01 05:47:05 +02:00
|
|
|
int gpus[8];
|
|
|
|
size_t num_gpus = wlr_session_find_gpus(session, 8, gpus);
|
|
|
|
struct wlr_backend *primary_drm = NULL;
|
|
|
|
wlr_log(L_INFO, "Found %zu GPUs", num_gpus);
|
|
|
|
|
|
|
|
for (size_t i = 0; i < num_gpus; ++i) {
|
2017-10-01 08:22:47 +02:00
|
|
|
struct wlr_backend *drm = wlr_drm_backend_create(display, session,
|
|
|
|
gpus[i], primary_drm);
|
2017-10-01 05:47:05 +02:00
|
|
|
if (!drm) {
|
|
|
|
wlr_log(L_ERROR, "Failed to open DRM device");
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!primary_drm) {
|
|
|
|
primary_drm = drm;
|
|
|
|
}
|
|
|
|
|
|
|
|
wlr_multi_backend_add(backend, drm);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!primary_drm) {
|
|
|
|
wlr_log(L_ERROR, "Failed to open any DRM device");
|
2017-12-22 00:38:58 +01:00
|
|
|
wlr_backend_destroy(libinput);
|
|
|
|
wlr_session_destroy(session);
|
2017-12-21 14:33:34 +01:00
|
|
|
wlr_backend_destroy(backend);
|
|
|
|
return NULL;
|
|
|
|
}
|
2017-08-13 01:55:40 +02:00
|
|
|
|
2017-12-20 01:07:33 +01:00
|
|
|
return backend;
|
2017-08-13 01:55:40 +02:00
|
|
|
}
|
2018-02-20 00:01:27 +01:00
|
|
|
|
|
|
|
uint32_t usec_to_msec(uint64_t usec) {
|
|
|
|
return (uint32_t)(usec / 1000);
|
|
|
|
}
|