2019-06-21 08:06:21 +02:00
|
|
|
#define _XOPEN_SOURCE 700
|
2017-05-01 05:20:48 +02:00
|
|
|
#include <assert.h>
|
2019-01-29 12:04:12 +01:00
|
|
|
#include <drm_fourcc.h>
|
2017-05-01 05:20:48 +02:00
|
|
|
#include <drm_mode.h>
|
2018-02-12 21:29:23 +01:00
|
|
|
#include <errno.h>
|
2021-05-26 01:23:10 +02:00
|
|
|
#include <fcntl.h>
|
2018-02-12 21:29:23 +01:00
|
|
|
#include <inttypes.h>
|
2019-08-09 15:20:52 +02:00
|
|
|
#include <stdint.h>
|
2018-02-12 21:29:23 +01:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
2019-06-21 08:06:21 +02:00
|
|
|
#include <strings.h>
|
2018-02-12 21:29:23 +01:00
|
|
|
#include <time.h>
|
2019-07-27 10:53:54 +02:00
|
|
|
#include <wayland-server-core.h>
|
2018-02-06 22:45:37 +01:00
|
|
|
#include <wayland-util.h>
|
2017-06-05 01:30:37 +02:00
|
|
|
#include <wlr/backend/interface.h>
|
2017-06-21 16:27:45 +02:00
|
|
|
#include <wlr/interfaces/wlr_output.h>
|
2018-03-19 23:16:29 +01:00
|
|
|
#include <wlr/render/wlr_renderer.h>
|
2018-03-15 09:11:03 +01:00
|
|
|
#include <wlr/types/wlr_matrix.h>
|
2021-07-01 22:36:01 +02:00
|
|
|
#include <wlr/util/box.h>
|
2018-02-12 21:29:23 +01:00
|
|
|
#include <wlr/util/log.h>
|
|
|
|
#include <xf86drm.h>
|
|
|
|
#include <xf86drmMode.h>
|
2019-10-26 22:35:51 +02:00
|
|
|
#include "backend/drm/cvt.h"
|
2017-09-30 08:03:34 +02:00
|
|
|
#include "backend/drm/drm.h"
|
2017-09-30 08:11:41 +02:00
|
|
|
#include "backend/drm/iface.h"
|
2017-09-30 08:03:34 +02:00
|
|
|
#include "backend/drm/util.h"
|
2021-03-31 17:14:33 +02:00
|
|
|
#include "render/pixel_format.h"
|
2020-12-04 16:41:16 +01:00
|
|
|
#include "render/drm_format_set.h"
|
2020-07-27 18:37:40 +02:00
|
|
|
#include "render/swapchain.h"
|
2020-12-04 16:41:16 +01:00
|
|
|
#include "render/wlr_renderer.h"
|
2018-02-12 21:29:23 +01:00
|
|
|
#include "util/signal.h"
|
2017-05-01 05:20:48 +02:00
|
|
|
|
2021-06-18 12:15:08 +02:00
|
|
|
static const uint32_t SUPPORTED_OUTPUT_STATE =
|
|
|
|
WLR_OUTPUT_STATE_BACKEND_OPTIONAL |
|
|
|
|
WLR_OUTPUT_STATE_BUFFER |
|
|
|
|
WLR_OUTPUT_STATE_MODE |
|
|
|
|
WLR_OUTPUT_STATE_ENABLED |
|
|
|
|
WLR_OUTPUT_STATE_GAMMA_LUT;
|
|
|
|
|
2018-04-26 00:24:58 +02:00
|
|
|
bool check_drm_features(struct wlr_drm_backend *drm) {
|
2020-12-02 10:37:07 +01:00
|
|
|
if (drmGetCap(drm->fd, DRM_CAP_CURSOR_WIDTH, &drm->cursor_width)) {
|
|
|
|
drm->cursor_width = 64;
|
|
|
|
}
|
|
|
|
if (drmGetCap(drm->fd, DRM_CAP_CURSOR_HEIGHT, &drm->cursor_height)) {
|
|
|
|
drm->cursor_height = 64;
|
|
|
|
}
|
|
|
|
|
2018-10-01 22:44:33 +02:00
|
|
|
uint64_t cap;
|
2021-04-08 22:21:50 +02:00
|
|
|
if (drmGetCap(drm->fd, DRM_CAP_PRIME, &cap) ||
|
|
|
|
!(cap & DRM_PRIME_CAP_IMPORT)) {
|
|
|
|
wlr_log(WLR_ERROR, "PRIME import not supported");
|
|
|
|
return false;
|
|
|
|
}
|
2018-08-05 08:25:25 +02:00
|
|
|
|
2021-04-08 22:21:50 +02:00
|
|
|
if (drm->parent) {
|
2018-08-05 08:25:25 +02:00
|
|
|
if (drmGetCap(drm->parent->fd, DRM_CAP_PRIME, &cap) ||
|
|
|
|
!(cap & DRM_PRIME_CAP_EXPORT)) {
|
|
|
|
wlr_log(WLR_ERROR,
|
|
|
|
"PRIME export not supported on primary GPU");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-09-30 11:22:26 +02:00
|
|
|
if (drmSetClientCap(drm->fd, DRM_CLIENT_CAP_UNIVERSAL_PLANES, 1)) {
|
2018-07-09 23:49:54 +02:00
|
|
|
wlr_log(WLR_ERROR, "DRM universal planes unsupported");
|
2017-08-05 08:15:39 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2019-06-26 17:14:31 +02:00
|
|
|
if (drmGetCap(drm->fd, DRM_CAP_CRTC_IN_VBLANK_EVENT, &cap) || !cap) {
|
|
|
|
wlr_log(WLR_ERROR, "DRM_CRTC_IN_VBLANK_EVENT unsupported");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2018-05-03 14:05:47 +02:00
|
|
|
const char *no_atomic = getenv("WLR_DRM_NO_ATOMIC");
|
|
|
|
if (no_atomic && strcmp(no_atomic, "1") == 0) {
|
2018-10-01 22:44:33 +02:00
|
|
|
wlr_log(WLR_DEBUG,
|
|
|
|
"WLR_DRM_NO_ATOMIC set, forcing legacy DRM interface");
|
2017-10-02 10:44:33 +02:00
|
|
|
drm->iface = &legacy_iface;
|
2017-09-30 11:22:26 +02:00
|
|
|
} else if (drmSetClientCap(drm->fd, DRM_CLIENT_CAP_ATOMIC, 1)) {
|
2018-10-01 22:44:33 +02:00
|
|
|
wlr_log(WLR_DEBUG,
|
|
|
|
"Atomic modesetting unsupported, using legacy DRM interface");
|
2017-10-02 10:44:33 +02:00
|
|
|
drm->iface = &legacy_iface;
|
2017-08-09 10:43:01 +02:00
|
|
|
} else {
|
2018-07-09 23:49:54 +02:00
|
|
|
wlr_log(WLR_DEBUG, "Using atomic DRM interface");
|
2017-10-02 10:44:33 +02:00
|
|
|
drm->iface = &atomic_iface;
|
2017-08-05 08:15:39 +02:00
|
|
|
}
|
|
|
|
|
2018-10-01 22:44:33 +02:00
|
|
|
int ret = drmGetCap(drm->fd, DRM_CAP_TIMESTAMP_MONOTONIC, &cap);
|
|
|
|
drm->clock = (ret == 0 && cap == 1) ? CLOCK_MONOTONIC : CLOCK_REALTIME;
|
|
|
|
|
2020-12-23 19:49:27 +01:00
|
|
|
const char *no_modifiers = getenv("WLR_DRM_NO_MODIFIERS");
|
|
|
|
if (no_modifiers != NULL && strcmp(no_modifiers, "1") == 0) {
|
|
|
|
wlr_log(WLR_DEBUG, "WLR_DRM_NO_MODIFIERS set, disabling modifiers");
|
|
|
|
} else {
|
|
|
|
ret = drmGetCap(drm->fd, DRM_CAP_ADDFB2_MODIFIERS, &cap);
|
|
|
|
drm->addfb2_modifiers = ret == 0 && cap == 1;
|
2020-12-24 12:29:30 +01:00
|
|
|
wlr_log(WLR_DEBUG, "ADDFB2 modifiers %s",
|
|
|
|
drm->addfb2_modifiers ? "supported" : "unsupported");
|
2020-12-23 19:49:27 +01:00
|
|
|
}
|
2019-05-26 16:38:35 +02:00
|
|
|
|
2017-08-05 08:15:39 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2019-06-21 08:06:21 +02:00
|
|
|
static bool add_plane(struct wlr_drm_backend *drm,
|
2020-12-24 12:34:13 +01:00
|
|
|
struct wlr_drm_crtc *crtc, const drmModePlane *drm_plane,
|
2019-06-21 08:06:21 +02:00
|
|
|
uint32_t type, union wlr_drm_plane_props *props) {
|
|
|
|
assert(!(type == DRM_PLANE_TYPE_PRIMARY && crtc->primary));
|
2020-12-24 12:31:20 +01:00
|
|
|
assert(!(type == DRM_PLANE_TYPE_CURSOR && crtc->cursor));
|
2019-06-21 08:06:21 +02:00
|
|
|
|
|
|
|
struct wlr_drm_plane *p = calloc(1, sizeof(*p));
|
|
|
|
if (!p) {
|
|
|
|
wlr_log_errno(WLR_ERROR, "Allocation failed");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
p->type = type;
|
|
|
|
p->id = drm_plane->plane_id;
|
|
|
|
p->props = *props;
|
|
|
|
|
2021-03-31 17:07:55 +02:00
|
|
|
for (size_t i = 0; i < drm_plane->count_formats; ++i) {
|
|
|
|
// Force a LINEAR layout for the cursor if the driver doesn't support
|
|
|
|
// modifiers
|
2021-11-24 12:17:39 +01:00
|
|
|
wlr_drm_format_set_add(&p->formats, drm_plane->formats[i],
|
|
|
|
DRM_FORMAT_MOD_LINEAR);
|
|
|
|
if (type != DRM_PLANE_TYPE_CURSOR) {
|
|
|
|
wlr_drm_format_set_add(&p->formats, drm_plane->formats[i],
|
|
|
|
DRM_FORMAT_MOD_INVALID);
|
2021-03-31 17:07:55 +02:00
|
|
|
}
|
2019-08-14 20:53:10 +02:00
|
|
|
}
|
|
|
|
|
2020-12-23 19:49:27 +01:00
|
|
|
if (p->props.in_formats && drm->addfb2_modifiers) {
|
2019-06-21 08:06:21 +02:00
|
|
|
uint64_t blob_id;
|
|
|
|
if (!get_drm_prop(drm->fd, p->id, p->props.in_formats, &blob_id)) {
|
|
|
|
wlr_log(WLR_ERROR, "Failed to read IN_FORMATS property");
|
|
|
|
goto error;
|
|
|
|
}
|
|
|
|
|
|
|
|
drmModePropertyBlobRes *blob = drmModeGetPropertyBlob(drm->fd, blob_id);
|
|
|
|
if (!blob) {
|
|
|
|
wlr_log(WLR_ERROR, "Failed to read IN_FORMATS blob");
|
|
|
|
goto error;
|
|
|
|
}
|
|
|
|
|
2021-11-03 16:44:42 +01:00
|
|
|
drmModeFormatModifierIterator iter = {0};
|
|
|
|
while (drmModeFormatModifierBlobIterNext(blob, &iter)) {
|
|
|
|
wlr_drm_format_set_add(&p->formats, iter.fmt, iter.mod);
|
2019-06-21 08:06:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
drmModeFreePropertyBlob(blob);
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (type) {
|
|
|
|
case DRM_PLANE_TYPE_PRIMARY:
|
|
|
|
crtc->primary = p;
|
|
|
|
break;
|
|
|
|
case DRM_PLANE_TYPE_CURSOR:
|
|
|
|
crtc->cursor = p;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
abort();
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
|
|
|
error:
|
|
|
|
free(p);
|
|
|
|
return false;
|
2017-07-20 10:51:59 +02:00
|
|
|
}
|
|
|
|
|
2017-09-30 11:22:26 +02:00
|
|
|
static bool init_planes(struct wlr_drm_backend *drm) {
|
|
|
|
drmModePlaneRes *plane_res = drmModeGetPlaneResources(drm->fd);
|
2017-07-20 10:51:59 +02:00
|
|
|
if (!plane_res) {
|
2018-07-09 23:49:54 +02:00
|
|
|
wlr_log_errno(WLR_ERROR, "Failed to get DRM plane resources");
|
2017-07-20 10:51:59 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2018-07-09 23:49:54 +02:00
|
|
|
wlr_log(WLR_INFO, "Found %"PRIu32" DRM planes", plane_res->count_planes);
|
2017-07-20 10:51:59 +02:00
|
|
|
|
2019-06-21 08:06:21 +02:00
|
|
|
for (uint32_t i = 0; i < plane_res->count_planes; ++i) {
|
|
|
|
uint32_t id = plane_res->planes[i];
|
2017-07-20 10:51:59 +02:00
|
|
|
|
2019-06-21 08:06:21 +02:00
|
|
|
drmModePlane *plane = drmModeGetPlane(drm->fd, id);
|
2017-07-20 10:51:59 +02:00
|
|
|
if (!plane) {
|
2018-07-09 23:49:54 +02:00
|
|
|
wlr_log_errno(WLR_ERROR, "Failed to get DRM plane");
|
2019-06-21 08:06:21 +02:00
|
|
|
goto error;
|
2017-07-20 10:51:59 +02:00
|
|
|
}
|
|
|
|
|
2019-06-21 08:06:21 +02:00
|
|
|
union wlr_drm_plane_props props = {0};
|
|
|
|
if (!get_drm_plane_props(drm->fd, id, &props)) {
|
|
|
|
drmModeFreePlane(plane);
|
|
|
|
goto error;
|
|
|
|
}
|
2017-07-20 10:51:59 +02:00
|
|
|
|
2019-01-29 12:04:12 +01:00
|
|
|
uint64_t type;
|
2019-06-21 08:06:21 +02:00
|
|
|
if (!get_drm_prop(drm->fd, id, props.type, &type)) {
|
2017-07-20 10:51:59 +02:00
|
|
|
drmModeFreePlane(plane);
|
2019-06-21 08:06:21 +02:00
|
|
|
goto error;
|
2017-07-20 10:51:59 +02:00
|
|
|
}
|
|
|
|
|
2020-12-06 17:06:48 +01:00
|
|
|
// We don't really care about overlay planes, as we don't support them
|
|
|
|
// yet.
|
|
|
|
if (type == DRM_PLANE_TYPE_OVERLAY) {
|
|
|
|
drmModeFreePlane(plane);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2020-07-16 20:38:35 +02:00
|
|
|
assert(drm->num_crtcs <= 32);
|
|
|
|
struct wlr_drm_crtc *crtc = NULL;
|
|
|
|
for (size_t j = 0; j < drm->num_crtcs ; j++) {
|
|
|
|
uint32_t crtc_bit = 1 << j;
|
|
|
|
if ((plane->possible_crtcs & crtc_bit) == 0) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct wlr_drm_crtc *candidate = &drm->crtcs[j];
|
|
|
|
if ((type == DRM_PLANE_TYPE_PRIMARY && !candidate->primary) ||
|
|
|
|
(type == DRM_PLANE_TYPE_CURSOR && !candidate->cursor)) {
|
|
|
|
crtc = candidate;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!crtc) {
|
|
|
|
drmModeFreePlane(plane);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2019-06-21 08:06:21 +02:00
|
|
|
if (!add_plane(drm, crtc, plane, type, &props)) {
|
|
|
|
drmModeFreePlane(plane);
|
|
|
|
goto error;
|
2019-04-09 22:36:35 +02:00
|
|
|
}
|
|
|
|
|
2017-07-20 10:51:59 +02:00
|
|
|
drmModeFreePlane(plane);
|
|
|
|
}
|
|
|
|
|
2017-08-12 00:02:04 +02:00
|
|
|
drmModeFreePlaneResources(plane_res);
|
2017-07-20 10:51:59 +02:00
|
|
|
return true;
|
|
|
|
|
2019-06-21 08:06:21 +02:00
|
|
|
error:
|
2017-07-20 10:51:59 +02:00
|
|
|
drmModeFreePlaneResources(plane_res);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2018-04-26 00:24:58 +02:00
|
|
|
bool init_drm_resources(struct wlr_drm_backend *drm) {
|
2017-09-30 11:22:26 +02:00
|
|
|
drmModeRes *res = drmModeGetResources(drm->fd);
|
2017-07-20 10:51:59 +02:00
|
|
|
if (!res) {
|
2018-07-09 23:49:54 +02:00
|
|
|
wlr_log_errno(WLR_ERROR, "Failed to get DRM resources");
|
2017-07-20 10:51:59 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2018-07-09 23:49:54 +02:00
|
|
|
wlr_log(WLR_INFO, "Found %d DRM CRTCs", res->count_crtcs);
|
2017-07-20 10:51:59 +02:00
|
|
|
|
2017-09-30 11:22:26 +02:00
|
|
|
drm->num_crtcs = res->count_crtcs;
|
2018-10-07 12:59:00 +02:00
|
|
|
if (drm->num_crtcs == 0) {
|
|
|
|
drmModeFreeResources(res);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2017-09-30 11:22:26 +02:00
|
|
|
drm->crtcs = calloc(drm->num_crtcs, sizeof(drm->crtcs[0]));
|
|
|
|
if (!drm->crtcs) {
|
2018-07-09 23:49:54 +02:00
|
|
|
wlr_log_errno(WLR_ERROR, "Allocation failed");
|
2017-07-20 10:51:59 +02:00
|
|
|
goto error_res;
|
|
|
|
}
|
|
|
|
|
2017-09-30 11:22:26 +02:00
|
|
|
for (size_t i = 0; i < drm->num_crtcs; ++i) {
|
|
|
|
struct wlr_drm_crtc *crtc = &drm->crtcs[i];
|
2017-07-20 10:51:59 +02:00
|
|
|
crtc->id = res->crtcs[i];
|
2018-02-04 21:03:44 +01:00
|
|
|
crtc->legacy_crtc = drmModeGetCrtc(drm->fd, crtc->id);
|
2018-04-26 00:24:58 +02:00
|
|
|
get_drm_crtc_props(drm->fd, crtc->id, &crtc->props);
|
2017-07-20 10:51:59 +02:00
|
|
|
}
|
|
|
|
|
2017-09-30 11:22:26 +02:00
|
|
|
if (!init_planes(drm)) {
|
2017-07-20 10:51:59 +02:00
|
|
|
goto error_crtcs;
|
|
|
|
}
|
|
|
|
|
|
|
|
drmModeFreeResources(res);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
|
|
|
error_crtcs:
|
2017-09-30 11:22:26 +02:00
|
|
|
free(drm->crtcs);
|
2017-07-20 10:51:59 +02:00
|
|
|
error_res:
|
|
|
|
drmModeFreeResources(res);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2018-04-26 00:24:58 +02:00
|
|
|
void finish_drm_resources(struct wlr_drm_backend *drm) {
|
2017-09-30 11:22:26 +02:00
|
|
|
if (!drm) {
|
2017-08-05 09:49:34 +02:00
|
|
|
return;
|
2017-08-07 00:15:05 +02:00
|
|
|
}
|
2017-09-30 11:22:26 +02:00
|
|
|
|
|
|
|
for (size_t i = 0; i < drm->num_crtcs; ++i) {
|
|
|
|
struct wlr_drm_crtc *crtc = &drm->crtcs[i];
|
2019-06-21 08:06:21 +02:00
|
|
|
|
2018-02-04 21:03:44 +01:00
|
|
|
drmModeFreeCrtc(crtc->legacy_crtc);
|
2019-06-21 08:06:21 +02:00
|
|
|
|
2017-08-09 10:43:01 +02:00
|
|
|
if (crtc->mode_id) {
|
2017-09-30 11:22:26 +02:00
|
|
|
drmModeDestroyPropertyBlob(drm->fd, crtc->mode_id);
|
2017-08-09 10:43:01 +02:00
|
|
|
}
|
2018-02-01 20:27:35 +01:00
|
|
|
if (crtc->gamma_lut) {
|
|
|
|
drmModeDestroyPropertyBlob(drm->fd, crtc->gamma_lut);
|
|
|
|
}
|
2019-06-21 08:06:21 +02:00
|
|
|
|
|
|
|
if (crtc->primary) {
|
|
|
|
wlr_drm_format_set_finish(&crtc->primary->formats);
|
|
|
|
free(crtc->primary);
|
|
|
|
}
|
|
|
|
if (crtc->cursor) {
|
|
|
|
wlr_drm_format_set_finish(&crtc->cursor->formats);
|
|
|
|
free(crtc->cursor);
|
|
|
|
}
|
2017-08-09 10:43:01 +02:00
|
|
|
}
|
2017-10-05 22:01:56 +02:00
|
|
|
|
2017-09-30 11:22:26 +02:00
|
|
|
free(drm->crtcs);
|
2017-08-05 09:49:34 +02:00
|
|
|
}
|
|
|
|
|
2018-09-17 22:25:20 +02:00
|
|
|
static struct wlr_drm_connector *get_drm_connector_from_output(
|
|
|
|
struct wlr_output *wlr_output) {
|
|
|
|
assert(wlr_output_is_drm(wlr_output));
|
|
|
|
return (struct wlr_drm_connector *)wlr_output;
|
|
|
|
}
|
|
|
|
|
2021-04-06 16:43:48 +02:00
|
|
|
static bool drm_crtc_commit(struct wlr_drm_connector *conn,
|
2021-08-10 18:47:14 +02:00
|
|
|
const struct wlr_drm_connector_state *state,
|
|
|
|
uint32_t flags, bool test_only) {
|
2021-07-08 15:56:01 +02:00
|
|
|
// Disallow atomic-only flags
|
|
|
|
assert((flags & ~DRM_MODE_PAGE_FLIP_FLAGS) == 0);
|
|
|
|
|
2020-12-09 14:31:06 +01:00
|
|
|
struct wlr_drm_backend *drm = conn->backend;
|
2020-02-08 07:02:31 +01:00
|
|
|
struct wlr_drm_crtc *crtc = conn->crtc;
|
2021-07-08 16:31:09 +02:00
|
|
|
bool ok = drm->iface->crtc_commit(conn, state, flags, test_only);
|
2021-07-08 15:56:01 +02:00
|
|
|
if (ok && !test_only) {
|
2021-06-08 11:05:50 +02:00
|
|
|
drm_fb_move(&crtc->primary->queued_fb, &crtc->primary->pending_fb);
|
2020-05-27 17:11:22 +02:00
|
|
|
if (crtc->cursor != NULL) {
|
2021-06-08 11:05:50 +02:00
|
|
|
drm_fb_move(&crtc->cursor->queued_fb, &crtc->cursor->pending_fb);
|
2020-05-27 17:11:22 +02:00
|
|
|
}
|
2020-05-18 14:27:42 +02:00
|
|
|
} else {
|
2020-05-27 17:11:22 +02:00
|
|
|
drm_fb_clear(&crtc->primary->pending_fb);
|
2021-07-05 11:04:02 +02:00
|
|
|
// The set_cursor() hook is a bit special: it's not really synchronized
|
|
|
|
// to commit() or test(). Once set_cursor() returns true, the new
|
|
|
|
// cursor is effectively committed. So don't roll it back here, or we
|
|
|
|
// risk ending up in a state where we don't have a cursor FB but
|
|
|
|
// wlr_drm_connector.cursor_enabled is true.
|
|
|
|
// TODO: fix our output interface to avoid this issue.
|
2020-05-18 14:27:42 +02:00
|
|
|
}
|
2020-05-07 21:11:43 +02:00
|
|
|
return ok;
|
|
|
|
}
|
|
|
|
|
2021-04-06 16:43:48 +02:00
|
|
|
static bool drm_crtc_page_flip(struct wlr_drm_connector *conn,
|
2021-08-10 18:47:14 +02:00
|
|
|
const struct wlr_drm_connector_state *state) {
|
2020-05-07 21:11:43 +02:00
|
|
|
struct wlr_drm_crtc *crtc = conn->crtc;
|
2020-12-25 11:12:21 +01:00
|
|
|
assert(crtc != NULL);
|
2020-02-08 07:02:31 +01:00
|
|
|
|
2020-06-03 10:49:30 +02:00
|
|
|
// wlr_drm_interface.crtc_commit will perform either a non-blocking
|
|
|
|
// page-flip, either a blocking modeset. When performing a blocking modeset
|
|
|
|
// we'll wait for all queued page-flips to complete, so we don't need this
|
|
|
|
// safeguard.
|
2021-08-10 18:47:14 +02:00
|
|
|
if (conn->pending_page_flip_crtc && !state->modeset) {
|
2020-12-09 14:50:39 +01:00
|
|
|
wlr_drm_conn_log(conn, WLR_ERROR, "Failed to page-flip output: "
|
|
|
|
"a page-flip is already pending");
|
2020-02-08 07:02:31 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2021-08-10 18:47:14 +02:00
|
|
|
assert(state->active);
|
2020-12-22 17:07:29 +01:00
|
|
|
assert(plane_get_next_fb(crtc->primary));
|
2021-07-08 15:56:01 +02:00
|
|
|
if (!drm_crtc_commit(conn, state, DRM_MODE_PAGE_FLIP_EVENT, false)) {
|
2020-02-08 07:02:31 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2020-12-25 11:12:21 +01:00
|
|
|
conn->pending_page_flip_crtc = crtc->id;
|
2020-11-02 12:11:51 +01:00
|
|
|
|
|
|
|
// wlr_output's API guarantees that submitting a buffer will schedule a
|
|
|
|
// frame event. However the DRM backend will also schedule a frame event
|
|
|
|
// when performing a modeset. Set frame_pending to true so that
|
|
|
|
// wlr_output_schedule_frame doesn't trigger a synthetic frame event.
|
|
|
|
conn->output.frame_pending = true;
|
2020-02-08 07:02:31 +01:00
|
|
|
return true;
|
2017-05-03 12:40:19 +02:00
|
|
|
}
|
|
|
|
|
2021-08-10 18:47:14 +02:00
|
|
|
static void drm_connector_state_init(struct wlr_drm_connector_state *state,
|
|
|
|
struct wlr_drm_connector *conn,
|
|
|
|
const struct wlr_output_state *base) {
|
|
|
|
state->base = base;
|
|
|
|
state->modeset = base->committed &
|
|
|
|
(WLR_OUTPUT_STATE_ENABLED | WLR_OUTPUT_STATE_MODE);
|
|
|
|
state->active = (base->committed & WLR_OUTPUT_STATE_ENABLED) ?
|
|
|
|
base->enabled : conn->output.enabled;
|
|
|
|
|
|
|
|
if (base->committed & WLR_OUTPUT_STATE_MODE) {
|
|
|
|
switch (base->mode_type) {
|
|
|
|
case WLR_OUTPUT_STATE_MODE_FIXED:;
|
|
|
|
struct wlr_drm_mode *mode = (struct wlr_drm_mode *)base->mode;
|
|
|
|
state->mode = mode->drm_mode;
|
|
|
|
break;
|
|
|
|
case WLR_OUTPUT_STATE_MODE_CUSTOM:
|
|
|
|
generate_cvt_mode(&state->mode, base->custom_mode.width,
|
|
|
|
base->custom_mode.height,
|
|
|
|
(float)base->custom_mode.refresh / 1000, false, false);
|
|
|
|
state->mode.type = DRM_MODE_TYPE_USERDEF;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
} else if (state->active) {
|
|
|
|
struct wlr_drm_mode *mode =
|
|
|
|
(struct wlr_drm_mode *)conn->output.current_mode;
|
|
|
|
assert(mode != NULL);
|
|
|
|
state->mode = mode->drm_mode;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-04-06 19:40:52 +02:00
|
|
|
static bool drm_connector_set_pending_fb(struct wlr_drm_connector *conn,
|
|
|
|
const struct wlr_output_state *state) {
|
|
|
|
struct wlr_drm_backend *drm = conn->backend;
|
|
|
|
|
|
|
|
struct wlr_drm_crtc *crtc = conn->crtc;
|
|
|
|
if (!crtc) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
struct wlr_drm_plane *plane = crtc->primary;
|
|
|
|
|
|
|
|
assert(state->committed & WLR_OUTPUT_STATE_BUFFER);
|
2021-06-08 11:05:50 +02:00
|
|
|
|
|
|
|
struct wlr_buffer *local_buf;
|
|
|
|
if (drm->parent) {
|
|
|
|
struct wlr_drm_format *format =
|
2021-07-12 17:30:45 +02:00
|
|
|
drm_plane_pick_render_format(plane, &drm->mgpu_renderer);
|
2021-06-08 11:05:50 +02:00
|
|
|
if (format == NULL) {
|
|
|
|
wlr_log(WLR_ERROR, "Failed to pick primary plane format");
|
2021-04-06 19:40:52 +02:00
|
|
|
return false;
|
|
|
|
}
|
2021-06-08 11:05:50 +02:00
|
|
|
|
|
|
|
// TODO: fallback to modifier-less buffer allocation
|
2021-07-12 17:30:45 +02:00
|
|
|
bool ok = init_drm_surface(&plane->mgpu_surf, &drm->mgpu_renderer,
|
2021-06-08 11:05:50 +02:00
|
|
|
state->buffer->width, state->buffer->height, format);
|
|
|
|
free(format);
|
|
|
|
if (!ok) {
|
2021-04-06 19:40:52 +02:00
|
|
|
return false;
|
|
|
|
}
|
2021-06-08 11:05:50 +02:00
|
|
|
|
|
|
|
local_buf = drm_surface_blit(&plane->mgpu_surf, state->buffer);
|
2021-09-01 22:06:50 +02:00
|
|
|
if (local_buf == NULL) {
|
|
|
|
return false;
|
|
|
|
}
|
2021-06-08 11:05:50 +02:00
|
|
|
} else {
|
|
|
|
local_buf = wlr_buffer_lock(state->buffer);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool ok = drm_fb_import(&plane->pending_fb, drm, local_buf,
|
|
|
|
&crtc->primary->formats);
|
|
|
|
wlr_buffer_unlock(local_buf);
|
|
|
|
if (!ok) {
|
|
|
|
wlr_drm_conn_log(conn, WLR_DEBUG,
|
|
|
|
"Failed to import buffer for scan-out");
|
|
|
|
return false;
|
2021-04-06 19:40:52 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2021-04-06 19:31:40 +02:00
|
|
|
static bool drm_connector_alloc_crtc(struct wlr_drm_connector *conn);
|
|
|
|
|
2020-04-02 12:41:19 +02:00
|
|
|
static bool drm_connector_test(struct wlr_output *output) {
|
2020-04-02 14:12:26 +02:00
|
|
|
struct wlr_drm_connector *conn = get_drm_connector_from_output(output);
|
|
|
|
|
2021-04-06 19:43:51 +02:00
|
|
|
if (!conn->backend->session->active) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2021-06-18 12:15:08 +02:00
|
|
|
uint32_t unsupported = output->pending.committed & ~SUPPORTED_OUTPUT_STATE;
|
|
|
|
if (unsupported != 0) {
|
|
|
|
wlr_log(WLR_DEBUG, "Unsupported output state fields: 0x%"PRIx32,
|
|
|
|
unsupported);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2020-05-17 18:49:56 +02:00
|
|
|
if ((output->pending.committed & WLR_OUTPUT_STATE_ENABLED) &&
|
|
|
|
output->pending.enabled) {
|
|
|
|
if (output->current_mode == NULL &&
|
|
|
|
!(output->pending.committed & WLR_OUTPUT_STATE_MODE)) {
|
2020-12-09 14:50:39 +01:00
|
|
|
wlr_drm_conn_log(conn, WLR_DEBUG,
|
|
|
|
"Can't enable an output without a mode");
|
2020-05-17 18:49:56 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-08-10 18:47:14 +02:00
|
|
|
struct wlr_drm_connector_state pending = {0};
|
|
|
|
drm_connector_state_init(&pending, conn, &output->pending);
|
|
|
|
|
|
|
|
if (pending.active) {
|
2021-08-04 22:42:36 +02:00
|
|
|
if ((output->pending.committed &
|
|
|
|
(WLR_OUTPUT_STATE_ENABLED | WLR_OUTPUT_STATE_MODE)) &&
|
|
|
|
!(output->pending.committed & WLR_OUTPUT_STATE_BUFFER)) {
|
|
|
|
wlr_drm_conn_log(conn, WLR_DEBUG,
|
|
|
|
"Can't enable an output without a buffer");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2021-04-06 19:31:40 +02:00
|
|
|
if (!drm_connector_alloc_crtc(conn)) {
|
|
|
|
wlr_drm_conn_log(conn, WLR_DEBUG,
|
|
|
|
"No CRTC available for this connector");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-04-06 22:07:00 +02:00
|
|
|
if (conn->backend->parent) {
|
|
|
|
// If we're running as a secondary GPU, we can't perform an atomic
|
|
|
|
// commit without blitting a buffer.
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
backend/drm: return true on test if no crtc
This should fix the following backtrace, seen on my desktop with one
output disabled:
#0 atomic_crtc_commit (conn=0x270f5c0, state=0x270f6d0, flags=0, test_only=<optimized out>) at ../backend/drm/atomic.c:178
drm = 0x1ae9c10
output = 0x270f5c0
crtc = 0x0
modeset = false
active = false
mode_id = 43989232
gamma_lut = 0
prev_vrr_enabled = <optimized out>
vrr_enabled = <optimized out>
atom = {req = 0x270f5c0, failed = 48}
ok = <optimized out>
#1 0x00007f1104f33128 in drm_crtc_commit (conn=conn@entry=0x270f5c0, state=state@entry=0x270f6d0, flags=flags@entry=0, test_only=test_only@entry=true) at ../backend/drm/drm.c:339
__PRETTY_FUNCTION__ = "drm_crtc_commit"
drm = <optimized out>
crtc = 0x0
ok = <optimized out>
#2 0x00007f1104f34e6c in drm_connector_test (output=output@entry=0x270f5c0) at ../backend/drm/drm.c:488
conn = 0x270f5c0
unsupported = <optimized out>
#3 0x00007f1104f35424 in drm_connector_commit (output=0x270f5c0) at ../backend/drm/drm.c:578
conn = 0x270f5c0
#4 0x00007f1104f600b7 in wlr_output_commit (output=output@entry=0x270f5c0) at ../types/wlr_output.c:837
now = {tv_sec = 7732, tv_nsec = 623813006}
pre_event = {output = 0x270f5c0, when = 0x7ffecc1be570}
back_buffer = 0x0
scale_updated = <optimized out>
geometry_updated = <optimized out>
committed = <optimized out>
event = {output = 0x0, committed = 4401048, when = 0x29f38f0}
#5 0x0000000000433047 in apply_output_config (oc=oc@entry=0x29f38f0, output=output@entry=0x2710720) at ../sway/config/output.c:431
wlr_output = 0x270f5c0
output_box = <optimized out>
#6 0x0000000000433aaf in apply_output_config_to_outputs (oc=0x2308400) at ../sway/config/output.c:649
current = 0x29f38f0
name = <optimized out>
wildcard = true
id = "Dell Inc. DELL U2410 F525M9AK0MML\000\060\060\060ACD7\000\000\000\000\000\000\000\220\063\240\002\000\000\000\000L5C\000\000\000\000\000\377\377\377\377\000\000\000\000\377\377\377\377\000\000\000\000\377\377\377\377\000\000\000\000\377\377\377\377\000\000\000\000\355\240E\000\000\000\000\000\377\377\377\377\000\000\000\000@\206+\002\000\000\000\000`\260.\002\000\000\000"
sway_output = 0x2710720
tmp = 0x2242030
seat = <optimized out>
#7 0x000000000043df6b in cmd_output (argc=<optimized out>, argv=0x2a03390) at ../sway/commands/output.c:108
error = <optimized out>
output = <optimized out>
background = false
#8 0x0000000000410304 in execute_command (_exec=_exec@entry=0x2975d20 "output * dpms off", seat=0x22a3280, seat@entry=0x0, con=con@entry=0x0) at ../sway/commands.c:291
res = <optimized out>
argc = 4
argv = 0x2a03370
handler = 0x479230 <handlers+560>
cmd = <optimized out>
matched_delim = 0 '\000'
containers = 0x0
using_criteria = false
__PRETTY_FUNCTION__ = "execute_command"
exec = 0x28f63c0 "output * dpms off"
head = 0x0
res_list = 0x2a2e9d0
#9 0x0000000000418b65 in ipc_client_handle_command (client=client@entry=0x2a6ac80, payload_length=<optimized out>, payload_type=IPC_COMMAND) at ../sway/ipc-server.c:645
line = <optimized out>
res_list = <optimized out>
json = <optimized out>
length = <optimized out>
__PRETTY_FUNCTION__ = "ipc_client_handle_command"
buf = 0x2975d20 "output * dpms off"
#10 0x000000000041964c in ipc_client_handle_readable (client_fd=<optimized out>, mask=<optimized out>, data=0x2a6ac80) at ../sway/ipc-server.c:267
pending_length = <optimized out>
pending_type = <optimized out>
client = 0x2a6ac80
read_available = 31
buf = "i3-ipc\021\000\000\000\000\000\000"
received = 14
#11 0x00007f1104fc3492 in wl_event_loop_dispatch () from /nix/store/ridk7k2ka6dbk4ly7qqjgmc523s4fj89-wayland-1.19.0/lib/libwayland-server.so.0
No symbol table info available.
#12 0x00007f1104fc1135 in wl_display_run () from /nix/store/ridk7k2ka6dbk4ly7qqjgmc523s4fj89-wayland-1.19.0/lib/libwayland-server.so.0
No symbol table info available.
#13 0x000000000041ac10 in server_run (server=server@entry=0x47b0c0 <server>) at ../sway/server.c:261
No locals.
#14 0x000000000041a3fc in main (argc=<optimized out>, argv=0x7ffecc1bec68) at ../sway/main.c:395
verbose = 0
debug = 0
validate = 0
allow_unsupported_gpu = 0
long_options = {{name = 0x45b516 "help", has_arg = 0, flag = 0x0, val = 104}, {name = 0x45ee69 "config", has_arg = 1, flag = 0x0, val = 99}, {name = 0x45b51b "validate", has_arg = 0, flag = 0x0, val = 67}, {
name = 0x45b524 "debug", has_arg = 0, flag = 0x0, val = 100}, {name = 0x45b3ac "version", has_arg = 0, flag = 0x0, val = 118}, {name = 0x45a55c "verbose", has_arg = 0, flag = 0x0, val = 86}, {name = 0x45b52a "get-socketpath",
has_arg = 0, flag = 0x0, val = 112}, {name = 0x45b539 "unsupported-gpu", has_arg = 0, flag = 0x0, val = 117}, {name = 0x45b549 "my-next-gpu-wont-be-nvidia", has_arg = 0, flag = 0x0, val = 117}, {name = 0x0, has_arg = 0,
flag = 0x0, val = 0}}
config_path = 0x0
usage = 0x45b830 "Usage: sway [options] [command]\n\n -h, --help", ' ' <repeats 13 times>, "Show help message and quit.\n -c, --config <config> Specify a config file.\n -C, --validate Check the validity of the config file, th"...
c = <optimized out>
where the second output is not enabled:
(gdb) frame 4
#4 0x00007f1104f600b7 in wlr_output_commit (output=output@entry=0x270f5c0) at ../types/wlr_output.c:837
837 in ../types/wlr_output.c
(gdb) p output->enabled
$3 = false
(gdb)
The culprit being that since 604674dc54a3b2cb4b73de267c8c2bcae259c4b6 we
always try to perform a commit, even on a disabled output.
2021-08-16 18:52:30 +02:00
|
|
|
if (!conn->crtc) {
|
|
|
|
// If the output is disabled, we don't have a crtc even after
|
|
|
|
// reallocation
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2021-04-06 22:07:00 +02:00
|
|
|
if (output->pending.committed & WLR_OUTPUT_STATE_BUFFER) {
|
2021-08-10 18:47:14 +02:00
|
|
|
if (!drm_connector_set_pending_fb(conn, pending.base)) {
|
2021-04-06 19:47:04 +02:00
|
|
|
return false;
|
|
|
|
}
|
2020-04-02 14:12:26 +02:00
|
|
|
}
|
|
|
|
|
2021-08-10 18:47:14 +02:00
|
|
|
return drm_crtc_commit(conn, &pending, 0, true);
|
2020-04-02 12:41:19 +02:00
|
|
|
}
|
|
|
|
|
2020-05-27 16:43:19 +02:00
|
|
|
bool drm_connector_supports_vrr(struct wlr_drm_connector *conn) {
|
2020-12-09 14:31:06 +01:00
|
|
|
struct wlr_drm_backend *drm = conn->backend;
|
2020-01-10 16:04:19 +01:00
|
|
|
|
|
|
|
struct wlr_drm_crtc *crtc = conn->crtc;
|
|
|
|
if (!crtc) {
|
2020-05-27 16:43:19 +02:00
|
|
|
return false;
|
2020-01-10 16:04:19 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
uint64_t vrr_capable;
|
|
|
|
if (conn->props.vrr_capable == 0 ||
|
|
|
|
!get_drm_prop(drm->fd, conn->id, conn->props.vrr_capable,
|
|
|
|
&vrr_capable) || !vrr_capable) {
|
2020-12-09 14:50:39 +01:00
|
|
|
wlr_drm_conn_log(conn, WLR_DEBUG, "Failed to enable adaptive sync: "
|
|
|
|
"connector doesn't support VRR");
|
2020-05-27 16:43:19 +02:00
|
|
|
return false;
|
2020-01-10 16:04:19 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if (crtc->props.vrr_enabled == 0) {
|
2020-12-09 14:50:39 +01:00
|
|
|
wlr_drm_conn_log(conn, WLR_DEBUG, "Failed to enable adaptive sync: "
|
2020-01-10 16:04:19 +01:00
|
|
|
"CRTC %"PRIu32" doesn't support VRR", crtc->id);
|
2020-05-27 16:43:19 +02:00
|
|
|
return false;
|
2020-01-10 16:04:19 +01:00
|
|
|
}
|
|
|
|
|
2020-05-27 16:43:19 +02:00
|
|
|
return true;
|
2020-01-10 16:04:19 +01:00
|
|
|
}
|
|
|
|
|
2021-04-06 17:58:10 +02:00
|
|
|
static bool drm_connector_set_mode(struct wlr_drm_connector *conn,
|
2021-08-10 18:47:14 +02:00
|
|
|
const struct wlr_drm_connector_state *state);
|
2019-08-16 18:41:56 +02:00
|
|
|
|
2021-04-06 17:58:10 +02:00
|
|
|
bool drm_connector_commit_state(struct wlr_drm_connector *conn,
|
2021-08-10 18:47:14 +02:00
|
|
|
const struct wlr_output_state *base) {
|
2021-04-06 17:58:10 +02:00
|
|
|
struct wlr_drm_backend *drm = conn->backend;
|
2020-04-02 12:41:19 +02:00
|
|
|
|
2019-08-16 18:41:56 +02:00
|
|
|
if (!drm->session->active) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2021-08-10 18:47:14 +02:00
|
|
|
struct wlr_drm_connector_state pending = {0};
|
|
|
|
drm_connector_state_init(&pending, conn, base);
|
|
|
|
|
|
|
|
if (pending.active) {
|
2021-04-06 20:49:33 +02:00
|
|
|
if (!drm_connector_alloc_crtc(conn)) {
|
|
|
|
wlr_drm_conn_log(conn, WLR_ERROR,
|
|
|
|
"No CRTC available for this connector");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-08-10 18:47:14 +02:00
|
|
|
if (pending.base->committed & WLR_OUTPUT_STATE_BUFFER) {
|
|
|
|
if (!drm_connector_set_pending_fb(conn, pending.base)) {
|
2021-04-06 18:23:35 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-08-10 18:47:14 +02:00
|
|
|
if (pending.modeset) {
|
|
|
|
if (!drm_connector_set_mode(conn, &pending)) {
|
2019-12-27 12:43:49 +01:00
|
|
|
return false;
|
|
|
|
}
|
2021-08-10 18:47:14 +02:00
|
|
|
} else if (pending.base->committed & WLR_OUTPUT_STATE_BUFFER) {
|
|
|
|
if (!drm_crtc_page_flip(conn, &pending)) {
|
2019-08-16 18:41:56 +02:00
|
|
|
return false;
|
|
|
|
}
|
2021-08-10 18:47:14 +02:00
|
|
|
} else if (pending.base->committed & (WLR_OUTPUT_STATE_ADAPTIVE_SYNC_ENABLED |
|
2020-05-27 17:59:16 +02:00
|
|
|
WLR_OUTPUT_STATE_GAMMA_LUT)) {
|
|
|
|
assert(conn->crtc != NULL);
|
|
|
|
// TODO: maybe request a page-flip event here?
|
2021-08-10 18:47:14 +02:00
|
|
|
if (!drm_crtc_commit(conn, &pending, 0, false)) {
|
2020-05-27 17:59:16 +02:00
|
|
|
return false;
|
|
|
|
}
|
2019-08-16 18:41:56 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2021-04-06 17:58:10 +02:00
|
|
|
static bool drm_connector_commit(struct wlr_output *output) {
|
|
|
|
struct wlr_drm_connector *conn = get_drm_connector_from_output(output);
|
|
|
|
|
|
|
|
if (!drm_connector_test(output)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return drm_connector_commit_state(conn, &output->pending);
|
|
|
|
}
|
|
|
|
|
2020-05-14 18:27:02 +02:00
|
|
|
size_t drm_crtc_get_gamma_lut_size(struct wlr_drm_backend *drm,
|
|
|
|
struct wlr_drm_crtc *crtc) {
|
2020-11-19 21:34:00 +01:00
|
|
|
if (crtc->props.gamma_lut_size == 0 || drm->iface == &legacy_iface) {
|
2020-05-09 16:50:50 +02:00
|
|
|
return (size_t)crtc->legacy_crtc->gamma_size;
|
|
|
|
}
|
2018-02-04 21:50:52 +01:00
|
|
|
|
2020-05-09 16:50:50 +02:00
|
|
|
uint64_t gamma_lut_size;
|
|
|
|
if (!get_drm_prop(drm->fd, crtc->id, crtc->props.gamma_lut_size,
|
|
|
|
&gamma_lut_size)) {
|
|
|
|
wlr_log(WLR_ERROR, "Unable to get gamma lut size");
|
|
|
|
return 0;
|
2018-02-04 21:50:52 +01:00
|
|
|
}
|
|
|
|
|
2020-05-09 16:50:50 +02:00
|
|
|
return gamma_lut_size;
|
2017-09-06 18:53:08 +02:00
|
|
|
}
|
|
|
|
|
2020-05-14 18:27:02 +02:00
|
|
|
static size_t drm_connector_get_gamma_size(struct wlr_output *output) {
|
2018-09-17 22:25:20 +02:00
|
|
|
struct wlr_drm_connector *conn = get_drm_connector_from_output(output);
|
2020-12-09 14:31:06 +01:00
|
|
|
struct wlr_drm_backend *drm = conn->backend;
|
2020-05-14 18:27:02 +02:00
|
|
|
struct wlr_drm_crtc *crtc = conn->crtc;
|
2018-07-22 18:37:01 +02:00
|
|
|
|
2020-05-14 18:27:02 +02:00
|
|
|
if (crtc == NULL) {
|
|
|
|
return 0;
|
2018-10-03 10:36:33 +02:00
|
|
|
}
|
|
|
|
|
2020-05-14 18:27:02 +02:00
|
|
|
return drm_crtc_get_gamma_lut_size(drm, crtc);
|
2018-07-22 18:37:01 +02:00
|
|
|
}
|
|
|
|
|
2020-02-08 07:02:31 +01:00
|
|
|
struct wlr_drm_fb *plane_get_next_fb(struct wlr_drm_plane *plane) {
|
2020-12-22 17:07:29 +01:00
|
|
|
if (plane->pending_fb) {
|
|
|
|
return plane->pending_fb;
|
2020-02-08 07:02:31 +01:00
|
|
|
}
|
2020-12-22 17:07:29 +01:00
|
|
|
if (plane->queued_fb) {
|
|
|
|
return plane->queued_fb;
|
2020-02-08 07:02:31 +01:00
|
|
|
}
|
2020-12-22 17:07:29 +01:00
|
|
|
return plane->current_fb;
|
2018-05-21 19:50:51 +02:00
|
|
|
}
|
|
|
|
|
2019-06-21 08:06:21 +02:00
|
|
|
static void realloc_crtcs(struct wlr_drm_backend *drm);
|
2018-09-10 23:35:22 +02:00
|
|
|
|
2021-04-06 19:30:57 +02:00
|
|
|
static bool drm_connector_alloc_crtc(struct wlr_drm_connector *conn) {
|
|
|
|
if (conn->crtc != NULL) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool prev_desired_enabled = conn->desired_enabled;
|
|
|
|
conn->desired_enabled = true;
|
|
|
|
realloc_crtcs(conn->backend);
|
|
|
|
conn->desired_enabled = prev_desired_enabled;
|
|
|
|
|
|
|
|
return conn->crtc != NULL;
|
|
|
|
}
|
|
|
|
|
2021-04-06 17:58:10 +02:00
|
|
|
static bool drm_connector_set_mode(struct wlr_drm_connector *conn,
|
2021-08-10 18:47:14 +02:00
|
|
|
const struct wlr_drm_connector_state *state) {
|
2021-04-06 17:44:31 +02:00
|
|
|
struct wlr_output_mode *wlr_mode = NULL;
|
2021-08-10 18:47:14 +02:00
|
|
|
if (state->active) {
|
|
|
|
if (state->base->committed & WLR_OUTPUT_STATE_MODE) {
|
|
|
|
switch (state->base->mode_type) {
|
|
|
|
case WLR_OUTPUT_STATE_MODE_FIXED:
|
|
|
|
wlr_mode = state->base->mode;
|
|
|
|
break;
|
|
|
|
case WLR_OUTPUT_STATE_MODE_CUSTOM:
|
|
|
|
wlr_mode = wlr_drm_connector_add_mode(&conn->output, &state->mode);
|
|
|
|
if (wlr_mode == NULL) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2021-04-30 00:55:26 +02:00
|
|
|
} else {
|
|
|
|
wlr_mode = conn->output.current_mode;
|
|
|
|
}
|
2021-04-06 17:44:31 +02:00
|
|
|
}
|
|
|
|
|
2020-05-18 12:16:30 +02:00
|
|
|
conn->desired_enabled = wlr_mode != NULL;
|
2018-09-10 23:35:22 +02:00
|
|
|
|
2020-05-18 12:16:30 +02:00
|
|
|
if (wlr_mode == NULL) {
|
|
|
|
if (conn->crtc != NULL) {
|
2021-07-08 15:56:01 +02:00
|
|
|
if (!drm_crtc_commit(conn, state, 0, false)) {
|
2020-05-18 12:16:30 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
2020-05-07 21:11:43 +02:00
|
|
|
wlr_output_update_enabled(&conn->output, false);
|
2020-05-18 12:16:30 +02:00
|
|
|
return true;
|
2020-05-07 21:11:43 +02:00
|
|
|
}
|
|
|
|
|
2021-08-10 17:48:04 +02:00
|
|
|
if (conn->status != WLR_DRM_CONN_CONNECTED
|
|
|
|
&& conn->status != WLR_DRM_CONN_NEEDS_MODESET) {
|
2020-12-09 14:50:39 +01:00
|
|
|
wlr_drm_conn_log(conn, WLR_ERROR,
|
|
|
|
"Cannot modeset a disconnected output");
|
2018-09-14 18:18:07 +02:00
|
|
|
return false;
|
2018-01-07 00:28:21 +01:00
|
|
|
}
|
2017-06-06 17:48:30 +02:00
|
|
|
|
2021-04-06 19:30:57 +02:00
|
|
|
if (!drm_connector_alloc_crtc(conn)) {
|
2020-12-09 14:50:39 +01:00
|
|
|
wlr_drm_conn_log(conn, WLR_ERROR,
|
|
|
|
"Cannot perform modeset: no CRTC for this connector");
|
2018-09-04 15:09:07 +02:00
|
|
|
return false;
|
2017-07-31 00:04:34 +02:00
|
|
|
}
|
|
|
|
|
2020-12-09 14:50:39 +01:00
|
|
|
wlr_drm_conn_log(conn, WLR_INFO,
|
|
|
|
"Modesetting with '%" PRId32 "x%" PRId32 "@%" PRId32 "mHz'",
|
|
|
|
wlr_mode->width, wlr_mode->height, wlr_mode->refresh);
|
2017-09-30 12:31:08 +02:00
|
|
|
|
2021-04-06 18:51:21 +02:00
|
|
|
// drm_crtc_page_flip expects a FB to be available
|
|
|
|
struct wlr_drm_plane *plane = conn->crtc->primary;
|
|
|
|
if (!plane_get_next_fb(plane)) {
|
2021-06-08 11:05:50 +02:00
|
|
|
wlr_drm_conn_log(conn, WLR_ERROR, "Missing FB in modeset");
|
|
|
|
return false;
|
2021-04-06 18:51:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!drm_crtc_page_flip(conn, state)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2021-08-10 17:48:04 +02:00
|
|
|
conn->status = WLR_DRM_CONN_CONNECTED;
|
2019-10-22 18:41:47 +02:00
|
|
|
wlr_output_update_mode(&conn->output, wlr_mode);
|
2018-09-04 15:09:07 +02:00
|
|
|
wlr_output_update_enabled(&conn->output, true);
|
2018-09-10 23:35:22 +02:00
|
|
|
conn->desired_enabled = true;
|
2018-09-04 15:09:07 +02:00
|
|
|
|
2018-04-18 01:15:25 +02:00
|
|
|
// When switching VTs, the mode is not updated but the buffers become
|
|
|
|
// invalid, so we need to manually damage the output here
|
|
|
|
wlr_output_damage_whole(&conn->output);
|
|
|
|
|
2017-05-07 18:26:48 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2019-10-26 22:35:51 +02:00
|
|
|
struct wlr_output_mode *wlr_drm_connector_add_mode(struct wlr_output *output,
|
2018-06-28 12:35:55 +02:00
|
|
|
const drmModeModeInfo *modeinfo) {
|
2018-09-17 22:25:20 +02:00
|
|
|
struct wlr_drm_connector *conn = get_drm_connector_from_output(output);
|
2018-06-28 12:35:55 +02:00
|
|
|
|
|
|
|
if (modeinfo->type != DRM_MODE_TYPE_USERDEF) {
|
2019-10-26 22:35:51 +02:00
|
|
|
return NULL;
|
2018-06-28 12:35:55 +02:00
|
|
|
}
|
|
|
|
|
2018-12-16 11:06:46 +01:00
|
|
|
struct wlr_output_mode *wlr_mode;
|
|
|
|
wl_list_for_each(wlr_mode, &conn->output.modes, link) {
|
|
|
|
struct wlr_drm_mode *mode = (struct wlr_drm_mode *)wlr_mode;
|
|
|
|
if (memcmp(&mode->drm_mode, modeinfo, sizeof(*modeinfo)) == 0) {
|
2019-10-26 22:35:51 +02:00
|
|
|
return wlr_mode;
|
2018-12-16 11:06:46 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-06-28 12:35:55 +02:00
|
|
|
struct wlr_drm_mode *mode = calloc(1, sizeof(*mode));
|
|
|
|
if (!mode) {
|
2019-10-26 22:35:51 +02:00
|
|
|
return NULL;
|
2018-06-28 12:35:55 +02:00
|
|
|
}
|
|
|
|
memcpy(&mode->drm_mode, modeinfo, sizeof(*modeinfo));
|
|
|
|
|
|
|
|
mode->wlr_mode.width = mode->drm_mode.hdisplay;
|
|
|
|
mode->wlr_mode.height = mode->drm_mode.vdisplay;
|
2018-12-16 11:06:46 +01:00
|
|
|
mode->wlr_mode.refresh = calculate_refresh_rate(modeinfo);
|
2018-06-28 12:35:55 +02:00
|
|
|
|
2020-12-09 14:50:39 +01:00
|
|
|
wlr_drm_conn_log(conn, WLR_INFO, "Registered custom mode "
|
2018-06-28 12:35:55 +02:00
|
|
|
"%"PRId32"x%"PRId32"@%"PRId32,
|
|
|
|
mode->wlr_mode.width, mode->wlr_mode.height,
|
|
|
|
mode->wlr_mode.refresh);
|
|
|
|
wl_list_insert(&conn->output.modes, &mode->wlr_mode.link);
|
2019-10-26 22:35:51 +02:00
|
|
|
|
|
|
|
return &mode->wlr_mode;
|
2018-06-28 12:35:55 +02:00
|
|
|
}
|
|
|
|
|
2018-04-21 12:42:18 +02:00
|
|
|
static bool drm_connector_set_cursor(struct wlr_output *output,
|
2020-12-04 16:41:16 +01:00
|
|
|
struct wlr_buffer *buffer, int hotspot_x, int hotspot_y) {
|
2018-09-17 22:25:20 +02:00
|
|
|
struct wlr_drm_connector *conn = get_drm_connector_from_output(output);
|
2020-12-09 14:31:06 +01:00
|
|
|
struct wlr_drm_backend *drm = conn->backend;
|
2017-09-30 12:31:08 +02:00
|
|
|
struct wlr_drm_crtc *crtc = conn->crtc;
|
2020-02-08 07:02:31 +01:00
|
|
|
|
2018-01-21 20:57:24 +01:00
|
|
|
if (!crtc) {
|
|
|
|
return false;
|
|
|
|
}
|
2017-06-26 09:32:36 +02:00
|
|
|
|
2018-03-11 11:40:03 +01:00
|
|
|
struct wlr_drm_plane *plane = crtc->cursor;
|
2020-05-11 10:53:17 +02:00
|
|
|
if (plane == NULL) {
|
|
|
|
return false;
|
2017-08-06 11:38:40 +02:00
|
|
|
}
|
2017-06-26 09:32:36 +02:00
|
|
|
|
2020-12-18 18:32:08 +01:00
|
|
|
if (conn->cursor_hotspot_x != hotspot_x ||
|
|
|
|
conn->cursor_hotspot_y != hotspot_y) {
|
2018-03-11 15:06:06 +01:00
|
|
|
// Update cursor hotspot
|
2020-12-18 18:32:08 +01:00
|
|
|
conn->cursor_x -= hotspot_x - conn->cursor_hotspot_x;
|
|
|
|
conn->cursor_y -= hotspot_y - conn->cursor_hotspot_y;
|
|
|
|
conn->cursor_hotspot_x = hotspot_x;
|
|
|
|
conn->cursor_hotspot_y = hotspot_y;
|
2018-03-11 15:06:06 +01:00
|
|
|
|
2019-04-23 19:22:42 +02:00
|
|
|
wlr_output_update_needs_frame(output);
|
2018-03-11 15:06:06 +01:00
|
|
|
}
|
|
|
|
|
2020-12-18 18:32:08 +01:00
|
|
|
conn->cursor_enabled = false;
|
2020-12-04 16:41:16 +01:00
|
|
|
if (buffer != NULL) {
|
|
|
|
if ((uint64_t)buffer->width != drm->cursor_width ||
|
|
|
|
(uint64_t)buffer->height != drm->cursor_height) {
|
|
|
|
wlr_drm_conn_log(conn, WLR_DEBUG, "Cursor buffer size mismatch");
|
2020-07-07 16:28:20 +02:00
|
|
|
return false;
|
|
|
|
}
|
2017-06-26 07:34:15 +02:00
|
|
|
|
2020-12-04 16:41:16 +01:00
|
|
|
struct wlr_buffer *local_buf;
|
|
|
|
if (drm->parent) {
|
|
|
|
struct wlr_drm_format *format =
|
2021-07-12 17:30:45 +02:00
|
|
|
drm_plane_pick_render_format(plane, &drm->mgpu_renderer);
|
2020-12-04 16:41:16 +01:00
|
|
|
if (format == NULL) {
|
|
|
|
wlr_log(WLR_ERROR, "Failed to pick cursor plane format");
|
|
|
|
return false;
|
|
|
|
}
|
2018-05-09 20:58:18 +02:00
|
|
|
|
2021-07-12 17:30:45 +02:00
|
|
|
bool ok = init_drm_surface(&plane->mgpu_surf, &drm->mgpu_renderer,
|
2020-12-04 16:41:16 +01:00
|
|
|
buffer->width, buffer->height, format);
|
|
|
|
free(format);
|
|
|
|
if (!ok) {
|
|
|
|
return false;
|
|
|
|
}
|
2021-03-11 09:49:38 +01:00
|
|
|
|
2020-12-04 16:41:16 +01:00
|
|
|
local_buf = drm_surface_blit(&plane->mgpu_surf, buffer);
|
|
|
|
if (local_buf == NULL) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
local_buf = wlr_buffer_lock(buffer);
|
2021-03-04 19:22:28 +01:00
|
|
|
}
|
|
|
|
|
2021-07-05 10:57:33 +02:00
|
|
|
bool ok = drm_fb_import(&plane->pending_fb, drm, local_buf,
|
2020-12-04 16:41:16 +01:00
|
|
|
&plane->formats);
|
|
|
|
wlr_buffer_unlock(local_buf);
|
|
|
|
if (!ok) {
|
2020-02-08 07:02:31 +01:00
|
|
|
return false;
|
|
|
|
}
|
2018-03-11 11:40:03 +01:00
|
|
|
|
2020-12-18 18:32:08 +01:00
|
|
|
conn->cursor_enabled = true;
|
|
|
|
conn->cursor_width = buffer->width;
|
|
|
|
conn->cursor_height = buffer->height;
|
2018-03-11 11:40:03 +01:00
|
|
|
}
|
2017-08-07 11:07:42 +02:00
|
|
|
|
2020-02-08 07:02:31 +01:00
|
|
|
wlr_output_update_needs_frame(output);
|
|
|
|
return true;
|
2017-06-16 21:38:34 +02:00
|
|
|
}
|
|
|
|
|
2018-04-21 12:42:18 +02:00
|
|
|
static bool drm_connector_move_cursor(struct wlr_output *output,
|
2017-06-16 21:38:34 +02:00
|
|
|
int x, int y) {
|
2018-09-17 22:25:20 +02:00
|
|
|
struct wlr_drm_connector *conn = get_drm_connector_from_output(output);
|
2018-01-21 22:16:55 +01:00
|
|
|
if (!conn->crtc) {
|
2018-01-21 21:47:02 +01:00
|
|
|
return false;
|
|
|
|
}
|
2017-10-29 18:45:53 +01:00
|
|
|
struct wlr_drm_plane *plane = conn->crtc->cursor;
|
2020-05-27 17:51:51 +02:00
|
|
|
if (!plane) {
|
|
|
|
return false;
|
|
|
|
}
|
2017-10-29 18:45:53 +01:00
|
|
|
|
2018-01-26 22:11:09 +01:00
|
|
|
struct wlr_box box = { .x = x, .y = y };
|
|
|
|
|
|
|
|
int width, height;
|
2018-01-30 10:23:35 +01:00
|
|
|
wlr_output_transformed_resolution(output, &width, &height);
|
2017-08-20 22:02:39 +02:00
|
|
|
|
2017-11-01 14:25:41 +01:00
|
|
|
enum wl_output_transform transform =
|
|
|
|
wlr_output_transform_invert(output->transform);
|
2018-12-21 19:56:10 +01:00
|
|
|
wlr_box_transform(&box, &box, transform, width, height);
|
2017-08-20 22:02:39 +02:00
|
|
|
|
2020-12-18 18:32:08 +01:00
|
|
|
box.x -= conn->cursor_hotspot_x;
|
|
|
|
box.y -= conn->cursor_hotspot_y;
|
2017-11-01 14:36:58 +01:00
|
|
|
|
2018-02-02 21:01:59 +01:00
|
|
|
conn->cursor_x = box.x;
|
|
|
|
conn->cursor_y = box.y;
|
|
|
|
|
2020-05-07 16:17:18 +02:00
|
|
|
wlr_output_update_needs_frame(output);
|
|
|
|
return true;
|
2017-06-16 21:38:34 +02:00
|
|
|
}
|
|
|
|
|
2020-05-27 18:16:03 +02:00
|
|
|
bool drm_connector_is_cursor_visible(struct wlr_drm_connector *conn) {
|
2020-12-18 18:32:08 +01:00
|
|
|
return conn->cursor_enabled &&
|
2020-05-27 18:16:03 +02:00
|
|
|
conn->cursor_x < conn->output.width &&
|
|
|
|
conn->cursor_y < conn->output.height &&
|
2020-12-18 18:32:08 +01:00
|
|
|
conn->cursor_x + conn->cursor_width >= 0 &&
|
|
|
|
conn->cursor_y + conn->cursor_height >= 0;
|
2020-05-27 18:16:03 +02:00
|
|
|
}
|
|
|
|
|
2020-12-09 15:15:17 +01:00
|
|
|
static void dealloc_crtc(struct wlr_drm_connector *conn);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Destroy the compositor-facing part of a connector.
|
|
|
|
*
|
|
|
|
* The connector isn't destroyed when disconnected. Only the compositor-facing
|
|
|
|
* wlr_output interface is cleaned up.
|
|
|
|
*/
|
|
|
|
static void drm_connector_destroy_output(struct wlr_output *output) {
|
2018-09-17 22:25:20 +02:00
|
|
|
struct wlr_drm_connector *conn = get_drm_connector_from_output(output);
|
2020-12-09 15:15:17 +01:00
|
|
|
|
|
|
|
dealloc_crtc(conn);
|
|
|
|
|
2021-08-10 17:48:04 +02:00
|
|
|
conn->status = WLR_DRM_CONN_DISCONNECTED;
|
2020-12-09 15:15:17 +01:00
|
|
|
conn->desired_enabled = false;
|
2020-12-23 12:14:36 +01:00
|
|
|
conn->possible_crtcs = 0;
|
2020-12-25 11:12:21 +01:00
|
|
|
conn->pending_page_flip_crtc = 0;
|
2020-12-09 15:15:17 +01:00
|
|
|
|
|
|
|
struct wlr_drm_mode *mode, *mode_tmp;
|
|
|
|
wl_list_for_each_safe(mode, mode_tmp, &conn->output.modes, wlr_mode.link) {
|
|
|
|
wl_list_remove(&mode->wlr_mode.link);
|
|
|
|
free(mode);
|
|
|
|
}
|
|
|
|
|
|
|
|
memset(&conn->output, 0, sizeof(struct wlr_output));
|
2017-05-07 18:26:48 +02:00
|
|
|
}
|
|
|
|
|
2020-12-02 10:37:07 +01:00
|
|
|
static const struct wlr_drm_format_set *drm_connector_get_cursor_formats(
|
|
|
|
struct wlr_output *output, uint32_t buffer_caps) {
|
|
|
|
if (!(buffer_caps & WLR_BUFFER_CAP_DMABUF)) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
struct wlr_drm_connector *conn = get_drm_connector_from_output(output);
|
2021-08-19 12:44:59 +02:00
|
|
|
if (!conn->crtc && !drm_connector_alloc_crtc(conn)) {
|
2021-07-28 22:56:18 +02:00
|
|
|
return NULL;
|
2020-12-02 10:37:07 +01:00
|
|
|
}
|
|
|
|
struct wlr_drm_plane *plane = conn->crtc->cursor;
|
|
|
|
if (!plane) {
|
2021-07-28 22:56:18 +02:00
|
|
|
return NULL;
|
2020-12-02 10:37:07 +01:00
|
|
|
}
|
|
|
|
if (conn->backend->parent) {
|
|
|
|
return &conn->backend->mgpu_formats;
|
|
|
|
}
|
|
|
|
return &plane->formats;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void drm_connector_get_cursor_size(struct wlr_output *output,
|
|
|
|
int *width, int *height) {
|
|
|
|
struct wlr_drm_backend *drm = get_drm_backend_from_backend(output->backend);
|
|
|
|
*width = (int)drm->cursor_width;
|
|
|
|
*height = (int)drm->cursor_height;
|
|
|
|
}
|
|
|
|
|
2020-12-19 16:33:52 +01:00
|
|
|
static const struct wlr_drm_format_set *drm_connector_get_primary_formats(
|
|
|
|
struct wlr_output *output, uint32_t buffer_caps) {
|
|
|
|
if (!(buffer_caps & WLR_BUFFER_CAP_DMABUF)) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
struct wlr_drm_connector *conn = get_drm_connector_from_output(output);
|
2021-08-19 12:44:59 +02:00
|
|
|
if (!conn->crtc && !drm_connector_alloc_crtc(conn)) {
|
2020-12-19 16:33:52 +01:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
if (conn->backend->parent) {
|
|
|
|
return &conn->backend->mgpu_formats;
|
|
|
|
}
|
|
|
|
return &conn->crtc->primary->formats;
|
|
|
|
}
|
|
|
|
|
2018-04-21 12:42:18 +02:00
|
|
|
static const struct wlr_output_impl output_impl = {
|
|
|
|
.set_cursor = drm_connector_set_cursor,
|
|
|
|
.move_cursor = drm_connector_move_cursor,
|
2020-12-09 15:15:17 +01:00
|
|
|
.destroy = drm_connector_destroy_output,
|
2020-04-02 12:41:19 +02:00
|
|
|
.test = drm_connector_test,
|
2019-04-23 18:26:21 +02:00
|
|
|
.commit = drm_connector_commit,
|
2018-04-21 12:42:18 +02:00
|
|
|
.get_gamma_size = drm_connector_get_gamma_size,
|
2020-12-02 10:37:07 +01:00
|
|
|
.get_cursor_formats = drm_connector_get_cursor_formats,
|
|
|
|
.get_cursor_size = drm_connector_get_cursor_size,
|
2020-12-19 16:33:52 +01:00
|
|
|
.get_primary_formats = drm_connector_get_primary_formats,
|
2017-05-07 18:26:48 +02:00
|
|
|
};
|
|
|
|
|
2017-12-19 19:59:08 +01:00
|
|
|
bool wlr_output_is_drm(struct wlr_output *output) {
|
|
|
|
return output->impl == &output_impl;
|
|
|
|
}
|
|
|
|
|
2021-01-15 21:50:17 +01:00
|
|
|
uint32_t wlr_drm_connector_get_id(struct wlr_output *output) {
|
|
|
|
struct wlr_drm_connector *conn = get_drm_connector_from_output(output);
|
|
|
|
return conn->id;
|
|
|
|
}
|
|
|
|
|
2021-09-19 16:36:23 +02:00
|
|
|
enum wl_output_transform wlr_drm_connector_get_panel_orientation(
|
|
|
|
struct wlr_output *output) {
|
|
|
|
struct wlr_drm_connector *conn = get_drm_connector_from_output(output);
|
|
|
|
if (conn->props.panel_orientation) {
|
|
|
|
return WL_OUTPUT_TRANSFORM_NORMAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
char *orientation = get_drm_prop_enum(conn->backend->fd, conn->id,
|
|
|
|
conn->props.panel_orientation);
|
|
|
|
if (orientation == NULL) {
|
|
|
|
return WL_OUTPUT_TRANSFORM_NORMAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
enum wl_output_transform tr;
|
|
|
|
if (strcmp(orientation, "Normal") == 0) {
|
|
|
|
tr = WL_OUTPUT_TRANSFORM_NORMAL;
|
|
|
|
} else if (strcmp(orientation, "Left Side Up") == 0) {
|
|
|
|
tr = WL_OUTPUT_TRANSFORM_90;
|
|
|
|
} else if (strcmp(orientation, "Upside Down") == 0) {
|
|
|
|
tr = WL_OUTPUT_TRANSFORM_180;
|
|
|
|
} else if (strcmp(orientation, "Right Side Up") == 0) {
|
|
|
|
tr = WL_OUTPUT_TRANSFORM_270;
|
|
|
|
} else {
|
|
|
|
wlr_drm_conn_log(conn, WLR_ERROR, "Unknown panel orientation: %s", orientation);
|
|
|
|
tr = WL_OUTPUT_TRANSFORM_NORMAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
free(orientation);
|
|
|
|
return tr;
|
|
|
|
}
|
|
|
|
|
2017-07-20 13:26:53 +02: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 10:37:15 +02:00
|
|
|
|
2018-09-04 15:09:07 +02:00
|
|
|
static void dealloc_crtc(struct wlr_drm_connector *conn) {
|
2020-12-09 14:31:06 +01:00
|
|
|
struct wlr_drm_backend *drm = conn->backend;
|
2018-09-04 15:09:07 +02:00
|
|
|
if (conn->crtc == NULL) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2020-12-09 14:50:39 +01:00
|
|
|
wlr_drm_conn_log(conn, WLR_DEBUG, "De-allocating CRTC %zu",
|
|
|
|
conn->crtc - drm->crtcs);
|
2018-09-04 19:44:44 +02:00
|
|
|
|
2021-08-10 18:47:14 +02:00
|
|
|
struct wlr_output_state output_state = {
|
2021-04-06 16:57:42 +02:00
|
|
|
.committed = WLR_OUTPUT_STATE_ENABLED,
|
|
|
|
.enabled = false,
|
|
|
|
};
|
2021-08-10 18:47:14 +02:00
|
|
|
struct wlr_drm_connector_state conn_state = {0};
|
|
|
|
drm_connector_state_init(&conn_state, conn, &output_state);
|
|
|
|
if (!drm_crtc_commit(conn, &conn_state, 0, false)) {
|
2021-04-27 09:07:57 +02:00
|
|
|
// On GPU unplug, disabling the CRTC can fail with EPERM
|
|
|
|
wlr_drm_conn_log(conn, WLR_ERROR, "Failed to disable CRTC %"PRIu32,
|
|
|
|
conn->crtc->id);
|
2020-06-05 17:38:32 +02:00
|
|
|
}
|
|
|
|
|
2020-02-08 07:02:31 +01:00
|
|
|
drm_plane_finish_surface(conn->crtc->primary);
|
|
|
|
drm_plane_finish_surface(conn->crtc->cursor);
|
2018-09-04 15:09:07 +02:00
|
|
|
|
2020-12-18 18:32:08 +01:00
|
|
|
conn->cursor_enabled = false;
|
2018-09-04 15:09:07 +02:00
|
|
|
conn->crtc = NULL;
|
|
|
|
}
|
|
|
|
|
2019-06-21 08:06:21 +02:00
|
|
|
static void realloc_crtcs(struct wlr_drm_backend *drm) {
|
|
|
|
assert(drm->num_crtcs > 0);
|
2018-09-04 15:09:07 +02:00
|
|
|
|
2019-06-21 08:06:21 +02:00
|
|
|
size_t num_outputs = wl_list_length(&drm->outputs);
|
|
|
|
if (num_outputs == 0) {
|
|
|
|
return;
|
2018-09-10 23:35:22 +02:00
|
|
|
}
|
|
|
|
|
2018-09-04 15:09:07 +02:00
|
|
|
wlr_log(WLR_DEBUG, "Reallocating CRTCs");
|
|
|
|
|
2019-06-21 08:06:21 +02:00
|
|
|
struct wlr_drm_connector *connectors[num_outputs];
|
|
|
|
uint32_t connector_constraints[num_outputs];
|
|
|
|
uint32_t previous_match[drm->num_crtcs];
|
|
|
|
uint32_t new_match[drm->num_crtcs];
|
|
|
|
|
2018-09-04 15:09:07 +02:00
|
|
|
for (size_t i = 0; i < drm->num_crtcs; ++i) {
|
2019-06-21 08:06:21 +02:00
|
|
|
previous_match[i] = UNMATCHED;
|
2018-09-04 15:09:07 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
wlr_log(WLR_DEBUG, "State before reallocation:");
|
2019-06-21 08:06:21 +02:00
|
|
|
size_t i = 0;
|
2018-09-04 15:09:07 +02:00
|
|
|
struct wlr_drm_connector *conn;
|
|
|
|
wl_list_for_each(conn, &drm->outputs, link) {
|
2018-09-10 23:35:22 +02:00
|
|
|
connectors[i] = conn;
|
2018-09-04 15:09:07 +02:00
|
|
|
|
2021-08-10 17:48:04 +02:00
|
|
|
wlr_log(WLR_DEBUG, " '%s' crtc=%d status=%d desired_enabled=%d",
|
2020-12-09 15:11:06 +01:00
|
|
|
conn->name, conn->crtc ? (int)(conn->crtc - drm->crtcs) : -1,
|
2021-08-10 17:48:04 +02:00
|
|
|
conn->status, conn->desired_enabled);
|
2018-09-04 15:09:07 +02:00
|
|
|
|
|
|
|
if (conn->crtc) {
|
2019-06-21 08:06:21 +02:00
|
|
|
previous_match[conn->crtc - drm->crtcs] = i;
|
2018-09-04 15:09:07 +02:00
|
|
|
}
|
|
|
|
|
2018-09-10 23:35:22 +02:00
|
|
|
// Only search CRTCs for user-enabled outputs (that are already
|
|
|
|
// connected or in need of a modeset)
|
2021-08-10 17:48:04 +02:00
|
|
|
if ((conn->status == WLR_DRM_CONN_CONNECTED ||
|
|
|
|
conn->status == WLR_DRM_CONN_NEEDS_MODESET) &&
|
2018-09-10 23:35:22 +02:00
|
|
|
conn->desired_enabled) {
|
2020-12-23 12:14:36 +01:00
|
|
|
connector_constraints[i] = conn->possible_crtcs;
|
2019-06-21 08:06:21 +02:00
|
|
|
} else {
|
|
|
|
// Will always fail to match anything
|
|
|
|
connector_constraints[i] = 0;
|
2018-09-04 15:09:07 +02:00
|
|
|
}
|
2019-06-21 08:06:21 +02:00
|
|
|
|
|
|
|
++i;
|
2018-09-04 15:09:07 +02:00
|
|
|
}
|
|
|
|
|
2019-06-21 08:06:21 +02:00
|
|
|
match_obj(num_outputs, connector_constraints,
|
|
|
|
drm->num_crtcs, previous_match, new_match);
|
2018-09-04 15:09:07 +02:00
|
|
|
|
2019-06-21 08:06:21 +02:00
|
|
|
// Converts our crtc=>connector result into a connector=>crtc one.
|
|
|
|
ssize_t connector_match[num_outputs];
|
|
|
|
for (size_t i = 0 ; i < num_outputs; ++i) {
|
|
|
|
connector_match[i] = -1;
|
2018-09-04 15:09:07 +02:00
|
|
|
}
|
|
|
|
for (size_t i = 0; i < drm->num_crtcs; ++i) {
|
2019-06-21 08:06:21 +02:00
|
|
|
if (new_match[i] != UNMATCHED) {
|
|
|
|
connector_match[new_match[i]] = i;
|
2018-09-04 15:09:07 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-06-21 08:06:21 +02:00
|
|
|
/*
|
|
|
|
* In the case that we add a new connector (hotplug) and we fail to
|
|
|
|
* match everything, we prefer to fail the new connector and keep all
|
|
|
|
* of the old mappings instead.
|
|
|
|
*/
|
|
|
|
for (size_t i = 0; i < num_outputs; ++i) {
|
|
|
|
struct wlr_drm_connector *conn = connectors[i];
|
2021-08-10 17:48:04 +02:00
|
|
|
if (conn->status == WLR_DRM_CONN_CONNECTED &&
|
2019-06-21 08:06:21 +02:00
|
|
|
conn->desired_enabled &&
|
|
|
|
connector_match[i] == -1) {
|
|
|
|
wlr_log(WLR_DEBUG, "Could not match a CRTC for previously connected output; "
|
|
|
|
"keeping old configuration");
|
|
|
|
return;
|
2018-09-04 15:09:07 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
wlr_log(WLR_DEBUG, "State after reallocation:");
|
2019-06-21 08:06:21 +02:00
|
|
|
|
|
|
|
// Apply new configuration
|
|
|
|
for (size_t i = 0; i < num_outputs; ++i) {
|
|
|
|
struct wlr_drm_connector *conn = connectors[i];
|
|
|
|
bool prev_enabled = conn->crtc;
|
|
|
|
|
2021-08-10 17:48:04 +02:00
|
|
|
wlr_log(WLR_DEBUG, " '%s' crtc=%zd status=%d desired_enabled=%d",
|
|
|
|
conn->name, connector_match[i], conn->status, conn->desired_enabled);
|
2018-09-04 15:09:07 +02:00
|
|
|
|
2019-06-21 08:06:21 +02:00
|
|
|
// We don't need to change anything.
|
|
|
|
if (prev_enabled && connector_match[i] == conn->crtc - drm->crtcs) {
|
|
|
|
continue;
|
|
|
|
}
|
2018-09-04 15:09:07 +02:00
|
|
|
|
2019-06-21 08:06:21 +02:00
|
|
|
dealloc_crtc(conn);
|
2018-09-04 15:09:07 +02:00
|
|
|
|
2019-06-21 08:06:21 +02:00
|
|
|
if (connector_match[i] == -1) {
|
|
|
|
if (prev_enabled) {
|
2020-12-09 14:50:39 +01:00
|
|
|
wlr_drm_conn_log(conn, WLR_DEBUG, "Output has lost its CRTC");
|
2021-08-10 17:48:04 +02:00
|
|
|
conn->status = WLR_DRM_CONN_NEEDS_MODESET;
|
2019-06-21 08:06:21 +02:00
|
|
|
wlr_output_update_enabled(&conn->output, false);
|
|
|
|
wlr_output_update_mode(&conn->output, NULL);
|
|
|
|
}
|
2019-01-19 10:14:01 +01:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2019-06-21 08:06:21 +02:00
|
|
|
conn->crtc = &drm->crtcs[connector_match[i]];
|
|
|
|
|
|
|
|
// Only realloc buffers if we have actually been modeset
|
2021-08-10 17:48:04 +02:00
|
|
|
if (conn->status != WLR_DRM_CONN_CONNECTED) {
|
2018-09-04 15:09:07 +02:00
|
|
|
continue;
|
|
|
|
}
|
2018-09-04 23:10:37 +02:00
|
|
|
wlr_output_damage_whole(&conn->output);
|
2018-09-04 15:09:07 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-09-07 12:24:10 +02:00
|
|
|
static uint32_t get_possible_crtcs(int fd, const drmModeConnector *conn) {
|
2020-12-10 21:56:49 +01:00
|
|
|
uint32_t possible_crtcs = 0;
|
2018-09-04 15:09:07 +02:00
|
|
|
|
2018-12-09 10:55:53 +01:00
|
|
|
for (int i = 0; i < conn->count_encoders; ++i) {
|
|
|
|
drmModeEncoder *enc = drmModeGetEncoder(fd, conn->encoders[i]);
|
2018-12-09 10:48:00 +01:00
|
|
|
if (!enc) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2020-12-10 21:56:49 +01:00
|
|
|
possible_crtcs |= enc->possible_crtcs;
|
2018-12-09 10:48:00 +01:00
|
|
|
|
|
|
|
drmModeFreeEncoder(enc);
|
2018-09-04 15:09:07 +02:00
|
|
|
}
|
|
|
|
|
2020-12-10 21:56:49 +01:00
|
|
|
return possible_crtcs;
|
2018-09-04 15:09:07 +02:00
|
|
|
}
|
|
|
|
|
2020-12-09 15:15:17 +01:00
|
|
|
static void disconnect_drm_connector(struct wlr_drm_connector *conn);
|
|
|
|
|
2021-06-09 12:03:20 +02:00
|
|
|
void scan_drm_connectors(struct wlr_drm_backend *drm,
|
|
|
|
struct wlr_device_hotplug_event *event) {
|
2019-06-24 03:52:23 +02:00
|
|
|
/*
|
|
|
|
* This GPU is not really a modesetting device.
|
|
|
|
* It's just being used as a renderer.
|
|
|
|
*/
|
|
|
|
if (drm->num_crtcs == 0) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2021-06-09 12:03:20 +02:00
|
|
|
if (event != NULL && event->connector_id != 0) {
|
|
|
|
wlr_log(WLR_INFO, "Scanning DRM connector %"PRIu32" on %s",
|
|
|
|
event->connector_id, drm->name);
|
|
|
|
} else {
|
|
|
|
wlr_log(WLR_INFO, "Scanning DRM connectors on %s", drm->name);
|
|
|
|
}
|
2017-05-04 11:58:11 +02:00
|
|
|
|
2017-09-30 11:22:26 +02:00
|
|
|
drmModeRes *res = drmModeGetResources(drm->fd);
|
2017-05-03 12:40:19 +02:00
|
|
|
if (!res) {
|
2018-07-09 23:49:54 +02:00
|
|
|
wlr_log_errno(WLR_ERROR, "Failed to get DRM resources");
|
2017-05-03 12:40:19 +02:00
|
|
|
return;
|
2017-05-03 07:49:03 +02:00
|
|
|
}
|
2017-05-01 05:20:48 +02:00
|
|
|
|
2018-09-02 09:00:21 +02:00
|
|
|
size_t seen_len = wl_list_length(&drm->outputs);
|
2017-10-22 12:45:23 +02:00
|
|
|
// +1 so length can never be 0, which is undefined behaviour.
|
|
|
|
// Last element isn't used.
|
2018-09-02 09:00:21 +02:00
|
|
|
bool seen[seen_len + 1];
|
2018-09-02 01:03:20 +02:00
|
|
|
memset(seen, false, sizeof(seen));
|
|
|
|
size_t new_outputs_len = 0;
|
2018-09-02 09:00:21 +02:00
|
|
|
struct wlr_drm_connector *new_outputs[res->count_connectors + 1];
|
2017-09-09 12:41:23 +02:00
|
|
|
|
2017-05-03 12:40:19 +02:00
|
|
|
for (int i = 0; i < res->count_connectors; ++i) {
|
2021-06-09 12:03:20 +02:00
|
|
|
uint32_t conn_id = res->connectors[i];
|
2017-10-22 23:38:30 +02:00
|
|
|
|
2018-12-09 10:05:03 +01:00
|
|
|
ssize_t index = -1;
|
2017-10-19 15:48:00 +02:00
|
|
|
struct wlr_drm_connector *c, *wlr_conn = NULL;
|
|
|
|
wl_list_for_each(c, &drm->outputs, link) {
|
|
|
|
index++;
|
2021-06-09 12:03:20 +02:00
|
|
|
if (c->id == conn_id) {
|
2017-10-19 15:48:00 +02:00
|
|
|
wlr_conn = c;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2017-10-22 23:38:30 +02:00
|
|
|
|
2021-06-09 12:03:20 +02:00
|
|
|
// If the hotplug event contains a connector ID, ignore any other
|
|
|
|
// connector.
|
|
|
|
if (event != NULL && event->connector_id != 0 &&
|
|
|
|
event->connector_id != conn_id) {
|
|
|
|
if (wlr_conn != NULL) {
|
|
|
|
seen[index] = true;
|
|
|
|
}
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
drmModeConnector *drm_conn = drmModeGetConnector(drm->fd, conn_id);
|
|
|
|
if (!drm_conn) {
|
|
|
|
wlr_log_errno(WLR_ERROR, "Failed to get DRM connector");
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
drmModeEncoder *curr_enc = drmModeGetEncoder(drm->fd,
|
|
|
|
drm_conn->encoder_id);
|
|
|
|
|
2017-10-19 15:48:00 +02:00
|
|
|
if (!wlr_conn) {
|
2017-09-30 12:31:08 +02:00
|
|
|
wlr_conn = calloc(1, sizeof(*wlr_conn));
|
|
|
|
if (!wlr_conn) {
|
2018-07-09 23:49:54 +02:00
|
|
|
wlr_log_errno(WLR_ERROR, "Allocation failed");
|
2017-10-22 23:38:30 +02:00
|
|
|
drmModeFreeEncoder(curr_enc);
|
2017-09-30 12:31:08 +02:00
|
|
|
drmModeFreeConnector(drm_conn);
|
2017-07-20 13:26:53 +02:00
|
|
|
continue;
|
2017-05-07 18:26:48 +02:00
|
|
|
}
|
2017-05-03 12:40:19 +02:00
|
|
|
|
2020-12-09 14:31:06 +01:00
|
|
|
wlr_conn->backend = drm;
|
2021-08-10 17:48:04 +02:00
|
|
|
wlr_conn->status = WLR_DRM_CONN_DISCONNECTED;
|
2017-09-30 12:31:08 +02:00
|
|
|
wlr_conn->id = drm_conn->connector_id;
|
2017-05-03 12:40:19 +02:00
|
|
|
|
2020-12-09 15:11:06 +01:00
|
|
|
snprintf(wlr_conn->name, sizeof(wlr_conn->name),
|
2018-09-04 15:09:07 +02:00
|
|
|
"%s-%"PRIu32, conn_get_name(drm_conn->connector_type),
|
|
|
|
drm_conn->connector_type_id);
|
|
|
|
|
2018-12-09 10:05:03 +01:00
|
|
|
wl_list_insert(drm->outputs.prev, &wlr_conn->link);
|
2020-12-09 15:11:06 +01:00
|
|
|
wlr_log(WLR_INFO, "Found connector '%s'", wlr_conn->name);
|
2017-05-03 12:40:19 +02:00
|
|
|
} else {
|
2017-09-09 12:41:23 +02:00
|
|
|
seen[index] = true;
|
2017-05-01 05:20:48 +02:00
|
|
|
}
|
|
|
|
|
2017-10-22 23:38:30 +02:00
|
|
|
if (curr_enc) {
|
|
|
|
for (size_t i = 0; i < drm->num_crtcs; ++i) {
|
|
|
|
if (drm->crtcs[i].id == curr_enc->crtc_id) {
|
|
|
|
wlr_conn->crtc = &drm->crtcs[i];
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
wlr_conn->crtc = NULL;
|
|
|
|
}
|
|
|
|
|
2018-10-04 14:11:37 +02:00
|
|
|
// This can only happen *after* hotplug, since we haven't read the
|
|
|
|
// connector properties yet
|
|
|
|
if (wlr_conn->props.link_status != 0) {
|
|
|
|
uint64_t link_status;
|
|
|
|
if (!get_drm_prop(drm->fd, wlr_conn->id,
|
|
|
|
wlr_conn->props.link_status, &link_status)) {
|
2020-12-09 14:50:39 +01:00
|
|
|
wlr_drm_conn_log(wlr_conn, WLR_ERROR,
|
|
|
|
"Failed to get link status prop");
|
2018-10-04 14:11:37 +02:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (link_status == DRM_MODE_LINK_STATUS_BAD) {
|
|
|
|
// We need to reload our list of modes and force a modeset
|
2020-12-09 14:50:39 +01:00
|
|
|
wlr_drm_conn_log(wlr_conn, WLR_INFO, "Bad link detected");
|
2020-12-09 15:15:17 +01:00
|
|
|
disconnect_drm_connector(wlr_conn);
|
2018-10-04 14:11:37 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-08-10 17:48:04 +02:00
|
|
|
if (wlr_conn->status == WLR_DRM_CONN_DISCONNECTED &&
|
2017-09-30 12:31:08 +02:00
|
|
|
drm_conn->connection == DRM_MODE_CONNECTED) {
|
2020-12-09 15:11:06 +01:00
|
|
|
wlr_log(WLR_INFO, "'%s' connected", wlr_conn->name);
|
2018-07-09 23:49:54 +02:00
|
|
|
wlr_log(WLR_DEBUG, "Current CRTC: %d",
|
2018-05-27 12:32:00 +02:00
|
|
|
wlr_conn->crtc ? (int)wlr_conn->crtc->id : -1);
|
2018-02-06 22:45:37 +01:00
|
|
|
|
2020-12-09 15:15:17 +01:00
|
|
|
wlr_output_init(&wlr_conn->output, &drm->backend, &output_impl,
|
|
|
|
drm->display);
|
|
|
|
|
2021-12-09 15:43:19 +01:00
|
|
|
wlr_output_set_name(&wlr_conn->output, wlr_conn->name);
|
2020-12-09 15:11:06 +01:00
|
|
|
|
2018-02-06 22:45:37 +01:00
|
|
|
wlr_conn->output.phys_width = drm_conn->mmWidth;
|
|
|
|
wlr_conn->output.phys_height = drm_conn->mmHeight;
|
2018-07-09 23:49:54 +02:00
|
|
|
wlr_log(WLR_INFO, "Physical size: %"PRId32"x%"PRId32,
|
2018-02-06 22:45:37 +01:00
|
|
|
wlr_conn->output.phys_width, wlr_conn->output.phys_height);
|
|
|
|
wlr_conn->output.subpixel = subpixel_map[drm_conn->subpixel];
|
|
|
|
|
2018-04-26 00:24:58 +02:00
|
|
|
get_drm_connector_props(drm->fd, wlr_conn->id, &wlr_conn->props);
|
2018-02-06 22:45:37 +01:00
|
|
|
|
2021-07-15 15:48:29 +02:00
|
|
|
uint64_t non_desktop;
|
|
|
|
if (get_drm_prop(drm->fd, wlr_conn->id,
|
|
|
|
wlr_conn->props.non_desktop, &non_desktop)) {
|
|
|
|
if (non_desktop == 1) {
|
|
|
|
wlr_log(WLR_INFO, "Non-desktop connector");
|
|
|
|
}
|
|
|
|
wlr_conn->output.non_desktop = non_desktop;
|
|
|
|
}
|
|
|
|
|
2018-02-06 22:45:37 +01:00
|
|
|
size_t edid_len = 0;
|
2018-04-26 00:24:58 +02:00
|
|
|
uint8_t *edid = get_drm_prop_blob(drm->fd,
|
2018-02-06 22:45:37 +01:00
|
|
|
wlr_conn->id, wlr_conn->props.edid, &edid_len);
|
|
|
|
parse_edid(&wlr_conn->output, edid_len, edid);
|
|
|
|
free(edid);
|
|
|
|
|
2021-01-13 00:33:19 +01:00
|
|
|
char *subconnector = NULL;
|
|
|
|
if (wlr_conn->props.subconnector) {
|
|
|
|
subconnector = get_drm_prop_enum(drm->fd,
|
|
|
|
wlr_conn->id, wlr_conn->props.subconnector);
|
|
|
|
}
|
|
|
|
if (subconnector && strcmp(subconnector, "Native") == 0) {
|
|
|
|
free(subconnector);
|
|
|
|
subconnector = NULL;
|
|
|
|
}
|
|
|
|
|
2019-12-26 16:09:05 +01:00
|
|
|
struct wlr_output *output = &wlr_conn->output;
|
|
|
|
char description[128];
|
2021-01-13 00:33:19 +01:00
|
|
|
snprintf(description, sizeof(description), "%s %s %s (%s%s%s)",
|
|
|
|
output->make, output->model, output->serial, output->name,
|
|
|
|
subconnector ? " via " : "", subconnector ? subconnector : "");
|
2019-12-26 16:09:05 +01:00
|
|
|
wlr_output_set_description(output, description);
|
|
|
|
|
2021-01-13 00:33:19 +01:00
|
|
|
free(subconnector);
|
|
|
|
|
2018-07-09 23:49:54 +02:00
|
|
|
wlr_log(WLR_INFO, "Detected modes:");
|
2017-05-03 12:40:19 +02:00
|
|
|
|
2017-09-30 12:31:08 +02:00
|
|
|
for (int i = 0; i < drm_conn->count_modes; ++i) {
|
|
|
|
struct wlr_drm_mode *mode = calloc(1, sizeof(*mode));
|
2017-08-16 09:23:21 +02:00
|
|
|
if (!mode) {
|
2018-07-09 23:49:54 +02:00
|
|
|
wlr_log_errno(WLR_ERROR, "Allocation failed");
|
2017-08-16 09:23:21 +02:00
|
|
|
continue;
|
|
|
|
}
|
2018-11-21 20:23:48 +01:00
|
|
|
|
2018-11-22 18:52:52 +01:00
|
|
|
if (drm_conn->modes[i].flags & DRM_MODE_FLAG_INTERLACE) {
|
2018-11-21 20:23:48 +01:00
|
|
|
free(mode);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2017-09-30 12:31:08 +02:00
|
|
|
mode->drm_mode = drm_conn->modes[i];
|
|
|
|
mode->wlr_mode.width = mode->drm_mode.hdisplay;
|
|
|
|
mode->wlr_mode.height = mode->drm_mode.vdisplay;
|
|
|
|
mode->wlr_mode.refresh = calculate_refresh_rate(&mode->drm_mode);
|
2019-03-21 21:12:43 +01:00
|
|
|
if (mode->drm_mode.type & DRM_MODE_TYPE_PREFERRED) {
|
|
|
|
mode->wlr_mode.preferred = true;
|
|
|
|
}
|
2017-05-03 12:40:19 +02:00
|
|
|
|
2019-12-20 10:56:59 +01:00
|
|
|
wlr_log(WLR_INFO, " %"PRId32"x%"PRId32"@%"PRId32" %s",
|
2017-08-14 14:03:51 +02:00
|
|
|
mode->wlr_mode.width, mode->wlr_mode.height,
|
2019-12-20 10:56:59 +01:00
|
|
|
mode->wlr_mode.refresh,
|
|
|
|
mode->wlr_mode.preferred ? "(preferred)" : "");
|
2017-05-01 05:20:48 +02:00
|
|
|
|
2021-07-30 23:02:30 +02:00
|
|
|
wl_list_insert(wlr_conn->output.modes.prev, &mode->wlr_mode.link);
|
2017-05-03 07:49:03 +02:00
|
|
|
}
|
2017-05-01 05:20:48 +02:00
|
|
|
|
2021-09-07 12:24:10 +02:00
|
|
|
wlr_conn->possible_crtcs = get_possible_crtcs(drm->fd, drm_conn);
|
2020-12-23 12:14:36 +01:00
|
|
|
if (wlr_conn->possible_crtcs == 0) {
|
2020-12-09 14:50:39 +01:00
|
|
|
wlr_drm_conn_log(wlr_conn, WLR_ERROR, "No CRTC possible");
|
2018-09-04 15:09:07 +02:00
|
|
|
}
|
|
|
|
|
2019-12-29 10:55:16 +01:00
|
|
|
// TODO: this results in connectors being enabled without a mode
|
|
|
|
// set
|
2018-09-02 01:03:20 +02:00
|
|
|
wlr_output_update_enabled(&wlr_conn->output, wlr_conn->crtc != NULL);
|
2018-09-10 23:35:22 +02:00
|
|
|
wlr_conn->desired_enabled = true;
|
2017-10-22 22:21:23 +02:00
|
|
|
|
2021-08-10 17:48:04 +02:00
|
|
|
wlr_conn->status = WLR_DRM_CONN_NEEDS_MODESET;
|
2018-09-02 01:03:20 +02:00
|
|
|
new_outputs[new_outputs_len++] = wlr_conn;
|
2021-08-10 17:48:04 +02:00
|
|
|
} else if ((wlr_conn->status == WLR_DRM_CONN_CONNECTED ||
|
|
|
|
wlr_conn->status == WLR_DRM_CONN_NEEDS_MODESET) &&
|
2017-09-30 12:31:08 +02:00
|
|
|
drm_conn->connection != DRM_MODE_CONNECTED) {
|
2020-12-09 15:11:06 +01:00
|
|
|
wlr_log(WLR_INFO, "'%s' disconnected", wlr_conn->name);
|
2020-12-09 15:15:17 +01:00
|
|
|
disconnect_drm_connector(wlr_conn);
|
2017-05-01 05:20:48 +02:00
|
|
|
}
|
|
|
|
|
2017-10-22 23:38:30 +02:00
|
|
|
drmModeFreeEncoder(curr_enc);
|
2017-09-30 12:31:08 +02:00
|
|
|
drmModeFreeConnector(drm_conn);
|
2017-05-01 05:20:48 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
drmModeFreeResources(res);
|
2017-09-09 12:41:23 +02:00
|
|
|
|
2018-12-09 10:05:03 +01:00
|
|
|
// Iterate in reverse order because we'll remove items from the list and
|
|
|
|
// still want indices to remain correct.
|
2017-10-19 15:48:00 +02:00
|
|
|
struct wlr_drm_connector *conn, *tmp_conn;
|
2017-10-22 12:45:23 +02:00
|
|
|
size_t index = wl_list_length(&drm->outputs);
|
2018-12-09 10:05:03 +01:00
|
|
|
wl_list_for_each_reverse_safe(conn, tmp_conn, &drm->outputs, link) {
|
2017-10-22 12:45:23 +02:00
|
|
|
index--;
|
2018-09-02 09:00:21 +02:00
|
|
|
if (index >= seen_len || seen[index]) {
|
2017-09-09 12:41:23 +02:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2020-12-09 15:11:06 +01:00
|
|
|
wlr_log(WLR_INFO, "'%s' disappeared", conn->name);
|
2020-12-22 19:38:29 +01:00
|
|
|
destroy_drm_connector(conn);
|
2017-09-09 12:41:23 +02:00
|
|
|
}
|
2018-09-02 01:03:20 +02:00
|
|
|
|
2019-06-21 08:06:21 +02:00
|
|
|
realloc_crtcs(drm);
|
2018-09-04 15:09:07 +02:00
|
|
|
|
2018-09-02 01:03:20 +02:00
|
|
|
for (size_t i = 0; i < new_outputs_len; ++i) {
|
|
|
|
struct wlr_drm_connector *conn = new_outputs[i];
|
|
|
|
|
2020-12-09 14:50:39 +01:00
|
|
|
wlr_drm_conn_log(conn, WLR_INFO, "Requesting modeset");
|
2018-09-02 01:03:20 +02:00
|
|
|
wlr_signal_emit_safe(&drm->backend.events.new_output,
|
|
|
|
&conn->output);
|
|
|
|
}
|
2017-05-01 05:20:48 +02:00
|
|
|
}
|
|
|
|
|
2021-11-03 14:23:00 +01:00
|
|
|
void scan_drm_leases(struct wlr_drm_backend *drm) {
|
|
|
|
drmModeLesseeListRes *list = drmModeListLessees(drm->fd);
|
|
|
|
if (list == NULL) {
|
|
|
|
wlr_log_errno(WLR_ERROR, "drmModeListLessees failed");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct wlr_drm_connector *conn;
|
|
|
|
wl_list_for_each(conn, &drm->outputs, link) {
|
|
|
|
if (conn->lease == NULL) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool found = false;
|
|
|
|
for (size_t i = 0; i < list->count; i++) {
|
|
|
|
if (list->lessees[i] == conn->lease->lessee_id) {
|
|
|
|
found = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!found) {
|
|
|
|
wlr_log(WLR_DEBUG, "DRM lease %"PRIu32" has been terminated",
|
|
|
|
conn->lease->lessee_id);
|
|
|
|
drm_lease_destroy(conn->lease);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
drmFree(list);
|
|
|
|
}
|
|
|
|
|
2018-10-02 12:11:09 +02:00
|
|
|
static int mhz_to_nsec(int mhz) {
|
|
|
|
return 1000000000000LL / mhz;
|
|
|
|
}
|
|
|
|
|
2021-06-24 11:56:45 +02:00
|
|
|
static void handle_page_flip(int fd, unsigned seq,
|
2019-06-26 17:14:31 +02:00
|
|
|
unsigned tv_sec, unsigned tv_usec, unsigned crtc_id, void *data) {
|
|
|
|
struct wlr_drm_backend *drm = data;
|
2020-02-08 07:02:31 +01:00
|
|
|
|
2020-12-25 11:12:21 +01:00
|
|
|
bool found = false;
|
|
|
|
struct wlr_drm_connector *conn;
|
|
|
|
wl_list_for_each(conn, &drm->outputs, link) {
|
|
|
|
if (conn->pending_page_flip_crtc == crtc_id) {
|
|
|
|
found = true;
|
2020-02-08 07:02:31 +01:00
|
|
|
break;
|
2019-06-26 17:14:31 +02:00
|
|
|
}
|
|
|
|
}
|
2020-12-25 11:12:21 +01:00
|
|
|
if (!found) {
|
|
|
|
wlr_log(WLR_DEBUG, "Unexpected page-flip event for CRTC %u", crtc_id);
|
2019-06-26 17:14:31 +02:00
|
|
|
return;
|
|
|
|
}
|
2017-05-03 12:40:19 +02:00
|
|
|
|
2020-12-25 11:12:21 +01:00
|
|
|
conn->pending_page_flip_crtc = 0;
|
2018-09-28 10:00:40 +02:00
|
|
|
|
2021-08-10 17:48:04 +02:00
|
|
|
if (conn->status != WLR_DRM_CONN_CONNECTED || conn->crtc == NULL) {
|
2020-12-25 11:12:21 +01:00
|
|
|
wlr_drm_conn_log(conn, WLR_DEBUG,
|
|
|
|
"Ignoring page-flip event for disabled connector");
|
2017-08-11 01:12:41 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2020-02-08 07:02:31 +01:00
|
|
|
struct wlr_drm_plane *plane = conn->crtc->primary;
|
2020-12-22 17:07:29 +01:00
|
|
|
if (plane->queued_fb) {
|
2020-02-08 07:02:31 +01:00
|
|
|
drm_fb_move(&plane->current_fb, &plane->queued_fb);
|
|
|
|
}
|
2020-12-22 17:07:29 +01:00
|
|
|
if (conn->crtc->cursor && conn->crtc->cursor->queued_fb) {
|
2020-02-08 07:02:31 +01:00
|
|
|
drm_fb_move(&conn->crtc->cursor->current_fb,
|
|
|
|
&conn->crtc->cursor->queued_fb);
|
2019-10-22 19:29:18 +02:00
|
|
|
}
|
|
|
|
|
2019-05-04 11:07:37 +02:00
|
|
|
uint32_t present_flags = WLR_OUTPUT_PRESENT_VSYNC |
|
|
|
|
WLR_OUTPUT_PRESENT_HW_CLOCK | WLR_OUTPUT_PRESENT_HW_COMPLETION;
|
2020-02-08 07:02:31 +01:00
|
|
|
/* Don't report ZERO_COPY in multi-gpu situations, because we had to copy
|
|
|
|
* data between the GPUs, even if we were using the direct scanout
|
|
|
|
* interface.
|
|
|
|
*/
|
2021-01-12 11:41:45 +01:00
|
|
|
if (!drm->parent && plane->current_fb &&
|
2020-12-22 17:07:29 +01:00
|
|
|
wlr_client_buffer_get(plane->current_fb->wlr_buf)) {
|
2019-05-04 11:07:37 +02:00
|
|
|
present_flags |= WLR_OUTPUT_PRESENT_ZERO_COPY;
|
2017-06-09 07:15:55 +02:00
|
|
|
}
|
|
|
|
|
2018-09-29 22:38:13 +02:00
|
|
|
struct timespec present_time = {
|
|
|
|
.tv_sec = tv_sec,
|
|
|
|
.tv_nsec = tv_usec * 1000,
|
|
|
|
};
|
2018-10-02 12:11:09 +02:00
|
|
|
struct wlr_output_event_present present_event = {
|
2019-11-16 22:15:33 +01:00
|
|
|
/* The DRM backend guarantees that the presentation event will be for
|
|
|
|
* the last submitted frame. */
|
|
|
|
.commit_seq = conn->output.commit_seq,
|
2021-10-14 21:40:12 +02:00
|
|
|
.presented = true,
|
2018-10-02 12:11:09 +02:00
|
|
|
.when = &present_time,
|
|
|
|
.seq = seq,
|
|
|
|
.refresh = mhz_to_nsec(conn->output.refresh),
|
2019-05-04 11:07:37 +02:00
|
|
|
.flags = present_flags,
|
2018-10-02 12:11:09 +02:00
|
|
|
};
|
|
|
|
wlr_output_send_present(&conn->output, &present_event);
|
2018-09-29 22:38:13 +02:00
|
|
|
|
2021-08-17 20:50:48 +02:00
|
|
|
if (drm->session->active) {
|
2018-01-26 22:39:23 +01:00
|
|
|
wlr_output_send_frame(&conn->output);
|
2017-05-03 07:49:03 +02:00
|
|
|
}
|
2017-05-03 12:40:19 +02:00
|
|
|
}
|
2017-05-01 05:20:48 +02:00
|
|
|
|
2018-04-26 00:24:58 +02:00
|
|
|
int handle_drm_event(int fd, uint32_t mask, void *data) {
|
2021-04-14 22:41:44 +02:00
|
|
|
struct wlr_drm_backend *drm = data;
|
|
|
|
|
2017-05-03 12:40:19 +02:00
|
|
|
drmEventContext event = {
|
2019-06-26 17:14:31 +02:00
|
|
|
.version = 3,
|
2021-06-24 11:56:45 +02:00
|
|
|
.page_flip_handler2 = handle_page_flip,
|
2017-05-03 12:40:19 +02:00
|
|
|
};
|
2017-05-01 07:49:18 +02:00
|
|
|
|
2021-04-14 22:41:44 +02:00
|
|
|
if (drmHandleEvent(fd, &event) != 0) {
|
|
|
|
wlr_log(WLR_ERROR, "drmHandleEvent failed");
|
|
|
|
wl_display_terminate(drm->display);
|
|
|
|
}
|
2017-05-03 12:40:19 +02:00
|
|
|
return 1;
|
|
|
|
}
|
2017-05-02 03:00:25 +02:00
|
|
|
|
2020-12-09 15:15:17 +01:00
|
|
|
static void disconnect_drm_connector(struct wlr_drm_connector *conn) {
|
2021-08-10 17:48:04 +02:00
|
|
|
if (conn->status == WLR_DRM_CONN_DISCONNECTED) {
|
2017-05-03 12:40:19 +02:00
|
|
|
return;
|
|
|
|
}
|
2017-05-01 05:20:48 +02:00
|
|
|
|
2020-12-09 15:15:17 +01:00
|
|
|
// This will cleanup the compositor-facing wlr_output, but won't destroy
|
|
|
|
// our wlr_drm_connector.
|
|
|
|
wlr_output_destroy(&conn->output);
|
2020-12-22 19:53:33 +01:00
|
|
|
|
2021-08-10 17:48:04 +02:00
|
|
|
assert(conn->status == WLR_DRM_CONN_DISCONNECTED);
|
2020-12-09 15:15:17 +01:00
|
|
|
}
|
2018-09-04 15:09:07 +02:00
|
|
|
|
2020-12-09 15:15:17 +01:00
|
|
|
void destroy_drm_connector(struct wlr_drm_connector *conn) {
|
|
|
|
disconnect_drm_connector(conn);
|
2018-10-09 10:25:38 +02:00
|
|
|
|
2020-12-09 15:15:17 +01:00
|
|
|
wl_list_remove(&conn->link);
|
|
|
|
free(conn);
|
2017-05-13 10:37:15 +02:00
|
|
|
}
|
2021-07-15 15:48:29 +02:00
|
|
|
|
2021-05-26 01:23:10 +02:00
|
|
|
int wlr_drm_backend_get_non_master_fd(struct wlr_backend *backend) {
|
|
|
|
assert(backend);
|
|
|
|
|
|
|
|
struct wlr_drm_backend *drm = get_drm_backend_from_backend(backend);
|
|
|
|
char *path = drmGetDeviceNameFromFd2(drm->fd);
|
|
|
|
if (!path) {
|
|
|
|
wlr_log(WLR_ERROR, "Failed to get device name from DRM fd");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int fd = open(path, O_RDWR | O_CLOEXEC);
|
|
|
|
if (fd < 0) {
|
|
|
|
wlr_log_errno(WLR_ERROR, "Unable to clone DRM fd for client fd");
|
|
|
|
free(path);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (drmIsMaster(fd) && drmDropMaster(fd) < 0) {
|
|
|
|
wlr_log_errno(WLR_ERROR, "Failed to drop master");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return fd;
|
|
|
|
}
|
|
|
|
|
2021-11-03 14:03:59 +01:00
|
|
|
struct wlr_drm_lease *wlr_drm_create_lease(struct wlr_output **outputs,
|
|
|
|
size_t n_outputs, int *lease_fd_ptr) {
|
2021-07-15 15:48:29 +02:00
|
|
|
assert(outputs);
|
|
|
|
|
|
|
|
if (n_outputs == 0) {
|
|
|
|
wlr_log(WLR_ERROR, "Can't lease 0 outputs");
|
2021-11-03 14:03:59 +01:00
|
|
|
return NULL;
|
2021-07-15 15:48:29 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
struct wlr_drm_backend *drm =
|
|
|
|
get_drm_backend_from_backend(outputs[0]->backend);
|
|
|
|
|
|
|
|
int n_objects = 0;
|
|
|
|
uint32_t objects[4 * n_outputs + 1];
|
|
|
|
for (size_t i = 0; i < n_outputs; ++i) {
|
|
|
|
struct wlr_drm_connector *conn =
|
|
|
|
get_drm_connector_from_output(outputs[i]);
|
2021-11-03 14:03:59 +01:00
|
|
|
assert(conn->lease == NULL);
|
2021-07-15 15:48:29 +02:00
|
|
|
|
|
|
|
if (conn->backend != drm) {
|
|
|
|
wlr_log(WLR_ERROR, "Can't lease output from different backends");
|
2021-11-03 14:03:59 +01:00
|
|
|
return NULL;
|
2021-07-15 15:48:29 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
objects[n_objects++] = conn->id;
|
|
|
|
wlr_log(WLR_DEBUG, "Connector %d", conn->id);
|
|
|
|
|
|
|
|
if (!conn->crtc) {
|
|
|
|
wlr_log(WLR_ERROR, "Connector has no CRTC");
|
2021-11-03 14:03:59 +01:00
|
|
|
return NULL;
|
2021-07-15 15:48:29 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
objects[n_objects++] = conn->crtc->id;
|
|
|
|
wlr_log(WLR_DEBUG, "CRTC %d", conn->crtc->id);
|
|
|
|
|
|
|
|
objects[n_objects++] = conn->crtc->primary->id;
|
|
|
|
wlr_log(WLR_DEBUG, "Primary plane %d", conn->crtc->primary->id);
|
|
|
|
|
|
|
|
if (conn->crtc->cursor) {
|
|
|
|
wlr_log(WLR_DEBUG, "Cursor plane %d", conn->crtc->cursor->id);
|
|
|
|
objects[n_objects++] = conn->crtc->cursor->id;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
assert(n_objects != 0);
|
|
|
|
|
2021-11-03 14:03:59 +01:00
|
|
|
struct wlr_drm_lease *lease = calloc(1, sizeof(*lease));
|
|
|
|
if (lease == NULL) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
lease->backend = drm;
|
|
|
|
wl_signal_init(&lease->events.destroy);
|
|
|
|
|
|
|
|
wlr_log(WLR_DEBUG, "Issuing DRM lease with %d objects", n_objects);
|
2021-07-15 15:48:29 +02:00
|
|
|
int lease_fd = drmModeCreateLease(drm->fd, objects, n_objects, 0,
|
2021-11-03 14:03:59 +01:00
|
|
|
&lease->lessee_id);
|
2021-07-15 15:48:29 +02:00
|
|
|
if (lease_fd < 0) {
|
2021-11-03 14:03:59 +01:00
|
|
|
free(lease);
|
|
|
|
return NULL;
|
2021-07-15 15:48:29 +02:00
|
|
|
}
|
2021-11-03 14:03:59 +01:00
|
|
|
*lease_fd_ptr = lease_fd;
|
2021-07-15 15:48:29 +02:00
|
|
|
|
2021-11-03 14:03:59 +01:00
|
|
|
wlr_log(WLR_DEBUG, "Issued DRM lease %"PRIu32, lease->lessee_id);
|
2021-07-15 15:48:29 +02:00
|
|
|
for (size_t i = 0; i < n_outputs; ++i) {
|
|
|
|
struct wlr_drm_connector *conn =
|
|
|
|
get_drm_connector_from_output(outputs[i]);
|
2021-11-03 14:03:59 +01:00
|
|
|
conn->lease = lease;
|
|
|
|
conn->crtc->lease = lease;
|
2021-07-15 15:48:29 +02:00
|
|
|
}
|
|
|
|
|
2021-11-03 14:03:59 +01:00
|
|
|
return lease;
|
2021-07-15 15:48:29 +02:00
|
|
|
}
|
|
|
|
|
2021-11-03 14:03:59 +01:00
|
|
|
void wlr_drm_lease_terminate(struct wlr_drm_lease *lease) {
|
|
|
|
struct wlr_drm_backend *drm = lease->backend;
|
2021-07-15 15:48:29 +02:00
|
|
|
|
2021-11-03 14:03:59 +01:00
|
|
|
wlr_log(WLR_DEBUG, "Terminating DRM lease %d", lease->lessee_id);
|
|
|
|
int ret = drmModeRevokeLease(drm->fd, lease->lessee_id);
|
|
|
|
if (ret < 0) {
|
|
|
|
wlr_log_errno(WLR_ERROR, "Failed to terminate lease");
|
2021-07-15 15:48:29 +02:00
|
|
|
}
|
|
|
|
|
2021-11-03 14:03:59 +01:00
|
|
|
drm_lease_destroy(lease);
|
|
|
|
}
|
|
|
|
|
|
|
|
void drm_lease_destroy(struct wlr_drm_lease *lease) {
|
|
|
|
struct wlr_drm_backend *drm = lease->backend;
|
|
|
|
|
|
|
|
wlr_signal_emit_safe(&lease->events.destroy, NULL);
|
|
|
|
|
2021-07-15 15:48:29 +02:00
|
|
|
struct wlr_drm_connector *conn;
|
|
|
|
wl_list_for_each(conn, &drm->outputs, link) {
|
2021-11-03 14:03:59 +01:00
|
|
|
if (conn->lease == lease) {
|
|
|
|
conn->lease = NULL;
|
2021-07-15 15:48:29 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for (size_t i = 0; i < drm->num_crtcs; ++i) {
|
2021-11-03 14:03:59 +01:00
|
|
|
if (drm->crtcs[i].lease == lease) {
|
|
|
|
drm->crtcs[i].lease = NULL;
|
2021-07-15 15:48:29 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-11-03 14:03:59 +01:00
|
|
|
free(lease);
|
2021-07-15 15:48:29 +02:00
|
|
|
}
|