2017-06-10 18:30:02 +02:00
|
|
|
#ifndef DRM_BACKEND_H
|
|
|
|
#define DRM_BACKEND_H
|
2017-05-01 05:20:48 +02:00
|
|
|
|
|
|
|
#include <stdbool.h>
|
2017-06-10 18:30:02 +02:00
|
|
|
#include <stddef.h>
|
2017-05-01 05:20:48 +02:00
|
|
|
#include <stdint.h>
|
2017-06-10 18:30:02 +02:00
|
|
|
#include <wayland-server.h>
|
2017-05-01 05:20:48 +02:00
|
|
|
#include <xf86drmMode.h>
|
|
|
|
#include <EGL/egl.h>
|
2017-06-10 18:30:02 +02:00
|
|
|
#include <libudev.h>
|
2017-05-01 05:20:48 +02:00
|
|
|
#include <gbm.h>
|
|
|
|
|
2017-07-11 09:18:34 +02:00
|
|
|
#include <wlr/backend/session.h>
|
2017-06-10 18:30:02 +02:00
|
|
|
#include <wlr/backend/drm.h>
|
2017-06-21 18:10:07 +02:00
|
|
|
#include <wlr/util/list.h>
|
2017-06-10 18:30:02 +02:00
|
|
|
|
2017-07-20 10:51:59 +02:00
|
|
|
#include <backend/egl.h>
|
|
|
|
#include <backend/udev.h>
|
|
|
|
#include "drm-properties.h"
|
|
|
|
|
|
|
|
struct wlr_drm_plane {
|
|
|
|
uint32_t type;
|
|
|
|
uint32_t id;
|
|
|
|
uint32_t fb_id;
|
|
|
|
|
|
|
|
uint32_t possible_crtcs;
|
|
|
|
|
|
|
|
int32_t x, y;
|
|
|
|
uint32_t width, height;
|
|
|
|
|
|
|
|
struct gbm_surface *gbm;
|
|
|
|
EGLSurface egl;
|
|
|
|
|
|
|
|
struct gbm_bo *front;
|
|
|
|
struct gbm_bo *back;
|
|
|
|
|
|
|
|
union wlr_drm_plane_props props;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct wlr_drm_crtc {
|
|
|
|
uint32_t id;
|
2017-07-31 00:04:34 +02:00
|
|
|
union {
|
|
|
|
struct {
|
|
|
|
struct wlr_drm_plane *overlay;
|
|
|
|
struct wlr_drm_plane *primary;
|
|
|
|
struct wlr_drm_plane *cursor;
|
|
|
|
};
|
|
|
|
struct wlr_drm_plane *planes[3];
|
|
|
|
};
|
2017-07-29 12:14:29 +02:00
|
|
|
|
2017-07-20 10:51:59 +02:00
|
|
|
union wlr_drm_crtc_props props;
|
2017-07-20 13:26:53 +02:00
|
|
|
|
|
|
|
struct wl_list connectors;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct wlr_drm_connector {
|
|
|
|
struct wlr_output *base;
|
|
|
|
uint32_t id;
|
|
|
|
struct wlr_drm_crtc *crtc;
|
|
|
|
|
|
|
|
union wlr_drm_connector_props props;
|
|
|
|
|
|
|
|
struct wl_list link;
|
2017-07-20 10:51:59 +02:00
|
|
|
};
|
2017-05-03 07:17:14 +02:00
|
|
|
|
2017-05-01 07:49:18 +02:00
|
|
|
struct wlr_drm_renderer {
|
|
|
|
int fd;
|
|
|
|
struct gbm_device *gbm;
|
2017-05-03 07:17:14 +02:00
|
|
|
struct wlr_egl egl;
|
2017-05-01 05:20:48 +02:00
|
|
|
};
|
|
|
|
|
2017-05-03 11:28:44 +02:00
|
|
|
bool wlr_drm_renderer_init(struct wlr_drm_renderer *renderer, int fd);
|
2017-05-01 07:49:18 +02:00
|
|
|
void wlr_drm_renderer_free(struct wlr_drm_renderer *renderer);
|
2017-05-01 05:20:48 +02:00
|
|
|
|
2017-06-10 18:30:02 +02:00
|
|
|
struct wlr_backend_state {
|
2017-07-20 13:26:53 +02:00
|
|
|
struct wlr_backend *base;
|
|
|
|
|
2017-06-10 18:30:02 +02:00
|
|
|
int fd;
|
|
|
|
dev_t dev;
|
|
|
|
|
2017-07-20 10:51:59 +02:00
|
|
|
size_t num_crtcs;
|
|
|
|
struct wlr_drm_crtc *crtcs;
|
|
|
|
size_t num_planes;
|
|
|
|
struct wlr_drm_plane *planes;
|
|
|
|
|
2017-07-31 00:04:34 +02:00
|
|
|
union {
|
|
|
|
struct {
|
|
|
|
size_t num_overlay_planes;
|
|
|
|
size_t num_primary_planes;
|
|
|
|
size_t num_cursor_planes;
|
|
|
|
};
|
|
|
|
size_t num_type_planes[3];
|
|
|
|
};
|
|
|
|
|
|
|
|
union {
|
|
|
|
struct {
|
|
|
|
struct wlr_drm_plane *overlay_planes;
|
|
|
|
struct wlr_drm_plane *primary_planes;
|
|
|
|
struct wlr_drm_plane *cursor_planes;
|
|
|
|
};
|
|
|
|
struct wlr_drm_plane *type_planes[3];
|
|
|
|
};
|
2017-07-20 10:51:59 +02:00
|
|
|
|
2017-06-22 20:26:02 +02:00
|
|
|
struct wl_display *display;
|
2017-06-10 18:30:02 +02:00
|
|
|
struct wl_event_source *drm_event;
|
|
|
|
|
2017-06-21 02:47:53 +02:00
|
|
|
struct wl_listener session_signal;
|
2017-06-10 18:30:02 +02:00
|
|
|
struct wl_listener drm_invalidated;
|
|
|
|
|
|
|
|
uint32_t taken_crtcs;
|
|
|
|
list_t *outputs;
|
|
|
|
|
|
|
|
struct wlr_drm_renderer renderer;
|
|
|
|
struct wlr_session *session;
|
|
|
|
struct wlr_udev *udev;
|
|
|
|
};
|
|
|
|
|
2017-05-03 07:49:03 +02:00
|
|
|
enum wlr_drm_output_state {
|
2017-07-20 13:26:53 +02:00
|
|
|
WLR_DRM_OUTPUT_DISCONNECTED,
|
|
|
|
WLR_DRM_OUTPUT_NEEDS_MODESET,
|
|
|
|
WLR_DRM_OUTPUT_CONNECTED,
|
2017-05-01 07:49:18 +02:00
|
|
|
};
|
|
|
|
|
2017-05-07 18:26:48 +02:00
|
|
|
struct wlr_output_mode_state {
|
|
|
|
struct wlr_wl_output_mode *wlr_mode;
|
|
|
|
drmModeModeInfo mode;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct wlr_output_state {
|
2017-07-20 13:26:53 +02:00
|
|
|
struct wlr_output *base;
|
2017-05-03 07:49:03 +02:00
|
|
|
enum wlr_drm_output_state state;
|
2017-05-01 05:20:48 +02:00
|
|
|
uint32_t connector;
|
|
|
|
|
2017-08-05 07:27:59 +02:00
|
|
|
struct wlr_drm_crtc *crtc;
|
2017-07-29 12:14:29 +02:00
|
|
|
uint32_t possible_crtc;
|
|
|
|
|
2017-07-20 13:26:53 +02:00
|
|
|
union wlr_drm_connector_props props;
|
2017-05-13 10:37:15 +02:00
|
|
|
|
2017-05-01 05:20:48 +02:00
|
|
|
uint32_t width;
|
|
|
|
uint32_t height;
|
|
|
|
|
|
|
|
drmModeCrtc *old_crtc;
|
|
|
|
|
2017-05-01 07:49:18 +02:00
|
|
|
struct wlr_drm_renderer *renderer;
|
2017-06-16 21:38:34 +02:00
|
|
|
struct gbm_bo *bo[2];
|
|
|
|
struct gbm_bo *cursor_bo[2];
|
|
|
|
int current_cursor;
|
|
|
|
uint32_t cursor_width, cursor_height;
|
2017-05-01 05:20:48 +02:00
|
|
|
|
|
|
|
bool pageflip_pending;
|
|
|
|
bool cleanup;
|
|
|
|
};
|
|
|
|
|
2017-07-20 10:51:59 +02:00
|
|
|
bool wlr_drm_init_resources(struct wlr_backend_state *drm);
|
2017-05-07 18:26:48 +02:00
|
|
|
void wlr_drm_output_cleanup(struct wlr_output_state *output, bool restore);
|
2017-05-01 05:20:48 +02:00
|
|
|
|
2017-05-07 16:00:23 +02:00
|
|
|
void wlr_drm_scan_connectors(struct wlr_backend_state *state);
|
2017-05-03 11:28:44 +02:00
|
|
|
int wlr_drm_event(int fd, uint32_t mask, void *data);
|
2017-05-01 05:20:48 +02:00
|
|
|
|
2017-05-14 02:48:47 +02:00
|
|
|
void wlr_drm_output_start_renderer(struct wlr_output_state *output);
|
2017-06-21 03:31:29 +02:00
|
|
|
void wlr_drm_output_pause_renderer(struct wlr_output_state *output);
|
2017-05-13 15:12:47 +02:00
|
|
|
|
2017-05-01 05:20:48 +02:00
|
|
|
#endif
|