2017-08-09 10:43:01 +02:00
|
|
|
#include <gbm.h>
|
|
|
|
#include <xf86drm.h>
|
|
|
|
#include <xf86drmMode.h>
|
|
|
|
#include <wlr/util/log.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)) {
|
|
|
|
wlr_log_errno(L_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)) {
|
|
|
|
wlr_log_errno(L_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) {
|
2017-09-30 11:22:26 +02:00
|
|
|
drmModeSetCursor(drm->fd, crtc->id, 0, 0, 0);
|
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)) {
|
2017-08-09 10:43:01 +02:00
|
|
|
wlr_log_errno(L_ERROR, "Failed to set hardware cursor");
|
|
|
|
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
|
|
|
}
|
|
|
|
|
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,
|
|
|
|
};
|