mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-11-02 03:45:58 +01:00
85d7ad2eef
Historically we haven't allowed direct scan-out for legacy KMS, because legacy misses the functionality to make sure a buffer can be scanned out. However with renderer v6 the backend can't figure out anymore whether the buffer comes from its internal swap-chain, because the backend doesn't have an internal swap-chain. The legacy KMS API guarantees that the driver won't reject a buffer as long as it's been allocated with the same parameters as the previous one. Let's check this in legacy_crtc_test.
219 lines
6.2 KiB
C
219 lines
6.2 KiB
C
#include <assert.h>
|
|
#include <gbm.h>
|
|
#include <stdlib.h>
|
|
#include <wlr/util/log.h>
|
|
#include <xf86drm.h>
|
|
#include <xf86drmMode.h>
|
|
#include "backend/drm/drm.h"
|
|
#include "backend/drm/iface.h"
|
|
#include "backend/drm/util.h"
|
|
|
|
static bool legacy_fb_props_match(struct wlr_drm_fb *fb1,
|
|
struct wlr_drm_fb *fb2) {
|
|
if (fb1->wlr_buf->width != fb2->wlr_buf->width ||
|
|
fb1->wlr_buf->height != fb2->wlr_buf->height ||
|
|
gbm_bo_get_format(fb1->bo) != gbm_bo_get_format(fb2->bo) ||
|
|
gbm_bo_get_modifier(fb1->bo) != gbm_bo_get_modifier(fb2->bo) ||
|
|
gbm_bo_get_plane_count(fb1->bo) != gbm_bo_get_plane_count(fb2->bo)) {
|
|
return false;
|
|
}
|
|
|
|
for (int i = 0; i < gbm_bo_get_plane_count(fb1->bo); i++) {
|
|
if (gbm_bo_get_stride_for_plane(fb1->bo, i) !=
|
|
gbm_bo_get_stride_for_plane(fb2->bo, i)) {
|
|
return false;
|
|
}
|
|
if (gbm_bo_get_offset(fb1->bo, i) != gbm_bo_get_offset(fb2->bo, i)) {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
static bool legacy_crtc_test(struct wlr_drm_connector *conn,
|
|
const struct wlr_output_state *state) {
|
|
struct wlr_drm_crtc *crtc = conn->crtc;
|
|
|
|
if ((state->committed & WLR_OUTPUT_STATE_BUFFER) &&
|
|
state->buffer_type == WLR_OUTPUT_STATE_BUFFER_SCANOUT &&
|
|
!drm_connector_state_is_modeset(state)) {
|
|
struct wlr_drm_fb *pending_fb = crtc->primary->pending_fb;
|
|
|
|
struct wlr_drm_fb *prev_fb = crtc->primary->queued_fb;
|
|
if (!prev_fb) {
|
|
prev_fb = crtc->primary->current_fb;
|
|
}
|
|
|
|
/* Legacy is only guaranteed to be able to display a FB if it's been
|
|
* allocated the same way as the previous one. */
|
|
if (prev_fb != NULL && !legacy_fb_props_match(prev_fb, pending_fb)) {
|
|
wlr_drm_conn_log(conn, WLR_DEBUG,
|
|
"Cannot change scan-out buffer parameters with legacy KMS API");
|
|
return false;
|
|
}
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
static bool legacy_crtc_commit(struct wlr_drm_connector *conn,
|
|
const struct wlr_output_state *state, uint32_t flags, bool test_only) {
|
|
if (!legacy_crtc_test(conn, state)) {
|
|
return false;
|
|
}
|
|
if (test_only) {
|
|
return true;
|
|
}
|
|
|
|
struct wlr_drm_backend *drm = conn->backend;
|
|
struct wlr_output *output = &conn->output;
|
|
struct wlr_drm_crtc *crtc = conn->crtc;
|
|
struct wlr_drm_plane *cursor = crtc->cursor;
|
|
|
|
bool active = drm_connector_state_active(conn, state);
|
|
|
|
uint32_t fb_id = 0;
|
|
if (active) {
|
|
struct wlr_drm_fb *fb = plane_get_next_fb(crtc->primary);
|
|
if (fb == NULL) {
|
|
wlr_log(WLR_ERROR, "%s: failed to acquire primary FB",
|
|
conn->output.name);
|
|
return false;
|
|
}
|
|
fb_id = fb->id;
|
|
}
|
|
|
|
if (drm_connector_state_is_modeset(state)) {
|
|
uint32_t *conns = NULL;
|
|
size_t conns_len = 0;
|
|
drmModeModeInfo *mode = NULL;
|
|
drmModeModeInfo mode_info = {0};
|
|
if (active) {
|
|
conns = &conn->id;
|
|
conns_len = 1;
|
|
drm_connector_state_mode(conn, state, &mode_info);
|
|
mode = &mode_info;
|
|
}
|
|
|
|
uint32_t dpms = active ? DRM_MODE_DPMS_ON : DRM_MODE_DPMS_OFF;
|
|
if (drmModeConnectorSetProperty(drm->fd, conn->id, conn->props.dpms,
|
|
dpms) != 0) {
|
|
wlr_drm_conn_log_errno(conn, WLR_ERROR,
|
|
"Failed to set DPMS property");
|
|
return false;
|
|
}
|
|
|
|
if (drmModeSetCrtc(drm->fd, crtc->id, fb_id, 0, 0,
|
|
conns, conns_len, mode)) {
|
|
wlr_drm_conn_log_errno(conn, WLR_ERROR, "Failed to set CRTC");
|
|
return false;
|
|
}
|
|
}
|
|
|
|
if (state->committed & WLR_OUTPUT_STATE_GAMMA_LUT) {
|
|
if (!drm_legacy_crtc_set_gamma(drm, crtc,
|
|
state->gamma_lut_size, state->gamma_lut)) {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
if ((state->committed & WLR_OUTPUT_STATE_ADAPTIVE_SYNC_ENABLED) &&
|
|
drm_connector_supports_vrr(conn)) {
|
|
if (drmModeObjectSetProperty(drm->fd, crtc->id, DRM_MODE_OBJECT_CRTC,
|
|
crtc->props.vrr_enabled,
|
|
state->adaptive_sync_enabled) != 0) {
|
|
wlr_drm_conn_log_errno(conn, WLR_ERROR,
|
|
"drmModeObjectSetProperty(VRR_ENABLED) failed");
|
|
return false;
|
|
}
|
|
output->adaptive_sync_status = state->adaptive_sync_enabled ?
|
|
WLR_OUTPUT_ADAPTIVE_SYNC_ENABLED :
|
|
WLR_OUTPUT_ADAPTIVE_SYNC_DISABLED;
|
|
wlr_drm_conn_log(conn, WLR_DEBUG, "VRR %s",
|
|
state->adaptive_sync_enabled ? "enabled" : "disabled");
|
|
}
|
|
|
|
if (cursor != NULL && drm_connector_is_cursor_visible(conn)) {
|
|
struct wlr_drm_fb *cursor_fb = plane_get_next_fb(cursor);
|
|
if (cursor_fb == NULL) {
|
|
wlr_drm_conn_log(conn, WLR_DEBUG, "Failed to acquire cursor FB");
|
|
return false;
|
|
}
|
|
|
|
uint32_t cursor_handle = gbm_bo_get_handle(cursor_fb->bo).u32;
|
|
uint32_t cursor_width = gbm_bo_get_width(cursor_fb->bo);
|
|
uint32_t cursor_height = gbm_bo_get_height(cursor_fb->bo);
|
|
if (drmModeSetCursor(drm->fd, crtc->id, cursor_handle,
|
|
cursor_width, cursor_height)) {
|
|
wlr_drm_conn_log_errno(conn, WLR_DEBUG, "drmModeSetCursor failed");
|
|
return false;
|
|
}
|
|
|
|
if (drmModeMoveCursor(drm->fd,
|
|
crtc->id, conn->cursor_x, conn->cursor_y) != 0) {
|
|
wlr_drm_conn_log_errno(conn, WLR_ERROR, "drmModeMoveCursor failed");
|
|
return false;
|
|
}
|
|
} else {
|
|
if (drmModeSetCursor(drm->fd, crtc->id, 0, 0, 0)) {
|
|
wlr_drm_conn_log_errno(conn, WLR_DEBUG, "drmModeSetCursor failed");
|
|
return false;
|
|
}
|
|
}
|
|
|
|
if (flags & DRM_MODE_PAGE_FLIP_EVENT) {
|
|
if (drmModePageFlip(drm->fd, crtc->id, fb_id,
|
|
DRM_MODE_PAGE_FLIP_EVENT, drm)) {
|
|
wlr_drm_conn_log_errno(conn, WLR_ERROR, "drmModePageFlip failed");
|
|
return false;
|
|
}
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
static void fill_empty_gamma_table(size_t size,
|
|
uint16_t *r, uint16_t *g, uint16_t *b) {
|
|
assert(0xFFFF < UINT64_MAX / (size - 1));
|
|
for (uint32_t i = 0; i < size; ++i) {
|
|
uint16_t val = (uint64_t)0xFFFF * i / (size - 1);
|
|
r[i] = g[i] = b[i] = val;
|
|
}
|
|
}
|
|
|
|
bool drm_legacy_crtc_set_gamma(struct wlr_drm_backend *drm,
|
|
struct wlr_drm_crtc *crtc, size_t size, uint16_t *lut) {
|
|
uint16_t *linear_lut = NULL;
|
|
if (size == 0) {
|
|
// The legacy interface doesn't offer a way to reset the gamma LUT
|
|
size = drm_crtc_get_gamma_lut_size(drm, crtc);
|
|
if (size == 0) {
|
|
return false;
|
|
}
|
|
|
|
linear_lut = malloc(3 * size * sizeof(uint16_t));
|
|
if (linear_lut == NULL) {
|
|
wlr_log_errno(WLR_ERROR, "Allocation failed");
|
|
return false;
|
|
}
|
|
fill_empty_gamma_table(size, linear_lut, linear_lut + size,
|
|
linear_lut + 2 * size);
|
|
|
|
lut = linear_lut;
|
|
}
|
|
|
|
uint16_t *r = lut, *g = lut + size, *b = lut + 2 * size;
|
|
if (drmModeCrtcSetGamma(drm->fd, crtc->id, size, r, g, b) != 0) {
|
|
wlr_log_errno(WLR_ERROR, "Failed to set gamma LUT on CRTC %"PRIu32,
|
|
crtc->id);
|
|
return false;
|
|
}
|
|
|
|
free(linear_lut);
|
|
return true;
|
|
}
|
|
|
|
const struct wlr_drm_interface legacy_iface = {
|
|
.crtc_commit = legacy_crtc_commit,
|
|
};
|