wlroots-hyprland/include/backend/drm/drm.h

150 lines
3.0 KiB
C
Raw Normal View History

#ifndef BACKEND_DRM_DRM_H
#define BACKEND_DRM_DRM_H
2017-05-01 05:20:48 +02:00
2018-02-12 21:29:23 +01:00
#include <EGL/egl.h>
#include <gbm.h>
2017-05-01 05:20:48 +02:00
#include <stdbool.h>
#include <stddef.h>
2017-05-01 05:20:48 +02:00
#include <stdint.h>
#include <wayland-server.h>
#include <wayland-util.h>
#include <wlr/backend/drm.h>
2018-02-12 21:29:23 +01:00
#include <wlr/backend/session.h>
2017-10-21 03:48:58 +02:00
#include <wlr/render/egl.h>
2018-02-12 21:29:23 +01:00
#include <xf86drmMode.h>
#include "iface.h"
#include "properties.h"
2017-09-30 09:52:58 +02:00
#include "renderer.h"
2017-07-20 10:51:59 +02:00
struct wlr_drm_plane {
uint32_t type;
uint32_t id;
uint32_t possible_crtcs;
2017-09-30 09:52:58 +02:00
struct wlr_drm_surface surf;
2017-10-01 08:22:47 +02:00
struct wlr_drm_surface mgpu_surf;
2017-07-20 10:51:59 +02:00
2017-08-06 11:38:40 +02:00
// Only used by cursor
2018-03-15 15:33:58 +01:00
float matrix[9];
2017-08-07 11:07:42 +02:00
struct gbm_bo *cursor_bo;
bool cursor_enabled;
int32_t cursor_hotspot_x, cursor_hotspot_y;
2017-08-06 11:38:40 +02:00
2017-07-20 10:51:59 +02:00
union wlr_drm_plane_props props;
};
struct wlr_drm_crtc {
uint32_t id;
2018-02-01 20:27:35 +01:00
// Atomic modesetting only
uint32_t mode_id;
uint32_t gamma_lut;
2017-08-09 10:43:01 +02:00
drmModeAtomicReq *atomic;
// Legacy only
drmModeCrtc *legacy_crtc;
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_backend {
struct wlr_backend backend;
2017-10-01 08:22:47 +02:00
struct wlr_drm_backend *parent;
2017-08-09 10:43:01 +02:00
const struct wlr_drm_interface *iface;
2017-07-20 13:26:53 +02:00
int fd;
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;
struct wl_event_source *drm_event;
2017-12-07 23:44:59 +01:00
struct wl_listener display_destroy;
struct wl_listener session_signal;
struct wl_listener drm_invalidated;
struct wl_list outputs;
struct wlr_drm_renderer renderer;
struct wlr_session *session;
};
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 07:49:18 +02:00
};
struct wlr_drm_mode {
2017-08-14 14:03:51 +02:00
struct wlr_output_mode wlr_mode;
drmModeModeInfo drm_mode;
2017-05-07 18:26:48 +02:00
};
struct wlr_drm_connector {
struct wlr_output output;
enum wlr_drm_connector_state state;
struct wlr_output_mode *desired_mode;
backend/drm: steal CRTCs from disabled outputs This commit allows outputs that need a CRTC to steal it from user-disabled outputs. Note that in the case there are enough CRTCs, disabled outputs don't loose it (so there's no modeset and plane initialization needed after DPMS). CRTC allocation still prefers to keep the old configuration, even if that means allocating an extra CRTC to a disabled output. CRTC reallocation now happen when enabling/disabling an output as well as when trying to modeset. When enabling an output without a CRTC, we realloc to try to steal a CRTC from a disabled output (that doesn't really need the CRTC). When disabling an output, we try to give our CRTC to an output that needs one. Modesetting is similar to enabling. A new DRM connector field has been added: `desired_enabled`. Outputs without CRTCs get automatically disabled. This field keeps track of the state desired by the user, allowing to automatically re-enable outputs when a CRTC becomes free. This required some changes to the allocation algorithm. Previously, the algorithm tried to keep the previous configuration even if a new configuration with a better score was possible (it only changed configuration when the old one didn't work anymore). This is now changed and the old configuration (still preferred) is only retained without considering new possibilities when it's perfect (all outputs have CRTCs). User-disabled outputs now have `possible_crtcs` set to 0, meaning they can only retain a previous CRTC (not acquire a new one). The allocation algorithm has been updated to do not bump the score when assigning a CRTC to a disabled output.
2018-09-10 23:35:22 +02:00
bool desired_enabled;
uint32_t id;
2017-05-01 05:20:48 +02:00
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
uint32_t width, height;
int32_t cursor_x, cursor_y;
2017-05-01 05:20:48 +02:00
drmModeCrtc *old_crtc;
bool pageflip_pending;
struct wl_event_source *retry_pageflip;
struct wl_list link;
2017-05-01 05:20:48 +02:00
};
bool check_drm_features(struct wlr_drm_backend *drm);
bool init_drm_resources(struct wlr_drm_backend *drm);
void finish_drm_resources(struct wlr_drm_backend *drm);
void restore_drm_outputs(struct wlr_drm_backend *drm);
void scan_drm_connectors(struct wlr_drm_backend *state);
int handle_drm_event(int fd, uint32_t mask, void *data);
bool enable_drm_connector(struct wlr_output *output, bool enable);
2017-12-20 00:25:46 +01:00
2017-05-01 05:20:48 +02:00
#endif