2017-06-10 16:30:02 +00:00
|
|
|
#ifndef DRM_BACKEND_H
|
|
|
|
#define DRM_BACKEND_H
|
2017-05-01 03:20:48 +00:00
|
|
|
|
|
|
|
#include <stdbool.h>
|
2017-06-10 16:30:02 +00:00
|
|
|
#include <stddef.h>
|
2017-05-01 03:20:48 +00:00
|
|
|
#include <stdint.h>
|
2017-06-10 16:30:02 +00:00
|
|
|
#include <wayland-server.h>
|
2017-05-01 03:20:48 +00:00
|
|
|
#include <xf86drmMode.h>
|
|
|
|
#include <EGL/egl.h>
|
2017-06-10 16:30:02 +00:00
|
|
|
#include <libudev.h>
|
2017-05-01 03:20:48 +00:00
|
|
|
#include <gbm.h>
|
|
|
|
|
2017-06-10 16:30:02 +00:00
|
|
|
#include <wlr/session.h>
|
|
|
|
#include <wlr/common/list.h>
|
|
|
|
#include <wlr/backend/drm.h>
|
|
|
|
|
2017-05-03 05:17:14 +00:00
|
|
|
#include "backend/egl.h"
|
2017-06-10 16:30:02 +00:00
|
|
|
#include "backend/udev.h"
|
|
|
|
#include "event.h"
|
2017-05-03 05:17:14 +00:00
|
|
|
|
2017-05-01 05:49:18 +00:00
|
|
|
struct wlr_drm_renderer {
|
|
|
|
int fd;
|
|
|
|
struct gbm_device *gbm;
|
2017-05-03 05:17:14 +00:00
|
|
|
struct wlr_egl egl;
|
2017-05-01 03:20:48 +00:00
|
|
|
};
|
|
|
|
|
2017-05-03 09:28:44 +00:00
|
|
|
bool wlr_drm_renderer_init(struct wlr_drm_renderer *renderer, int fd);
|
2017-05-01 05:49:18 +00:00
|
|
|
void wlr_drm_renderer_free(struct wlr_drm_renderer *renderer);
|
2017-05-01 03:20:48 +00:00
|
|
|
|
2017-06-10 16:30:02 +00:00
|
|
|
struct wlr_backend_state {
|
|
|
|
int fd;
|
|
|
|
dev_t dev;
|
|
|
|
|
|
|
|
struct wlr_backend *backend;
|
|
|
|
struct wl_event_source *drm_event;
|
|
|
|
|
|
|
|
struct wl_listener device_paused;
|
|
|
|
struct wl_listener device_resumed;
|
|
|
|
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 05:49:03 +00:00
|
|
|
enum wlr_drm_output_state {
|
|
|
|
DRM_OUTPUT_DISCONNECTED,
|
|
|
|
DRM_OUTPUT_NEEDS_MODESET,
|
|
|
|
DRM_OUTPUT_CONNECTED,
|
2017-05-01 05:49:18 +00:00
|
|
|
};
|
|
|
|
|
2017-05-07 16:26:48 +00:00
|
|
|
struct wlr_output_mode_state {
|
|
|
|
struct wlr_wl_output_mode *wlr_mode;
|
|
|
|
drmModeModeInfo mode;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct wlr_output_state {
|
|
|
|
struct wlr_output *wlr_output;
|
2017-05-03 05:49:03 +00:00
|
|
|
enum wlr_drm_output_state state;
|
2017-05-01 03:20:48 +00:00
|
|
|
uint32_t connector;
|
|
|
|
|
2017-05-13 08:37:15 +00:00
|
|
|
struct {
|
|
|
|
uint32_t dpms;
|
|
|
|
} props;
|
|
|
|
|
2017-05-01 03:20:48 +00:00
|
|
|
uint32_t width;
|
|
|
|
uint32_t height;
|
|
|
|
|
|
|
|
uint32_t crtc;
|
|
|
|
drmModeCrtc *old_crtc;
|
|
|
|
|
2017-05-01 05:49:18 +00:00
|
|
|
struct wlr_drm_renderer *renderer;
|
2017-05-01 03:20:48 +00:00
|
|
|
struct gbm_surface *gbm;
|
2017-06-09 05:15:55 +00:00
|
|
|
struct gbm_bo *bo_last;
|
|
|
|
struct gbm_bo *bo_current;
|
2017-05-01 03:20:48 +00:00
|
|
|
EGLSurface *egl;
|
|
|
|
|
|
|
|
bool pageflip_pending;
|
|
|
|
bool cleanup;
|
|
|
|
};
|
|
|
|
|
2017-05-07 16:26:48 +00:00
|
|
|
void wlr_drm_output_cleanup(struct wlr_output_state *output, bool restore);
|
2017-05-01 03:20:48 +00:00
|
|
|
|
2017-05-07 14:00:23 +00:00
|
|
|
void wlr_drm_scan_connectors(struct wlr_backend_state *state);
|
2017-05-03 09:28:44 +00:00
|
|
|
int wlr_drm_event(int fd, uint32_t mask, void *data);
|
2017-05-01 03:20:48 +00:00
|
|
|
|
2017-05-14 00:48:47 +00:00
|
|
|
void wlr_drm_output_start_renderer(struct wlr_output_state *output);
|
2017-05-13 13:12:47 +00:00
|
|
|
|
2017-05-01 03:20:48 +00:00
|
|
|
#endif
|