2017-08-09 10:43:01 +02:00
|
|
|
#include <gbm.h>
|
2018-02-12 21:29:23 +01:00
|
|
|
#include <wlr/util/log.h>
|
2017-08-09 10:43:01 +02:00
|
|
|
#include <xf86drm.h>
|
|
|
|
#include <xf86drmMode.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"
|
2017-08-09 10:43:01 +02:00
|
|
|
|
2017-09-30 11:22:26 +02:00
|
|
|
static bool legacy_crtc_pageflip(struct wlr_drm_backend *drm,
|
2017-09-30 12:31:08 +02:00
|
|
|
struct wlr_drm_connector *conn, struct wlr_drm_crtc *crtc,
|
2017-08-13 01:52:22 +02:00
|
|
|
uint32_t fb_id, drmModeModeInfo *mode) {
|
2017-08-09 10:43:01 +02:00
|
|
|
if (mode) {
|
2017-09-30 11:22:26 +02:00
|
|
|
if (drmModeSetCrtc(drm->fd, crtc->id, fb_id, 0, 0,
|
2017-09-30 12:31:08 +02:00
|
|
|
&conn->id, 1, mode)) {
|
2018-07-09 23:49:54 +02:00
|
|
|
wlr_log_errno(WLR_ERROR, "%s: Failed to set CRTC", conn->output.name);
|
2017-09-24 01:19:49 +02:00
|
|
|
return false;
|
|
|
|
}
|
2017-08-09 10:43:01 +02:00
|
|
|
}
|
|
|
|
|
2017-09-30 12:31:08 +02:00
|
|
|
if (drmModePageFlip(drm->fd, crtc->id, fb_id, DRM_MODE_PAGE_FLIP_EVENT, conn)) {
|
2018-07-09 23:49:54 +02:00
|
|
|
wlr_log_errno(WLR_ERROR, "%s: Failed to page flip", conn->output.name);
|
2017-09-24 01:19:49 +02:00
|
|
|
return false;
|
|
|
|
}
|
2017-08-09 10:43:01 +02:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-01-07 00:28:21 +01:00
|
|
|
static bool legacy_conn_enable(struct wlr_drm_backend *drm,
|
2017-09-30 12:31:08 +02:00
|
|
|
struct wlr_drm_connector *conn, bool enable) {
|
2018-01-07 00:28:21 +01:00
|
|
|
int ret = drmModeConnectorSetProperty(drm->fd, conn->id, conn->props.dpms,
|
2017-08-09 10:43:01 +02:00
|
|
|
enable ? DRM_MODE_DPMS_ON : DRM_MODE_DPMS_OFF);
|
2018-01-07 00:28:21 +01:00
|
|
|
return ret >= 0;
|
2017-08-09 10:43:01 +02:00
|
|
|
}
|
|
|
|
|
2017-09-30 11:22:26 +02:00
|
|
|
bool legacy_crtc_set_cursor(struct wlr_drm_backend *drm,
|
2017-08-13 01:52:22 +02:00
|
|
|
struct wlr_drm_crtc *crtc, struct gbm_bo *bo) {
|
2017-08-09 10:43:01 +02:00
|
|
|
if (!crtc || !crtc->cursor) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!bo) {
|
2018-09-10 17:30:26 +02:00
|
|
|
if (drmModeSetCursor(drm->fd, crtc->id, 0, 0, 0)) {
|
|
|
|
wlr_log_errno(WLR_DEBUG, "Failed to clear hardware cursor");
|
|
|
|
return false;
|
|
|
|
}
|
2017-08-09 10:43:01 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct wlr_drm_plane *plane = crtc->cursor;
|
|
|
|
|
2017-09-30 11:22:26 +02:00
|
|
|
if (drmModeSetCursor(drm->fd, crtc->id, gbm_bo_get_handle(bo).u32,
|
2017-09-30 09:52:58 +02:00
|
|
|
plane->surf.width, plane->surf.height)) {
|
2018-07-09 23:49:54 +02:00
|
|
|
wlr_log_errno(WLR_DEBUG, "Failed to set hardware cursor");
|
2017-08-09 10:43:01 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2017-09-30 11:22:26 +02:00
|
|
|
bool legacy_crtc_move_cursor(struct wlr_drm_backend *drm,
|
2017-08-13 01:52:22 +02:00
|
|
|
struct wlr_drm_crtc *crtc, int x, int y) {
|
2017-09-30 11:22:26 +02:00
|
|
|
return !drmModeMoveCursor(drm->fd, crtc->id, x, y);
|
2017-08-09 10:43:01 +02:00
|
|
|
}
|
|
|
|
|
2018-02-01 20:27:35 +01:00
|
|
|
bool legacy_crtc_set_gamma(struct wlr_drm_backend *drm,
|
|
|
|
struct wlr_drm_crtc *crtc, uint16_t *r, uint16_t *g, uint16_t *b,
|
|
|
|
uint32_t size) {
|
|
|
|
return !drmModeCrtcSetGamma(drm->fd, crtc->id, size, r, g, b);
|
|
|
|
}
|
|
|
|
|
2018-02-04 21:03:44 +01:00
|
|
|
uint32_t legacy_crtc_get_gamma_size(struct wlr_drm_backend *drm,
|
|
|
|
struct wlr_drm_crtc *crtc) {
|
|
|
|
return crtc->legacy_crtc->gamma_size;
|
|
|
|
}
|
2018-02-01 20:27:35 +01:00
|
|
|
|
2017-10-02 10:44:33 +02:00
|
|
|
const struct wlr_drm_interface legacy_iface = {
|
2017-08-09 10:43:01 +02:00
|
|
|
.conn_enable = legacy_conn_enable,
|
|
|
|
.crtc_pageflip = legacy_crtc_pageflip,
|
|
|
|
.crtc_set_cursor = legacy_crtc_set_cursor,
|
|
|
|
.crtc_move_cursor = legacy_crtc_move_cursor,
|
2018-02-01 20:27:35 +01:00
|
|
|
.crtc_set_gamma = legacy_crtc_set_gamma,
|
2018-02-04 21:03:44 +01:00
|
|
|
.crtc_get_gamma_size = legacy_crtc_get_gamma_size,
|
2017-08-09 10:43:01 +02:00
|
|
|
};
|