2017-09-30 19:03:34 +13:00
|
|
|
#ifndef BACKEND_DRM_DRM_H
|
|
|
|
#define BACKEND_DRM_DRM_H
|
2017-05-01 15:20:48 +12:00
|
|
|
|
|
|
|
#include <stdbool.h>
|
2017-06-10 12:30:02 -04:00
|
|
|
#include <stddef.h>
|
2017-05-01 15:20:48 +12:00
|
|
|
#include <stdint.h>
|
2017-06-10 12:30:02 -04:00
|
|
|
#include <wayland-server.h>
|
2017-05-01 15:20:48 +12:00
|
|
|
#include <xf86drmMode.h>
|
|
|
|
#include <EGL/egl.h>
|
|
|
|
#include <gbm.h>
|
2017-10-19 16:48:00 +03:00
|
|
|
#include <wayland-util.h>
|
2017-05-01 15:20:48 +12:00
|
|
|
|
2017-07-11 19:18:34 +12:00
|
|
|
#include <wlr/backend/session.h>
|
2017-06-10 12:30:02 -04:00
|
|
|
#include <wlr/backend/drm.h>
|
2017-08-13 10:51:50 -04:00
|
|
|
#include <wlr/types/wlr_output.h>
|
2017-10-21 14:48:58 +13:00
|
|
|
#include <wlr/render/egl.h>
|
2017-10-21 22:03:29 -04:00
|
|
|
#include <wlr/types/wlr_list.h>
|
2017-06-10 12:30:02 -04:00
|
|
|
|
2017-09-30 19:11:41 +13:00
|
|
|
#include "iface.h"
|
2017-09-30 19:03:34 +13:00
|
|
|
#include "properties.h"
|
2017-09-30 20:52:58 +13:00
|
|
|
#include "renderer.h"
|
2017-07-20 20:51:59 +12:00
|
|
|
|
|
|
|
struct wlr_drm_plane {
|
|
|
|
uint32_t type;
|
|
|
|
uint32_t id;
|
|
|
|
|
|
|
|
uint32_t possible_crtcs;
|
|
|
|
|
2017-09-30 20:52:58 +13:00
|
|
|
struct wlr_drm_surface surf;
|
2017-10-01 19:22:47 +13:00
|
|
|
struct wlr_drm_surface mgpu_surf;
|
2017-07-20 20:51:59 +12:00
|
|
|
|
2017-08-06 21:38:40 +12:00
|
|
|
// Only used by cursor
|
|
|
|
float matrix[16];
|
2017-08-08 18:02:14 +02:00
|
|
|
struct wlr_texture *wlr_tex;
|
2017-08-07 21:07:42 +12:00
|
|
|
struct gbm_bo *cursor_bo;
|
2017-10-26 18:58:44 +02:00
|
|
|
bool cursor_enabled;
|
2017-10-29 18:45:53 +01:00
|
|
|
int32_t cursor_hotspot_x, cursor_hotspot_y;
|
2017-08-06 21:38:40 +12:00
|
|
|
|
2017-07-20 20:51:59 +12:00
|
|
|
union wlr_drm_plane_props props;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct wlr_drm_crtc {
|
|
|
|
uint32_t id;
|
2017-08-09 20:43:01 +12:00
|
|
|
uint32_t mode_id; // atomic modesetting only
|
|
|
|
drmModeAtomicReq *atomic;
|
|
|
|
|
2017-07-31 10:04:34 +12: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 22:14:29 +12:00
|
|
|
|
2017-07-20 20:51:59 +12:00
|
|
|
union wlr_drm_crtc_props props;
|
2017-07-20 23:26:53 +12:00
|
|
|
|
|
|
|
struct wl_list connectors;
|
|
|
|
};
|
|
|
|
|
2017-08-12 19:52:22 -04:00
|
|
|
struct wlr_drm_backend {
|
2017-08-12 11:43:36 -04:00
|
|
|
struct wlr_backend backend;
|
|
|
|
|
2017-10-01 19:22:47 +13:00
|
|
|
struct wlr_drm_backend *parent;
|
2017-08-09 20:43:01 +12:00
|
|
|
const struct wlr_drm_interface *iface;
|
2017-07-20 23:26:53 +12:00
|
|
|
|
2017-06-10 12:30:02 -04:00
|
|
|
int fd;
|
|
|
|
|
2017-07-20 20:51:59 +12:00
|
|
|
size_t num_crtcs;
|
|
|
|
struct wlr_drm_crtc *crtcs;
|
|
|
|
size_t num_planes;
|
|
|
|
struct wlr_drm_plane *planes;
|
|
|
|
|
2017-07-31 10:04:34 +12: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 20:51:59 +12:00
|
|
|
|
2017-06-22 14:26:02 -04:00
|
|
|
struct wl_display *display;
|
2017-06-10 12:30:02 -04:00
|
|
|
struct wl_event_source *drm_event;
|
|
|
|
|
2017-06-21 12:47:53 +12:00
|
|
|
struct wl_listener session_signal;
|
2017-06-10 12:30:02 -04:00
|
|
|
struct wl_listener drm_invalidated;
|
|
|
|
|
2017-10-19 16:48:00 +03:00
|
|
|
struct wl_list outputs;
|
2017-06-10 12:30:02 -04:00
|
|
|
|
|
|
|
struct wlr_drm_renderer renderer;
|
|
|
|
struct wlr_session *session;
|
|
|
|
};
|
|
|
|
|
2017-09-30 23:31:08 +13:00
|
|
|
enum wlr_drm_connector_state {
|
|
|
|
WLR_DRM_CONN_DISCONNECTED,
|
|
|
|
WLR_DRM_CONN_NEEDS_MODESET,
|
|
|
|
WLR_DRM_CONN_CLEANUP,
|
|
|
|
WLR_DRM_CONN_CONNECTED,
|
2017-05-01 17:49:18 +12:00
|
|
|
};
|
|
|
|
|
2017-09-30 23:31:08 +13:00
|
|
|
struct wlr_drm_mode {
|
2017-08-14 08:03:51 -04:00
|
|
|
struct wlr_output_mode wlr_mode;
|
2017-09-30 23:31:08 +13:00
|
|
|
drmModeModeInfo drm_mode;
|
2017-05-07 12:26:48 -04:00
|
|
|
};
|
|
|
|
|
2017-09-30 23:31:08 +13:00
|
|
|
struct wlr_drm_connector {
|
2017-08-13 10:51:50 -04:00
|
|
|
struct wlr_output output;
|
|
|
|
|
2017-09-30 23:31:08 +13:00
|
|
|
enum wlr_drm_connector_state state;
|
|
|
|
uint32_t id;
|
2017-05-01 15:20:48 +12:00
|
|
|
|
2017-08-05 17:27:59 +12:00
|
|
|
struct wlr_drm_crtc *crtc;
|
2017-07-29 22:14:29 +12:00
|
|
|
uint32_t possible_crtc;
|
|
|
|
|
2017-07-20 23:26:53 +12:00
|
|
|
union wlr_drm_connector_props props;
|
2017-05-13 20:37:15 +12:00
|
|
|
|
2017-05-01 15:20:48 +12:00
|
|
|
uint32_t width;
|
|
|
|
uint32_t height;
|
|
|
|
|
|
|
|
drmModeCrtc *old_crtc;
|
|
|
|
|
|
|
|
bool pageflip_pending;
|
2017-09-23 18:27:14 +12:00
|
|
|
struct wl_event_source *retry_pageflip;
|
2017-10-19 16:48:00 +03:00
|
|
|
struct wl_list link;
|
2017-05-01 15:20:48 +12:00
|
|
|
};
|
|
|
|
|
2017-08-12 19:52:22 -04:00
|
|
|
bool wlr_drm_check_features(struct wlr_drm_backend *drm);
|
|
|
|
bool wlr_drm_resources_init(struct wlr_drm_backend *drm);
|
|
|
|
void wlr_drm_resources_free(struct wlr_drm_backend *drm);
|
2017-09-23 16:32:25 +12:00
|
|
|
void wlr_drm_restore_outputs(struct wlr_drm_backend *drm);
|
2017-09-30 23:31:08 +13:00
|
|
|
void wlr_drm_connector_cleanup(struct wlr_drm_connector *conn);
|
2017-08-12 19:52:22 -04:00
|
|
|
void wlr_drm_scan_connectors(struct wlr_drm_backend *state);
|
2017-05-03 21:28:44 +12:00
|
|
|
int wlr_drm_event(int fd, uint32_t mask, void *data);
|
2017-05-01 15:20:48 +12:00
|
|
|
|
2017-09-30 23:31:08 +13:00
|
|
|
void wlr_drm_connector_start_renderer(struct wlr_drm_connector *conn);
|
2017-05-14 01:12:47 +12:00
|
|
|
|
2017-05-01 15:20:48 +12:00
|
|
|
#endif
|