2017-05-01 07:49:18 +02:00
|
|
|
#include <unistd.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdio.h>
|
2017-05-02 03:00:25 +02:00
|
|
|
#include <string.h>
|
|
|
|
#include <errno.h>
|
2017-05-03 11:28:44 +02:00
|
|
|
#include <wayland-server.h>
|
2017-05-01 07:49:18 +02:00
|
|
|
|
2017-05-03 06:23:07 +02:00
|
|
|
#include <wlr/session.h>
|
2017-05-02 04:34:33 +02:00
|
|
|
#include <wlr/common/list.h>
|
|
|
|
|
2017-05-07 16:00:23 +02:00
|
|
|
#include "backend.h"
|
2017-05-01 07:49:18 +02:00
|
|
|
#include "backend/drm/backend.h"
|
|
|
|
#include "backend/drm/drm.h"
|
|
|
|
#include "backend/drm/udev.h"
|
2017-05-02 03:00:25 +02:00
|
|
|
#include "common/log.h"
|
2017-05-01 07:49:18 +02:00
|
|
|
|
2017-05-07 16:00:23 +02:00
|
|
|
static bool wlr_drm_backend_init(struct wlr_backend_state *state) {
|
|
|
|
wlr_drm_scan_connectors(state);
|
|
|
|
return true;
|
|
|
|
}
|
2017-05-03 11:28:44 +02:00
|
|
|
|
2017-05-07 16:00:23 +02:00
|
|
|
static void wlr_drm_backend_destroy(struct wlr_backend_state *state) {
|
|
|
|
if (!state) {
|
|
|
|
return;
|
|
|
|
}
|
2017-05-07 18:26:48 +02:00
|
|
|
// TODO: free outputs in shared backend code
|
2017-05-07 16:00:23 +02: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 15:12:47 +02:00
|
|
|
static void device_paused(struct wl_listener *listener, void *data) {
|
|
|
|
struct wlr_backend_state *backend = wl_container_of(listener, backend, device_paused);
|
|
|
|
|
|
|
|
// TODO: Actually pause the renderer or something.
|
|
|
|
// We currently just expect it to fail its next pageflip.
|
|
|
|
|
|
|
|
(void)backend;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void device_resumed(struct wl_listener *listener, void *data) {
|
|
|
|
struct wlr_backend_state *drm = wl_container_of(listener, drm, device_paused);
|
|
|
|
int *new_fd = data;
|
|
|
|
|
|
|
|
close(drm->fd);
|
|
|
|
drm->fd = *new_fd;
|
|
|
|
drm->renderer.fd = *new_fd;
|
|
|
|
|
|
|
|
for (size_t i = 0; i < drm->outputs->length; ++i) {
|
|
|
|
struct wlr_output_state *output = drm->outputs->items[i];
|
|
|
|
wlr_drm_output_draw_blank(output);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-05-07 16:00:23 +02: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 03:00:25 +02:00
|
|
|
wlr_log(L_ERROR, "Allocation failed: %s", strerror(errno));
|
2017-05-01 07:49:18 +02:00
|
|
|
return NULL;
|
2017-05-02 03:00:25 +02:00
|
|
|
}
|
2017-05-01 07:49:18 +02:00
|
|
|
|
2017-05-07 16:00:23 +02: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 06:23:07 +02:00
|
|
|
|
2017-05-07 16:00:23 +02:00
|
|
|
state->backend = backend;
|
|
|
|
state->session = session;
|
|
|
|
state->outputs = list_create();
|
|
|
|
if (!state->outputs) {
|
2017-05-02 04:34:33 +02:00
|
|
|
wlr_log(L_ERROR, "Failed to allocate list");
|
|
|
|
goto error_backend;
|
|
|
|
}
|
|
|
|
|
2017-05-07 16:00:23 +02:00
|
|
|
if (!wlr_udev_init(display, &state->udev)) {
|
2017-05-02 03:00:25 +02:00
|
|
|
wlr_log(L_ERROR, "Failed to start udev");
|
2017-05-03 11:28:44 +02:00
|
|
|
goto error_list;
|
2017-05-01 07:49:18 +02:00
|
|
|
}
|
|
|
|
|
2017-05-07 16:00:23 +02:00
|
|
|
state->fd = wlr_udev_find_gpu(&state->udev, state->session);
|
|
|
|
if (state->fd == -1) {
|
2017-05-02 03:00:25 +02:00
|
|
|
wlr_log(L_ERROR, "Failed to open DRM device");
|
2017-05-01 07:49:18 +02:00
|
|
|
goto error_udev;
|
|
|
|
}
|
|
|
|
|
2017-05-03 11:28:44 +02:00
|
|
|
struct wl_event_loop *event_loop = wl_display_get_event_loop(display);
|
|
|
|
|
2017-05-07 16:00:23 +02:00
|
|
|
state->drm_event = wl_event_loop_add_fd(event_loop, state->fd,
|
2017-05-03 11:28:44 +02:00
|
|
|
WL_EVENT_READABLE, wlr_drm_event, NULL);
|
2017-05-07 16:00:23 +02:00
|
|
|
if (!state->drm_event) {
|
2017-05-03 11:28:44 +02:00
|
|
|
wlr_log(L_ERROR, "Failed to create DRM event source");
|
2017-05-01 07:49:18 +02:00
|
|
|
goto error_fd;
|
|
|
|
}
|
|
|
|
|
2017-05-13 15:12:47 +02: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 18:26:48 +02:00
|
|
|
// TODO: what is the difference between the per-output renderer and this
|
|
|
|
// one?
|
2017-05-07 16:00:23 +02:00
|
|
|
if (!wlr_drm_renderer_init(&state->renderer, state->fd)) {
|
2017-05-03 11:28:44 +02:00
|
|
|
wlr_log(L_ERROR, "Failed to initialize renderer");
|
|
|
|
goto error_event;
|
|
|
|
}
|
|
|
|
|
2017-05-01 07:49:18 +02:00
|
|
|
return backend;
|
|
|
|
|
2017-05-03 11:28:44 +02:00
|
|
|
error_event:
|
2017-05-07 16:00:23 +02:00
|
|
|
wl_event_source_remove(state->drm_event);
|
2017-05-01 07:49:18 +02:00
|
|
|
error_fd:
|
2017-05-07 16:00:23 +02:00
|
|
|
wlr_session_close_file(state->session, state->fd);
|
2017-05-01 07:49:18 +02:00
|
|
|
error_udev:
|
2017-05-07 16:00:23 +02:00
|
|
|
wlr_udev_free(&state->udev);
|
2017-05-02 04:34:33 +02:00
|
|
|
error_list:
|
2017-05-07 16:00:23 +02:00
|
|
|
list_free(state->outputs);
|
2017-05-02 04:08:34 +02:00
|
|
|
error_backend:
|
2017-05-07 16:00:23 +02:00
|
|
|
free(state);
|
2017-05-01 07:49:18 +02:00
|
|
|
free(backend);
|
|
|
|
return NULL;
|
|
|
|
}
|
2017-05-13 10:37:15 +02:00
|
|
|
|
|
|
|
void wlr_drm_backend_dpms(struct wlr_backend *backend, bool screen_on) {
|
|
|
|
struct wlr_backend_state *state = backend->state;
|
|
|
|
for (size_t i = 0; i < state->outputs->length; ++i) {
|
|
|
|
struct wlr_output_state *output = state->outputs->items[i];
|
|
|
|
wlr_drm_output_dpms(state->fd, output, screen_on);
|
|
|
|
}
|
|
|
|
}
|