2017-05-01 05:49:18 +00:00
|
|
|
#include <unistd.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdio.h>
|
2017-05-02 01:00:25 +00:00
|
|
|
#include <string.h>
|
|
|
|
#include <errno.h>
|
2017-05-03 09:28:44 +00:00
|
|
|
#include <wayland-server.h>
|
2017-05-01 05:49:18 +00:00
|
|
|
|
2017-05-03 04:23:07 +00:00
|
|
|
#include <wlr/session.h>
|
2017-05-31 20:17:04 +00:00
|
|
|
#include <wlr/wayland.h>
|
2017-05-02 02:34:33 +00:00
|
|
|
#include <wlr/common/list.h>
|
|
|
|
|
2017-05-07 14:00:23 +00:00
|
|
|
#include "backend.h"
|
2017-05-01 05:49:18 +00:00
|
|
|
#include "backend/drm/backend.h"
|
|
|
|
#include "backend/drm/drm.h"
|
|
|
|
#include "backend/drm/udev.h"
|
2017-05-02 01:00:25 +00:00
|
|
|
#include "common/log.h"
|
2017-05-01 05:49:18 +00:00
|
|
|
|
2017-05-07 14:00:23 +00:00
|
|
|
static bool wlr_drm_backend_init(struct wlr_backend_state *state) {
|
|
|
|
wlr_drm_scan_connectors(state);
|
|
|
|
return true;
|
|
|
|
}
|
2017-05-03 09:28:44 +00:00
|
|
|
|
2017-05-07 14:00:23 +00:00
|
|
|
static void wlr_drm_backend_destroy(struct wlr_backend_state *state) {
|
|
|
|
if (!state) {
|
|
|
|
return;
|
|
|
|
}
|
2017-05-31 20:17:04 +00:00
|
|
|
for (size_t i = 0; state->outputs && i < state->outputs->length; ++i) {
|
|
|
|
struct wlr_output_state *output = state->outputs->items[i];
|
|
|
|
wlr_output_destroy(output->wlr_output);
|
|
|
|
}
|
2017-05-07 14:00:23 +00:00
|
|
|
wlr_drm_renderer_free(&state->renderer);
|
|
|
|
wlr_udev_free(&state->udev);
|
|
|
|
wlr_session_close_file(state->session, state->fd);
|
|
|
|
wlr_session_finish(state->session);
|
|
|
|
wl_event_source_remove(state->drm_event);
|
|
|
|
free(state);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct wlr_backend_impl backend_impl = {
|
|
|
|
.init = wlr_drm_backend_init,
|
|
|
|
.destroy = wlr_drm_backend_destroy
|
|
|
|
};
|
|
|
|
|
|
|
|
struct wlr_backend *wlr_drm_backend_create(struct wl_display *display,
|
|
|
|
struct wlr_session *session) {
|
|
|
|
struct wlr_backend_state *state = calloc(1, sizeof(struct wlr_backend_state));
|
|
|
|
if (!state) {
|
2017-05-02 01:00:25 +00:00
|
|
|
wlr_log(L_ERROR, "Allocation failed: %s", strerror(errno));
|
2017-05-01 05:49:18 +00:00
|
|
|
return NULL;
|
2017-05-02 01:00:25 +00:00
|
|
|
}
|
2017-05-01 05:49:18 +00:00
|
|
|
|
2017-05-07 14:00:23 +00:00
|
|
|
struct wlr_backend *backend = wlr_backend_create(&backend_impl, state);
|
|
|
|
if (!backend) {
|
|
|
|
wlr_log(L_ERROR, "Allocation failed: %s", strerror(errno));
|
|
|
|
return NULL;
|
|
|
|
}
|
2017-05-03 04:23:07 +00:00
|
|
|
|
2017-05-07 14:00:23 +00:00
|
|
|
state->backend = backend;
|
|
|
|
state->session = session;
|
|
|
|
state->outputs = list_create();
|
|
|
|
if (!state->outputs) {
|
2017-05-02 02:34:33 +00:00
|
|
|
wlr_log(L_ERROR, "Failed to allocate list");
|
|
|
|
goto error_backend;
|
|
|
|
}
|
|
|
|
|
2017-05-07 14:00:23 +00:00
|
|
|
if (!wlr_udev_init(display, &state->udev)) {
|
2017-05-02 01:00:25 +00:00
|
|
|
wlr_log(L_ERROR, "Failed to start udev");
|
2017-05-03 09:28:44 +00:00
|
|
|
goto error_list;
|
2017-05-01 05:49:18 +00:00
|
|
|
}
|
|
|
|
|
2017-05-07 14:00:23 +00:00
|
|
|
state->fd = wlr_udev_find_gpu(&state->udev, state->session);
|
|
|
|
if (state->fd == -1) {
|
2017-05-02 01:00:25 +00:00
|
|
|
wlr_log(L_ERROR, "Failed to open DRM device");
|
2017-05-01 05:49:18 +00:00
|
|
|
goto error_udev;
|
|
|
|
}
|
|
|
|
|
2017-05-03 09:28:44 +00:00
|
|
|
struct wl_event_loop *event_loop = wl_display_get_event_loop(display);
|
|
|
|
|
2017-05-07 14:00:23 +00:00
|
|
|
state->drm_event = wl_event_loop_add_fd(event_loop, state->fd,
|
2017-05-03 09:28:44 +00:00
|
|
|
WL_EVENT_READABLE, wlr_drm_event, NULL);
|
2017-05-07 14:00:23 +00:00
|
|
|
if (!state->drm_event) {
|
2017-05-03 09:28:44 +00:00
|
|
|
wlr_log(L_ERROR, "Failed to create DRM event source");
|
2017-05-01 05:49:18 +00:00
|
|
|
goto error_fd;
|
|
|
|
}
|
|
|
|
|
2017-05-07 16:26:48 +00:00
|
|
|
// TODO: what is the difference between the per-output renderer and this
|
|
|
|
// one?
|
2017-05-07 14:00:23 +00:00
|
|
|
if (!wlr_drm_renderer_init(&state->renderer, state->fd)) {
|
2017-05-03 09:28:44 +00:00
|
|
|
wlr_log(L_ERROR, "Failed to initialize renderer");
|
|
|
|
goto error_event;
|
|
|
|
}
|
|
|
|
|
2017-05-01 05:49:18 +00:00
|
|
|
return backend;
|
|
|
|
|
2017-05-03 09:28:44 +00:00
|
|
|
error_event:
|
2017-05-07 14:00:23 +00:00
|
|
|
wl_event_source_remove(state->drm_event);
|
2017-05-01 05:49:18 +00:00
|
|
|
error_fd:
|
2017-05-07 14:00:23 +00:00
|
|
|
wlr_session_close_file(state->session, state->fd);
|
2017-05-01 05:49:18 +00:00
|
|
|
error_udev:
|
2017-05-07 14:00:23 +00:00
|
|
|
wlr_udev_free(&state->udev);
|
2017-05-02 02:34:33 +00:00
|
|
|
error_list:
|
2017-05-07 14:00:23 +00:00
|
|
|
list_free(state->outputs);
|
2017-05-02 02:08:34 +00:00
|
|
|
error_backend:
|
2017-05-07 14:00:23 +00:00
|
|
|
free(state);
|
2017-05-01 05:49:18 +00:00
|
|
|
free(backend);
|
|
|
|
return NULL;
|
|
|
|
}
|