wlroots/backend/drm/drm.c

862 lines
23 KiB
C
Raw Normal View History

2017-05-01 03:20:48 +00:00
#include <assert.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <inttypes.h>
#include <errno.h>
#include <xf86drm.h>
#include <xf86drmMode.h>
#include <drm_mode.h>
#include <EGL/egl.h>
#include <EGL/eglext.h>
#include <gbm.h>
#include <GLES3/gl3.h>
#include <wayland-server.h>
2017-06-04 23:30:37 +00:00
#include <wlr/backend/interface.h>
2017-06-21 14:27:45 +00:00
#include <wlr/interfaces/wlr_output.h>
2017-06-21 16:10:07 +00:00
#include <wlr/util/log.h>
2017-08-06 09:38:40 +00:00
#include <wlr/render/matrix.h>
#include <wlr/render/gles2.h>
#include <wlr/render.h>
2017-08-06 09:49:04 +00:00
#include "backend/drm.h"
#include "backend/drm-util.h"
2017-05-01 03:20:48 +00:00
2017-08-05 06:15:39 +00:00
bool wlr_drm_check_features(struct wlr_backend_state *drm) {
if (drmSetClientCap(drm->fd, DRM_CLIENT_CAP_UNIVERSAL_PLANES, 1)) {
wlr_log(L_INFO, "DRM universal planes unsupported");
return false;
}
if (drmSetClientCap(drm->fd, DRM_CLIENT_CAP_ATOMIC, 1)) {
wlr_log(L_INFO, "Atomic modesetting unsupported");
}
return true;
}
2017-07-20 08:51:59 +00:00
static int cmp_plane(const void *arg1, const void *arg2)
{
const struct wlr_drm_plane *a = arg1;
const struct wlr_drm_plane *b = arg2;
return (int)a->type - (int)b->type;
}
static bool init_planes(struct wlr_backend_state *drm)
{
drmModePlaneRes *plane_res = drmModeGetPlaneResources(drm->fd);
if (!plane_res) {
wlr_log_errno(L_ERROR, "Failed to get DRM plane resources");
return false;
}
wlr_log(L_INFO, "Found %"PRIu32" DRM planes", plane_res->count_planes);
if (plane_res->count_planes == 0) {
drmModeFreePlaneResources(plane_res);
return true;
}
2017-08-05 07:49:34 +00:00
drm->num_planes = plane_res->count_planes;
drm->planes = calloc(drm->num_planes, sizeof(*drm->planes));
if (!drm->planes) {
2017-07-20 08:51:59 +00:00
wlr_log_errno(L_ERROR, "Allocation failed");
goto error_res;
}
2017-08-05 07:49:34 +00:00
for (size_t i = 0; i < drm->num_planes; ++i) {
struct wlr_drm_plane *p = &drm->planes[i];
2017-07-20 08:51:59 +00:00
drmModePlane *plane = drmModeGetPlane(drm->fd, plane_res->planes[i]);
if (!plane) {
wlr_log_errno(L_ERROR, "Failed to get DRM plane");
goto error_planes;
}
p->id = plane->plane_id;
p->possible_crtcs = plane->possible_crtcs;
uint64_t type;
if (!wlr_drm_get_plane_props(drm->fd, p->id, &p->props) ||
!wlr_drm_get_prop(drm->fd, p->id, p->props.type, &type)) {
drmModeFreePlane(plane);
goto error_planes;
}
p->type = type;
2017-08-05 07:49:34 +00:00
drm->num_type_planes[type]++;
2017-07-20 08:51:59 +00:00
drmModeFreePlane(plane);
}
wlr_log(L_INFO, "(%zu overlay, %zu primary, %zu cursor)",
2017-08-05 07:49:34 +00:00
drm->num_overlay_planes, drm->num_primary_planes, drm->num_cursor_planes);
2017-07-20 08:51:59 +00:00
2017-08-05 07:49:34 +00:00
qsort(drm->planes, drm->num_planes, sizeof(*drm->planes), cmp_plane);
2017-07-20 08:51:59 +00:00
2017-08-05 07:49:34 +00:00
drm->overlay_planes = drm->planes;
drm->primary_planes = drm->overlay_planes + drm->num_overlay_planes;
drm->cursor_planes = drm->primary_planes + drm->num_primary_planes;
2017-07-20 08:51:59 +00:00
return true;
error_planes:
2017-08-05 07:49:34 +00:00
free(drm->planes);
2017-07-20 08:51:59 +00:00
error_res:
drmModeFreePlaneResources(plane_res);
return false;
}
2017-08-05 06:15:39 +00:00
bool wlr_drm_resources_init(struct wlr_backend_state *drm) {
2017-07-20 08:51:59 +00:00
drmModeRes *res = drmModeGetResources(drm->fd);
if (!res) {
wlr_log_errno(L_ERROR, "Failed to get DRM resources");
return false;
}
wlr_log(L_INFO, "Found %d DRM CRTCs", res->count_crtcs);
drm->num_crtcs = res->count_crtcs;
drm->crtcs = calloc(drm->num_crtcs, sizeof(drm->crtcs[0]));
if (!drm->crtcs) {
wlr_log_errno(L_ERROR, "Allocation failed");
goto error_res;
}
for (size_t i = 0; i < drm->num_crtcs; ++i) {
struct wlr_drm_crtc *crtc = &drm->crtcs[i];
crtc->id = res->crtcs[i];
wlr_drm_get_crtc_props(drm->fd, crtc->id, &crtc->props);
}
if (!init_planes(drm)) {
goto error_crtcs;
}
drmModeFreeResources(res);
return true;
error_crtcs:
free(drm->crtcs);
error_res:
drmModeFreeResources(res);
return false;
}
2017-08-05 07:49:34 +00:00
void wlr_drm_resources_free(struct wlr_backend_state *drm) {
2017-08-06 22:15:05 +00:00
if (!drm) {
2017-08-05 07:49:34 +00:00
return;
2017-08-06 22:15:05 +00:00
}
2017-08-05 07:49:34 +00:00
free(drm->crtcs);
free(drm->planes);
}
2017-05-03 09:28:44 +00:00
bool wlr_drm_renderer_init(struct wlr_drm_renderer *renderer, int fd) {
2017-05-01 05:49:18 +00:00
renderer->gbm = gbm_create_device(fd);
if (!renderer->gbm) {
2017-05-02 01:00:25 +00:00
wlr_log(L_ERROR, "Failed to create GBM device: %s", strerror(errno));
2017-05-01 03:20:48 +00:00
return false;
}
2017-05-03 05:17:14 +00:00
if (!wlr_egl_init(&renderer->egl, EGL_PLATFORM_GBM_MESA, renderer->gbm)) {
2017-05-03 09:28:44 +00:00
gbm_device_destroy(renderer->gbm);
return false;
}
2017-05-01 05:49:18 +00:00
renderer->fd = fd;
2017-05-01 03:20:48 +00:00
return true;
}
void wlr_drm_renderer_free(struct wlr_drm_renderer *renderer) {
2017-08-06 22:15:05 +00:00
if (!renderer) {
2017-05-01 03:20:48 +00:00
return;
2017-08-06 22:15:05 +00:00
}
2017-08-05 07:49:34 +00:00
2017-05-03 05:17:14 +00:00
wlr_egl_free(&renderer->egl);
2017-05-01 05:49:18 +00:00
gbm_device_destroy(renderer->gbm);
2017-05-01 03:20:48 +00:00
}
static bool wlr_drm_plane_renderer_init(struct wlr_drm_renderer *renderer,
2017-08-06 09:38:40 +00:00
struct wlr_drm_plane *plane, uint32_t width, uint32_t height, uint32_t flags) {
if (plane->width == width && plane->height == height) {
return true;
}
plane->width = width;
plane->height = height;
plane->gbm = gbm_surface_create(renderer->gbm, width, height,
2017-08-06 09:38:40 +00:00
GBM_FORMAT_ARGB8888, GBM_BO_USE_RENDERING | flags);
if (!plane->gbm) {
wlr_log_errno(L_ERROR, "Failed to create GBM surface for plane");
return false;
}
plane->egl = wlr_egl_create_surface(&renderer->egl, plane->gbm);
if (plane->egl == EGL_NO_SURFACE) {
wlr_log(L_ERROR, "Failed to create EGL surface for plane");
return false;
}
return true;
}
static void wlr_drm_plane_renderer_free(struct wlr_drm_renderer *renderer,
struct wlr_drm_plane *plane) {
2017-08-06 22:15:05 +00:00
if (!renderer || !plane) {
return;
2017-08-06 22:15:05 +00:00
}
2017-08-06 22:15:05 +00:00
if (plane->front) {
gbm_surface_release_buffer(plane->gbm, plane->front);
2017-08-06 22:15:05 +00:00
}
if (plane->back) {
gbm_surface_release_buffer(plane->gbm, plane->back);
2017-08-06 22:15:05 +00:00
}
2017-08-06 22:15:05 +00:00
if (plane->egl) {
eglDestroySurface(renderer->egl.display, plane->egl);
2017-08-06 22:15:05 +00:00
}
if (plane->gbm) {
gbm_surface_destroy(plane->gbm);
2017-08-06 22:15:05 +00:00
}
2017-08-06 22:15:05 +00:00
if (plane->wlr_surf) {
2017-08-06 09:38:40 +00:00
wlr_surface_destroy(plane->wlr_surf);
2017-08-06 22:15:05 +00:00
}
if (plane->wlr_rend) {
2017-08-06 09:38:40 +00:00
wlr_renderer_destroy(plane->wlr_rend);
2017-08-06 22:15:05 +00:00
}
2017-08-06 09:38:40 +00:00
plane->width = 0;
plane->height = 0;
plane->egl = EGL_NO_SURFACE;
plane->gbm = NULL;
plane->front = NULL;
plane->back = NULL;
2017-08-06 09:38:40 +00:00
plane->wlr_rend = NULL;
plane->wlr_surf = NULL;
}
static void free_fb(struct gbm_bo *bo, void *data) {
2017-08-05 07:49:34 +00:00
uint32_t id = (uintptr_t)data;
2017-05-01 03:20:48 +00:00
2017-08-05 07:49:34 +00:00
if (id) {
2017-08-05 05:27:59 +00:00
struct gbm_device *gbm = gbm_bo_get_device(bo);
2017-08-05 07:49:34 +00:00
drmModeRmFB(gbm_device_get_fd(gbm), id);
}
2017-05-01 03:20:48 +00:00
}
2017-08-05 05:27:59 +00:00
static uint32_t get_fb_for_bo(struct gbm_bo *bo) {
2017-08-05 07:49:34 +00:00
uint32_t id = (uintptr_t)gbm_bo_get_user_data(bo);
2017-08-06 22:15:05 +00:00
if (id) {
2017-08-05 07:49:34 +00:00
return id;
2017-08-06 22:15:05 +00:00
}
2017-05-01 03:20:48 +00:00
2017-08-05 07:49:34 +00:00
struct gbm_device *gbm = gbm_bo_get_device(bo);
drmModeAddFB(gbm_device_get_fd(gbm), gbm_bo_get_width(bo), gbm_bo_get_height(bo),
24, 32, gbm_bo_get_stride(bo), gbm_bo_get_handle(bo).u32, &id);
2017-05-01 03:20:48 +00:00
2017-08-05 07:49:34 +00:00
gbm_bo_set_user_data(bo, (void *)(uintptr_t)id, free_fb);
2017-05-01 03:20:48 +00:00
2017-08-05 07:49:34 +00:00
return id;
}
2017-08-05 05:27:59 +00:00
2017-08-05 07:49:34 +00:00
static void wlr_drm_plane_make_current(struct wlr_drm_renderer *renderer,
struct wlr_drm_plane *plane) {
eglMakeCurrent(renderer->egl.display, plane->egl, plane->egl,
renderer->egl.context);
}
2017-05-01 03:20:48 +00:00
2017-08-05 07:49:34 +00:00
static void wlr_drm_plane_swap_buffers(struct wlr_drm_renderer *renderer,
struct wlr_drm_plane *plane) {
2017-08-06 22:15:05 +00:00
if (plane->front) {
2017-08-05 07:49:34 +00:00
gbm_surface_release_buffer(plane->gbm, plane->front);
2017-08-06 22:15:05 +00:00
}
2017-08-05 07:49:34 +00:00
eglSwapBuffers(renderer->egl.display, plane->egl);
2017-05-01 03:20:48 +00:00
2017-08-05 07:49:34 +00:00
plane->front = plane->back;
plane->back = gbm_surface_lock_front_buffer(plane->gbm);
2017-05-01 03:20:48 +00:00
}
2017-06-26 05:34:15 +00:00
static void wlr_drm_output_make_current(struct wlr_output_state *output) {
2017-08-05 07:49:34 +00:00
wlr_drm_plane_make_current(output->renderer, output->crtc->primary);
2017-05-03 10:40:19 +00:00
}
2017-06-26 05:34:15 +00:00
static void wlr_drm_output_swap_buffers(struct wlr_output_state *output) {
2017-05-31 19:15:42 +00:00
struct wlr_drm_renderer *renderer = output->renderer;
2017-08-05 05:27:59 +00:00
struct wlr_drm_crtc *crtc = output->crtc;
struct wlr_drm_plane *plane = crtc->primary;
2017-05-03 10:40:19 +00:00
2017-08-05 07:49:34 +00:00
wlr_drm_plane_swap_buffers(renderer, plane);
uint32_t fb_id = get_fb_for_bo(plane->back);
2017-08-05 05:27:59 +00:00
drmModePageFlip(renderer->fd, crtc->id, fb_id, DRM_MODE_PAGE_FLIP_EVENT, output);
2017-05-31 19:15:42 +00:00
output->pageflip_pending = true;
2017-06-21 01:31:29 +00:00
}
void wlr_drm_output_start_renderer(struct wlr_output_state *output) {
2017-07-20 11:26:53 +00:00
if (output->state != WLR_DRM_OUTPUT_CONNECTED) {
return;
2017-05-02 01:00:25 +00:00
}
2017-05-01 03:20:48 +00:00
struct wlr_drm_renderer *renderer = output->renderer;
2017-07-20 11:26:53 +00:00
struct wlr_output_mode *mode = output->base->current_mode;
2017-08-05 05:27:59 +00:00
struct wlr_drm_crtc *crtc = output->crtc;
struct wlr_drm_plane *plane = crtc->primary;
2017-05-01 03:20:48 +00:00
2017-08-05 07:49:34 +00:00
struct gbm_bo *bo = plane->front;
2017-08-05 05:27:59 +00:00
if (!bo) {
2017-08-05 07:49:34 +00:00
// Render a black frame to start the rendering loop
wlr_drm_plane_make_current(renderer, plane);
glViewport(0, 0, plane->width, plane->height);
glClearColor(0.0, 0.0, 0.0, 1.0);
glClear(GL_COLOR_BUFFER_BIT);
wlr_drm_plane_swap_buffers(renderer, plane);
bo = plane->back;
2017-08-05 05:27:59 +00:00
}
2017-05-01 03:20:48 +00:00
2017-08-05 05:27:59 +00:00
uint32_t fb_id = get_fb_for_bo(bo);
drmModeSetCrtc(renderer->fd, crtc->id, fb_id, 0, 0,
&output->connector, 1, &mode->state->mode);
drmModePageFlip(renderer->fd, crtc->id, fb_id, DRM_MODE_PAGE_FLIP_EVENT, output);
output->pageflip_pending = true;
}
static void wlr_drm_output_enable(struct wlr_output_state *output, bool enable) {
struct wlr_backend_state *state =
wl_container_of(output->renderer, state, renderer);
2017-07-20 11:26:53 +00:00
if (output->state != WLR_DRM_OUTPUT_CONNECTED) {
return;
}
if (enable) {
drmModeConnectorSetProperty(state->fd, output->connector, output->props.dpms,
DRM_MODE_DPMS_ON);
wlr_drm_output_start_renderer(output);
} else {
drmModeConnectorSetProperty(state->fd, output->connector, output->props.dpms,
2017-08-05 05:56:22 +00:00
DRM_MODE_DPMS_OFF);
2017-07-29 10:14:29 +00:00
}
}
2017-07-30 22:04:34 +00:00
static void realloc_planes(struct wlr_backend_state *drm, const uint32_t *crtc_in) {
2017-08-05 05:27:59 +00:00
// overlay, primary, cursor
for (int type = 0; type < 3; ++type) {
2017-08-06 22:15:05 +00:00
if (drm->num_type_planes[type] == 0) {
2017-07-30 22:04:34 +00:00
continue;
2017-08-06 22:15:05 +00:00
}
2017-05-07 16:26:48 +00:00
2017-08-05 05:27:59 +00:00
uint32_t possible[drm->num_type_planes[type]];
2017-07-29 10:14:29 +00:00
uint32_t crtc[drm->num_crtcs];
2017-07-30 22:04:34 +00:00
uint32_t crtc_res[drm->num_crtcs];
2017-05-07 16:26:48 +00:00
2017-08-06 22:15:05 +00:00
for (size_t i = 0; i < drm->num_type_planes[type]; ++i) {
2017-08-05 05:27:59 +00:00
possible[i] = drm->type_planes[type][i].possible_crtcs;
2017-08-06 22:15:05 +00:00
}
2017-05-07 16:26:48 +00:00
2017-08-05 05:27:59 +00:00
for (size_t i = 0; i < drm->num_crtcs; ++i) {
2017-08-06 22:15:05 +00:00
if (crtc_in[i] == UNMATCHED) {
2017-08-05 05:27:59 +00:00
crtc[i] = SKIP;
2017-08-06 22:15:05 +00:00
} else if (drm->crtcs[i].planes[type]) {
2017-08-05 05:27:59 +00:00
crtc[i] = drm->crtcs[i].planes[type] - drm->type_planes[type];
2017-08-06 22:15:05 +00:00
} else {
2017-08-05 05:27:59 +00:00
crtc[i] = UNMATCHED;
2017-08-06 22:15:05 +00:00
}
2017-07-30 22:04:34 +00:00
}
2017-08-05 05:27:59 +00:00
match_obj(drm->num_type_planes[type], possible, drm->num_crtcs, crtc, crtc_res);
for (size_t i = 0; i < drm->num_crtcs; ++i) {
2017-08-06 22:15:05 +00:00
if (crtc_res[i] == UNMATCHED || crtc_res[i] == SKIP) {
2017-08-05 05:27:59 +00:00
continue;
2017-08-06 22:15:05 +00:00
}
2017-07-29 10:14:29 +00:00
2017-08-05 05:27:59 +00:00
struct wlr_drm_crtc *c = &drm->crtcs[i];
struct wlr_drm_plane **old = &c->planes[type];
struct wlr_drm_plane *new = &drm->type_planes[type][crtc_res[i]];
if (*old != new) {
wlr_drm_plane_renderer_free(&drm->renderer, *old);
wlr_drm_plane_renderer_free(&drm->renderer, new);
*old = new;
}
2017-05-07 16:26:48 +00:00
}
2017-08-05 05:27:59 +00:00
}
2017-07-30 22:04:34 +00:00
}
2017-05-07 16:26:48 +00:00
2017-07-30 22:04:34 +00:00
static void realloc_crtcs(struct wlr_backend_state *drm, struct wlr_output_state *output) {
uint32_t crtc[drm->num_crtcs];
uint32_t crtc_res[drm->num_crtcs];
uint32_t possible_crtc[drm->outputs->length];
2017-05-07 16:26:48 +00:00
2017-07-30 22:04:34 +00:00
for (size_t i = 0; i < drm->num_crtcs; ++i) {
crtc[i] = UNMATCHED;
}
2017-07-29 10:14:29 +00:00
2017-07-30 22:04:34 +00:00
memset(possible_crtc, 0, sizeof(possible_crtc));
2017-07-29 10:14:29 +00:00
2017-07-30 22:04:34 +00:00
size_t index;
for (size_t i = 0; i < drm->outputs->length; ++i) {
struct wlr_output_state *o = drm->outputs->items[i];
2017-08-06 22:15:05 +00:00
if (o == output) {
2017-07-30 22:04:34 +00:00
index = i;
2017-08-06 22:15:05 +00:00
}
2017-07-29 10:14:29 +00:00
2017-08-06 22:15:05 +00:00
if (o->state != WLR_DRM_OUTPUT_CONNECTED) {
2017-07-30 22:04:34 +00:00
continue;
2017-08-06 22:15:05 +00:00
}
2017-07-29 10:14:29 +00:00
2017-07-30 22:04:34 +00:00
possible_crtc[i] = o->possible_crtc;
2017-08-05 05:27:59 +00:00
crtc[o->crtc - drm->crtcs] = i;
2017-07-30 22:04:34 +00:00
}
2017-07-29 10:14:29 +00:00
2017-07-30 22:04:34 +00:00
possible_crtc[index] = output->possible_crtc;
match_obj(drm->outputs->length, possible_crtc, drm->num_crtcs, crtc, crtc_res);
2017-07-29 10:14:29 +00:00
bool matched = false;
for (size_t i = 0; i < drm->num_crtcs; ++i) {
// We don't want any of the current monitors to be deactivated.
2017-08-06 22:15:05 +00:00
if (crtc[i] != UNMATCHED && crtc_res[i] == UNMATCHED) {
return;
2017-08-06 22:15:05 +00:00
}
if (crtc_res[i] == index) {
matched = true;
2017-08-06 22:15:05 +00:00
}
}
// There is no point doing anything if this monitor doesn't get activated
2017-08-06 22:15:05 +00:00
if (!matched) {
return;
2017-08-06 22:15:05 +00:00
}
2017-07-29 10:14:29 +00:00
2017-07-30 22:04:34 +00:00
for (size_t i = 0; i < drm->num_crtcs; ++i) {
2017-08-06 22:15:05 +00:00
if (crtc_res[i] == UNMATCHED) {
2017-07-30 22:04:34 +00:00
continue;
2017-08-06 22:15:05 +00:00
}
2017-07-29 10:14:29 +00:00
2017-07-30 22:04:34 +00:00
if (crtc_res[i] != crtc[i]) {
struct wlr_output_state *o = drm->outputs->items[crtc_res[i]];
2017-08-05 05:27:59 +00:00
o->crtc = &drm->crtcs[i];
2017-07-30 22:04:34 +00:00
}
}
2017-07-29 10:14:29 +00:00
realloc_planes(drm, crtc_res);
2017-07-30 22:04:34 +00:00
}
static bool wlr_drm_output_set_mode(struct wlr_output_state *output,
struct wlr_output_mode *mode) {
struct wlr_backend_state *drm = wl_container_of(output->renderer, drm, renderer);
wlr_log(L_INFO, "Modesetting '%s' with '%ux%u@%u mHz'", output->base->name,
mode->width, mode->height, mode->refresh);
drmModeConnector *conn = drmModeGetConnector(drm->fd, output->connector);
if (!conn) {
wlr_log_errno(L_ERROR, "Failed to get DRM connector");
goto error_output;
}
if (conn->connection != DRM_MODE_CONNECTED || conn->count_modes == 0) {
wlr_log(L_ERROR, "%s is not connected", output->base->name);
goto error_output;
}
drmModeEncoder *enc = NULL;
for (int i = 0; !enc && i < conn->count_encoders; ++i) {
enc = drmModeGetEncoder(drm->fd, conn->encoders[i]);
}
if (!enc) {
wlr_log(L_ERROR, "Failed to get DRM encoder");
goto error_conn;
}
output->possible_crtc = enc->possible_crtcs;
realloc_crtcs(drm, output);
2017-08-05 05:27:59 +00:00
if (!output->crtc) {
2017-07-30 22:04:34 +00:00
wlr_log(L_ERROR, "Unable to match %s with a CRTC", output->base->name);
goto error_enc;
}
2017-08-05 05:27:59 +00:00
struct wlr_drm_crtc *crtc = output->crtc;
2017-07-30 22:04:34 +00:00
wlr_log(L_DEBUG, "%s: crtc=%ju ovr=%jd pri=%jd cur=%jd", output->base->name,
crtc - drm->crtcs,
crtc->overlay ? crtc->overlay - drm->overlay_planes : -1,
crtc->primary ? crtc->primary - drm->primary_planes : -1,
crtc->cursor ? crtc->cursor - drm->cursor_planes : -1);
2017-05-07 16:26:48 +00:00
2017-07-20 11:26:53 +00:00
output->state = WLR_DRM_OUTPUT_CONNECTED;
output->width = output->base->width = mode->width;
output->height = output->base->height = mode->height;
output->base->current_mode = mode;
wl_signal_emit(&output->base->events.resolution, output->base);
2017-05-07 16:26:48 +00:00
// Since realloc_crtcs can deallocate planes on OTHER outputs,
// we actually need to reinitalise all of them
for (size_t i = 0; i < drm->outputs->length; ++i) {
struct wlr_output_state *output = drm->outputs->items[i];
struct wlr_output_mode *mode = output->base->current_mode;
struct wlr_drm_crtc *crtc = output->crtc;
2017-08-06 22:15:05 +00:00
if (output->state != WLR_DRM_OUTPUT_CONNECTED) {
continue;
2017-08-06 22:15:05 +00:00
}
2017-05-07 16:26:48 +00:00
if (!wlr_drm_plane_renderer_init(&drm->renderer, crtc->primary,
2017-08-06 09:38:40 +00:00
mode->width, mode->height, GBM_BO_USE_SCANOUT)) {
wlr_log(L_ERROR, "Failed to initalise renderer for plane");
goto error_enc;
}
wlr_drm_output_start_renderer(output);
}
2017-08-05 05:27:59 +00:00
2017-07-30 22:04:34 +00:00
drmModeFreeEncoder(enc);
2017-05-07 16:26:48 +00:00
drmModeFreeConnector(conn);
return true;
2017-07-30 22:04:34 +00:00
error_enc:
drmModeFreeEncoder(enc);
error_conn:
2017-05-07 16:26:48 +00:00
drmModeFreeConnector(conn);
2017-07-30 22:04:34 +00:00
error_output:
wlr_drm_output_cleanup(output, false);
2017-05-07 16:26:48 +00:00
return false;
}
static void wlr_drm_output_transform(struct wlr_output_state *output,
enum wl_output_transform transform) {
2017-07-20 11:26:53 +00:00
output->base->transform = transform;
}
2017-08-06 09:38:40 +00:00
bool wlr_drm_crtc_set_cursor(struct wlr_backend_state *drm, struct wlr_drm_crtc *crtc) {
2017-08-06 22:15:05 +00:00
if (!crtc || !crtc->cursor || !crtc->cursor->gbm) {
2017-06-16 19:38:34 +00:00
return true;
2017-08-06 22:15:05 +00:00
}
2017-06-26 07:32:36 +00:00
2017-08-06 09:38:40 +00:00
struct wlr_drm_plane *plane = crtc->cursor;
uint32_t bo_handle = gbm_bo_get_handle(plane->back).u32;
if (drmModeSetCursor(drm->fd, crtc->id, bo_handle, plane->width, plane->height)) {
wlr_log_errno(L_ERROR, "Failed to set hardware cursor");
return false;
}
2017-08-06 09:38:40 +00:00
return true;
}
2017-06-26 07:32:36 +00:00
2017-08-06 09:38:40 +00:00
static bool wlr_drm_output_set_cursor(struct wlr_output_state *output,
const uint8_t *buf, int32_t stride, uint32_t width, uint32_t height) {
struct wlr_backend_state *drm = wl_container_of(output->renderer, drm, renderer);
struct wlr_drm_renderer *renderer = output->renderer;
struct wlr_drm_crtc *crtc = output->crtc;
struct wlr_drm_plane *plane = crtc->cursor;
2017-06-26 07:32:36 +00:00
2017-08-06 09:38:40 +00:00
if (!buf) {
drmModeSetCursor(drm->fd, crtc->id, 0, 0, 0);
return true;
2017-06-26 07:32:36 +00:00
}
2017-08-06 09:38:40 +00:00
if (!plane) {
plane = calloc(1, sizeof(*plane));
if (!plane) {
wlr_log_errno(L_ERROR, "Allocation failed");
return false;
2017-06-26 07:32:36 +00:00
}
2017-08-06 09:38:40 +00:00
crtc->cursor = plane;
}
2017-06-26 07:32:36 +00:00
2017-08-06 09:38:40 +00:00
if (!plane->gbm) {
int ret;
uint64_t w, h;
ret = drmGetCap(drm->fd, DRM_CAP_CURSOR_WIDTH, &w);
w = ret ? 64 : w;
ret = drmGetCap(drm->fd, DRM_CAP_CURSOR_HEIGHT, &h);
h = ret ? 64 : h;
if (width > w || height > h) {
wlr_log(L_INFO, "Cursor too large (max %dx%d)", (int)w, (int)h);
return false;
}
2017-06-26 07:32:36 +00:00
2017-08-06 09:38:40 +00:00
if (!wlr_drm_plane_renderer_init(renderer, plane, w, h, GBM_BO_USE_CURSOR)) {
wlr_log(L_ERROR, "Cannot allocate cursor resources");
2017-06-26 07:32:36 +00:00
return false;
}
2017-08-06 09:38:40 +00:00
wlr_matrix_surface(plane->matrix, plane->width, plane->height,
output->base->transform);
2017-06-26 07:32:36 +00:00
2017-08-06 09:38:40 +00:00
plane->wlr_rend = wlr_gles2_renderer_init();
2017-08-06 22:15:05 +00:00
if (!plane->wlr_rend) {
2017-08-06 09:38:40 +00:00
return false;
2017-08-06 22:15:05 +00:00
}
2017-06-26 07:32:36 +00:00
2017-08-06 09:38:40 +00:00
plane->wlr_surf = wlr_render_surface_init(plane->wlr_rend);
2017-08-06 22:15:05 +00:00
if (!plane->wlr_surf) {
2017-08-06 09:38:40 +00:00
return false;
2017-08-06 22:15:05 +00:00
}
2017-06-16 19:38:34 +00:00
}
2017-06-26 07:32:36 +00:00
2017-08-06 09:38:40 +00:00
wlr_drm_plane_make_current(renderer, plane);
2017-06-26 05:34:15 +00:00
2017-08-06 09:38:40 +00:00
wlr_surface_attach_pixels(plane->wlr_surf, WL_SHM_FORMAT_ARGB8888,
stride, width, height, buf);
2017-06-26 05:34:15 +00:00
2017-08-06 09:38:40 +00:00
glViewport(0, 0, plane->width, plane->height);
glClearColor(0, 0, 0, 0);
glClear(GL_COLOR_BUFFER_BIT);
float matrix[16];
wlr_surface_get_matrix(plane->wlr_surf, &matrix, &plane->matrix, 0, 0);
wlr_render_with_matrix(plane->wlr_rend, plane->wlr_surf, &matrix);
wlr_drm_plane_swap_buffers(renderer, plane);
return wlr_drm_crtc_set_cursor(drm, crtc);
2017-06-16 19:38:34 +00:00
}
static bool wlr_drm_output_move_cursor(struct wlr_output_state *output,
int x, int y) {
2017-08-06 09:38:40 +00:00
struct wlr_backend_state *drm =
wl_container_of(output->renderer, drm, renderer);
return !drmModeMoveCursor(drm->fd, output->crtc->id, x, y);
2017-06-16 19:38:34 +00:00
}
2017-05-07 16:26:48 +00:00
static void wlr_drm_output_destroy(struct wlr_output_state *output) {
wlr_drm_output_cleanup(output, true);
free(output);
}
static struct wlr_output_impl output_impl = {
.enable = wlr_drm_output_enable,
.set_mode = wlr_drm_output_set_mode,
.transform = wlr_drm_output_transform,
2017-06-16 19:38:34 +00:00
.set_cursor = wlr_drm_output_set_cursor,
.move_cursor = wlr_drm_output_move_cursor,
2017-05-07 16:26:48 +00:00
.destroy = wlr_drm_output_destroy,
2017-06-26 05:34:15 +00:00
.make_current = wlr_drm_output_make_current,
.swap_buffers = wlr_drm_output_swap_buffers,
2017-05-07 16:26:48 +00:00
};
static int find_id(const void *item, const void *cmp_to) {
const struct wlr_output_state *output = item;
const uint32_t *id = cmp_to;
if (output->connector < *id) {
return -1;
} else if (output->connector > *id) {
return 1;
} else {
return 0;
}
}
2017-07-20 11:26:53 +00:00
static const int32_t subpixel_map[] = {
[DRM_MODE_SUBPIXEL_UNKNOWN] = WL_OUTPUT_SUBPIXEL_UNKNOWN,
[DRM_MODE_SUBPIXEL_HORIZONTAL_RGB] = WL_OUTPUT_SUBPIXEL_HORIZONTAL_RGB,
[DRM_MODE_SUBPIXEL_HORIZONTAL_BGR] = WL_OUTPUT_SUBPIXEL_HORIZONTAL_BGR,
[DRM_MODE_SUBPIXEL_VERTICAL_RGB] = WL_OUTPUT_SUBPIXEL_VERTICAL_RGB,
[DRM_MODE_SUBPIXEL_VERTICAL_BGR] = WL_OUTPUT_SUBPIXEL_VERTICAL_BGR,
[DRM_MODE_SUBPIXEL_NONE] = WL_OUTPUT_SUBPIXEL_NONE,
};
2017-05-13 08:37:15 +00:00
2017-07-20 11:26:53 +00:00
void wlr_drm_scan_connectors(struct wlr_backend_state *drm) {
wlr_log(L_INFO, "Scanning DRM connectors");
2017-07-20 11:26:53 +00:00
drmModeRes *res = drmModeGetResources(drm->fd);
2017-05-03 10:40:19 +00:00
if (!res) {
2017-07-20 11:26:53 +00:00
wlr_log_errno(L_ERROR, "Failed to get DRM resources");
2017-05-03 10:40:19 +00:00
return;
}
2017-05-01 03:20:48 +00:00
2017-05-03 10:40:19 +00:00
for (int i = 0; i < res->count_connectors; ++i) {
2017-07-20 11:26:53 +00:00
drmModeConnector *conn = drmModeGetConnector(drm->fd,
res->connectors[i]);
2017-05-03 10:40:19 +00:00
if (!conn) {
2017-07-20 11:26:53 +00:00
wlr_log_errno(L_ERROR, "Failed to get DRM connector");
2017-05-03 10:40:19 +00:00
continue;
2017-05-01 03:20:48 +00:00
}
2017-05-07 16:26:48 +00:00
struct wlr_output_state *output;
2017-07-20 11:26:53 +00:00
int index = list_seq_find(drm->outputs, find_id, &conn->connector_id);
2017-05-03 10:40:19 +00:00
if (index == -1) {
2017-07-20 11:26:53 +00:00
output = calloc(1, sizeof(*output));
if (!output) {
wlr_log_errno(L_ERROR, "Allocation failed");
2017-05-07 16:26:48 +00:00
drmModeFreeConnector(conn);
2017-07-20 11:26:53 +00:00
continue;
2017-05-07 16:26:48 +00:00
}
2017-07-20 11:26:53 +00:00
output->base = wlr_output_create(&output_impl, output);
if (!output->base) {
wlr_log_errno(L_ERROR, "Allocation failed");
2017-05-03 10:40:19 +00:00
drmModeFreeConnector(conn);
2017-07-20 11:26:53 +00:00
free(output);
continue;
}
2017-05-03 10:40:19 +00:00
2017-07-20 11:26:53 +00:00
output->renderer = &drm->renderer;
output->state = WLR_DRM_OUTPUT_DISCONNECTED;
output->connector = conn->connector_id;
2017-05-03 10:40:19 +00:00
2017-07-20 11:26:53 +00:00
drmModeEncoder *curr_enc = drmModeGetEncoder(drm->fd, conn->encoder_id);
if (curr_enc) {
2017-07-20 11:26:53 +00:00
output->old_crtc = drmModeGetCrtc(drm->fd, curr_enc->crtc_id);
drmModeFreeEncoder(curr_enc);
}
2017-07-20 11:26:53 +00:00
output->base->phys_width = conn->mmWidth;
output->base->phys_height = conn->mmHeight;
output->base->subpixel = subpixel_map[conn->subpixel];
snprintf(output->base->name, sizeof(output->base->name), "%s-%"PRIu32,
2017-08-05 05:56:22 +00:00
conn_get_name(conn->connector_type),
2017-07-20 11:26:53 +00:00
conn->connector_type_id);
wlr_drm_get_connector_props(drm->fd, output->connector, &output->props);
size_t edid_len = 0;
uint8_t *edid = wlr_drm_get_prop_blob(drm->fd, output->connector,
output->props.edid, &edid_len);
parse_edid(output->base, edid_len, edid);
free(edid);
2017-05-13 08:37:15 +00:00
2017-07-20 11:26:53 +00:00
wlr_output_create_global(output->base, drm->display);
list_add(drm->outputs, output);
wlr_log(L_INFO, "Found display '%s'", output->base->name);
2017-05-03 10:40:19 +00:00
} else {
2017-07-20 11:26:53 +00:00
output = drm->outputs->items[index];
2017-05-01 03:20:48 +00:00
}
2017-07-20 11:26:53 +00:00
if (output->state == WLR_DRM_OUTPUT_DISCONNECTED &&
conn->connection == DRM_MODE_CONNECTED) {
2017-05-01 03:20:48 +00:00
2017-07-20 11:26:53 +00:00
wlr_log(L_INFO, "'%s' connected", output->base->name);
2017-05-03 10:40:19 +00:00
wlr_log(L_INFO, "Detected modes:");
for (int i = 0; i < conn->count_modes; ++i) {
2017-05-07 16:26:48 +00:00
struct wlr_output_mode_state *_state = calloc(1,
sizeof(struct wlr_output_mode_state));
_state->mode = conn->modes[i];
struct wlr_output_mode *mode = calloc(1,
sizeof(struct wlr_output_mode));
mode->width = _state->mode.hdisplay;
mode->height = _state->mode.vdisplay;
2017-05-13 10:27:25 +00:00
mode->refresh = calculate_refresh_rate(&_state->mode);
2017-05-07 16:26:48 +00:00
mode->state = _state;
2017-05-03 10:40:19 +00:00
2017-05-13 13:26:43 +00:00
wlr_log(L_INFO, " %"PRId32"@%"PRId32"@%"PRId32,
2017-05-13 10:27:25 +00:00
mode->width, mode->height, mode->refresh);
2017-05-01 03:20:48 +00:00
2017-07-20 11:26:53 +00:00
list_add(output->base->modes, mode);
}
2017-05-01 03:20:48 +00:00
2017-07-20 11:26:53 +00:00
output->state = WLR_DRM_OUTPUT_NEEDS_MODESET;
wlr_log(L_INFO, "Sending modesetting signal for '%s'", output->base->name);
wl_signal_emit(&drm->base->events.output_add, output->base);
} else if (output->state == WLR_DRM_OUTPUT_CONNECTED &&
conn->connection != DRM_MODE_CONNECTED) {
2017-05-01 03:20:48 +00:00
2017-07-20 11:26:53 +00:00
wlr_log(L_INFO, "'%s' disconnected", output->base->name);
2017-05-07 16:26:48 +00:00
wlr_drm_output_cleanup(output, false);
2017-05-01 03:20:48 +00:00
}
2017-05-07 16:26:48 +00:00
drmModeFreeConnector(conn);
2017-05-01 03:20:48 +00:00
}
drmModeFreeResources(res);
}
2017-05-07 14:00:23 +00:00
static void page_flip_handler(int fd, unsigned seq,
unsigned tv_sec, unsigned tv_usec, void *user) {
2017-05-07 16:26:48 +00:00
struct wlr_output_state *output = user;
struct wlr_backend_state *drm =
wl_container_of(output->renderer, drm, renderer);
2017-05-03 10:40:19 +00:00
2017-08-05 05:27:59 +00:00
struct wlr_drm_plane *plane = output->crtc->primary;
if (plane->front) {
gbm_surface_release_buffer(plane->gbm, plane->front);
plane->front = NULL;
}
2017-05-07 16:26:48 +00:00
output->pageflip_pending = false;
if (output->state == WLR_DRM_OUTPUT_CONNECTED && drm->session->active) {
2017-07-20 11:26:53 +00:00
wl_signal_emit(&output->base->events.frame, output->base);
}
2017-05-03 10:40:19 +00:00
}
2017-05-01 03:20:48 +00:00
2017-05-03 10:40:19 +00:00
int wlr_drm_event(int fd, uint32_t mask, void *data) {
drmEventContext event = {
.version = DRM_EVENT_CONTEXT_VERSION,
.page_flip_handler = page_flip_handler,
};
2017-05-01 05:49:18 +00:00
2017-05-03 10:40:19 +00:00
drmHandleEvent(fd, &event);
return 1;
}
2017-05-02 01:00:25 +00:00
2017-05-07 16:26:48 +00:00
static void restore_output(struct wlr_output_state *output, int fd) {
// Wait for any pending pageflips to finish
2017-05-07 16:26:48 +00:00
while (output->pageflip_pending) {
wlr_drm_event(fd, 0, NULL);
}
2017-05-07 16:26:48 +00:00
drmModeCrtc *crtc = output->old_crtc;
2017-05-03 10:40:19 +00:00
if (!crtc) {
2017-05-02 01:00:25 +00:00
return;
}
2017-05-02 01:00:25 +00:00
2017-05-03 10:40:19 +00:00
drmModeSetCrtc(fd, crtc->crtc_id, crtc->buffer_id, crtc->x, crtc->y,
2017-05-07 16:26:48 +00:00
&output->connector, 1, &crtc->mode);
2017-05-03 10:40:19 +00:00
drmModeFreeCrtc(crtc);
2017-05-01 03:20:48 +00:00
}
2017-05-07 16:26:48 +00:00
void wlr_drm_output_cleanup(struct wlr_output_state *output, bool restore) {
if (!output) {
2017-05-03 10:40:19 +00:00
return;
}
2017-05-01 03:20:48 +00:00
2017-05-07 16:26:48 +00:00
struct wlr_drm_renderer *renderer = output->renderer;
struct wlr_backend_state *drm = wl_container_of(renderer, drm, renderer);
2017-05-01 03:20:48 +00:00
2017-05-07 16:26:48 +00:00
switch (output->state) {
2017-07-20 11:26:53 +00:00
case WLR_DRM_OUTPUT_CONNECTED:
output->state = WLR_DRM_OUTPUT_DISCONNECTED;
2017-05-31 20:17:04 +00:00
if (restore) {
restore_output(output, renderer->fd);
restore = false;
}
2017-07-29 10:14:29 +00:00
2017-08-06 09:38:40 +00:00
struct wlr_drm_crtc *crtc = output->crtc;
for (int i = 0; i < 3; ++i) {
wlr_drm_plane_renderer_free(renderer, crtc->planes[i]);
if (crtc->planes[i] && crtc->planes[i]->id == 0) {
free(crtc->planes[i]);
crtc->planes[i] = NULL;
}
}
2017-08-05 05:27:59 +00:00
output->crtc = NULL;
2017-07-29 10:14:29 +00:00
output->possible_crtc = 0;
2017-05-03 10:40:19 +00:00
/* Fallthrough */
2017-07-20 11:26:53 +00:00
case WLR_DRM_OUTPUT_NEEDS_MODESET:
output->state = WLR_DRM_OUTPUT_DISCONNECTED;
2017-05-03 10:40:19 +00:00
if (restore) {
2017-05-07 16:26:48 +00:00
restore_output(output, renderer->fd);
2017-05-03 10:40:19 +00:00
}
2017-07-20 11:26:53 +00:00
wlr_log(L_INFO, "Emmiting destruction signal for '%s'", output->base->name);
wl_signal_emit(&drm->base->events.output_remove, output->base);
2017-05-03 10:40:19 +00:00
break;
2017-07-20 11:26:53 +00:00
case WLR_DRM_OUTPUT_DISCONNECTED:
2017-05-03 10:40:19 +00:00
break;
}
2017-05-13 08:37:15 +00:00
}