wlroots/backend/drm/backend.c

157 lines
4.0 KiB
C
Raw Normal View History

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-14 01:07:34 +00:00
#include <sys/stat.h>
2017-05-01 05:49:18 +00:00
#include <wlr/session.h>
2017-05-31 20:24:32 +00:00
#include <wlr/types.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
};
2017-05-13 13:12:47 +00:00
static void device_paused(struct wl_listener *listener, void *data) {
2017-05-14 01:07:34 +00:00
struct wlr_backend_state *drm = wl_container_of(listener, drm, device_paused);
struct device_arg *arg = data;
2017-05-13 13:12:47 +00:00
// TODO: Actually pause the renderer or something.
// We currently just expect it to fail its next pageflip.
2017-05-14 01:07:34 +00:00
if (arg->dev == drm->dev) {
wlr_log(L_INFO, "DRM fd paused");
}
2017-05-13 13:12:47 +00:00
}
static void device_resumed(struct wl_listener *listener, void *data) {
2017-05-14 00:31:22 +00:00
struct wlr_backend_state *drm = wl_container_of(listener, drm, device_resumed);
2017-05-14 01:07:34 +00:00
struct device_arg *arg = data;
if (arg->dev != drm->dev) {
return;
}
2017-05-13 13:12:47 +00:00
2017-05-14 01:07:34 +00:00
if (dup2(arg->fd, drm->fd) < 0) {
2017-05-14 00:31:22 +00:00
wlr_log(L_ERROR, "dup2 failed: %s", strerror(errno));
return;
}
2017-05-13 13:12:47 +00:00
2017-05-14 01:07:34 +00:00
wlr_log(L_INFO, "DRM fd resumed");
2017-05-13 13:12:47 +00:00
for (size_t i = 0; i < drm->outputs->length; ++i) {
struct wlr_output_state *output = drm->outputs->items[i];
wlr_drm_output_start_renderer(output);
2017-05-13 13:12:47 +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) {
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-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-14 01:07:34 +00:00
struct stat st;
if (fstat(state->fd, &st) < 0) {
wlr_log(L_ERROR, "Stat failed: %s", strerror(errno));
}
state->dev = st.st_rdev;
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-13 13:12:47 +00:00
wl_list_init(&state->device_paused.link);
wl_list_init(&state->device_paused.link);
state->device_paused.notify = device_paused;
state->device_resumed.notify = device_resumed;
wl_signal_add(&session->device_paused, &state->device_paused);
wl_signal_add(&session->device_resumed, &state->device_resumed);
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);
error_backend:
2017-05-07 14:00:23 +00:00
free(state);
2017-05-01 05:49:18 +00:00
free(backend);
return NULL;
}