2017-09-30 08:03:34 +02:00
|
|
|
#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 <gbm.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>
|
2018-10-01 22:44:33 +02:00
|
|
|
#include <time.h>
|
2019-07-27 10:53:54 +02:00
|
|
|
#include <wayland-server-core.h>
|
2017-10-19 15:48:00 +02:00
|
|
|
#include <wayland-util.h>
|
2017-06-10 18:30:02 +02:00
|
|
|
#include <wlr/backend/drm.h>
|
2018-02-12 21:29:23 +01:00
|
|
|
#include <wlr/backend/session.h>
|
2019-04-09 22:36:35 +02:00
|
|
|
#include <wlr/render/drm_format_set.h>
|
2018-02-12 21:29:23 +01:00
|
|
|
#include <xf86drmMode.h>
|
2021-04-06 09:18:16 +02:00
|
|
|
#include "backend/drm/iface.h"
|
|
|
|
#include "backend/drm/properties.h"
|
|
|
|
#include "backend/drm/renderer.h"
|
2017-07-20 10:51:59 +02:00
|
|
|
|
|
|
|
struct wlr_drm_plane {
|
|
|
|
uint32_t type;
|
|
|
|
uint32_t id;
|
|
|
|
|
2021-01-24 18:21:38 +01:00
|
|
|
/* Local if this isn't a multi-GPU setup, on the parent otherwise. */
|
2017-09-30 09:52:58 +02:00
|
|
|
struct wlr_drm_surface surf;
|
2021-01-24 18:21:38 +01:00
|
|
|
/* Local, only initialized on multi-GPU setups. */
|
2017-10-01 08:22:47 +02:00
|
|
|
struct wlr_drm_surface mgpu_surf;
|
2017-07-20 10:51:59 +02:00
|
|
|
|
2020-02-08 07:02:31 +01:00
|
|
|
/* Buffer to be submitted to the kernel on the next page-flip */
|
2020-12-22 17:07:29 +01:00
|
|
|
struct wlr_drm_fb *pending_fb;
|
2020-02-08 07:02:31 +01:00
|
|
|
/* Buffer submitted to the kernel, will be presented on next vblank */
|
2020-12-22 17:07:29 +01:00
|
|
|
struct wlr_drm_fb *queued_fb;
|
2020-02-08 07:02:31 +01:00
|
|
|
/* Buffer currently displayed on screen */
|
2020-12-22 17:07:29 +01:00
|
|
|
struct wlr_drm_fb *current_fb;
|
2020-02-08 07:02:31 +01:00
|
|
|
|
2019-04-09 22:36:35 +02:00
|
|
|
struct wlr_drm_format_set formats;
|
2019-01-29 12:04:12 +01:00
|
|
|
|
2017-08-06 11:38:40 +02:00
|
|
|
// Only used by cursor
|
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 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;
|
2020-05-07 17:11:32 +02:00
|
|
|
|
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
|
|
|
|
2018-02-04 21:03:44 +01:00
|
|
|
// Legacy only
|
|
|
|
drmModeCrtc *legacy_crtc;
|
|
|
|
|
2019-06-21 08:06:21 +02:00
|
|
|
struct wlr_drm_plane *primary;
|
|
|
|
struct wlr_drm_plane *cursor;
|
|
|
|
|
2017-07-20 10:51:59 +02:00
|
|
|
union wlr_drm_crtc_props props;
|
2017-07-20 13:26:53 +02:00
|
|
|
};
|
|
|
|
|
2017-08-13 01:52:22 +02:00
|
|
|
struct wlr_drm_backend {
|
2017-08-12 17:43:36 +02:00
|
|
|
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;
|
2018-10-01 22:44:33 +02:00
|
|
|
clockid_t clock;
|
2019-05-26 16:38:35 +02:00
|
|
|
bool addfb2_modifiers;
|
2017-07-20 13:26:53 +02:00
|
|
|
|
2017-06-10 18:30:02 +02:00
|
|
|
int fd;
|
2020-12-17 20:48:47 +01:00
|
|
|
char *name;
|
2020-11-06 10:16:07 +01:00
|
|
|
struct wlr_device *dev;
|
2017-06-10 18:30:02 +02:00
|
|
|
|
2017-07-20 10:51:59 +02:00
|
|
|
size_t num_crtcs;
|
|
|
|
struct wlr_drm_crtc *crtcs;
|
|
|
|
|
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-12-07 23:44:59 +01:00
|
|
|
struct wl_listener display_destroy;
|
2019-11-30 11:57:37 +01:00
|
|
|
struct wl_listener session_destroy;
|
2020-12-25 14:45:00 +01:00
|
|
|
struct wl_listener session_active;
|
2020-12-27 15:26:04 +01:00
|
|
|
struct wl_listener parent_destroy;
|
2020-12-25 14:45:00 +01:00
|
|
|
struct wl_listener dev_change;
|
2020-12-27 15:21:07 +01:00
|
|
|
struct wl_listener dev_remove;
|
2017-06-10 18:30:02 +02:00
|
|
|
|
2020-12-22 18:42:59 +01:00
|
|
|
struct wl_list fbs; // wlr_drm_fb.link
|
2017-10-19 15:48:00 +02:00
|
|
|
struct wl_list outputs;
|
2017-06-10 18:30:02 +02:00
|
|
|
|
|
|
|
struct wlr_drm_renderer renderer;
|
|
|
|
struct wlr_session *session;
|
2020-12-02 10:37:07 +01:00
|
|
|
|
|
|
|
uint64_t cursor_width, cursor_height;
|
|
|
|
|
|
|
|
struct wlr_drm_format_set mgpu_formats;
|
2017-06-10 18:30:02 +02:00
|
|
|
};
|
|
|
|
|
2017-09-30 12:31:08 +02:00
|
|
|
enum wlr_drm_connector_state {
|
2018-09-28 10:00:40 +02:00
|
|
|
// Connector is available but no output is plugged in
|
2017-09-30 12:31:08 +02:00
|
|
|
WLR_DRM_CONN_DISCONNECTED,
|
2018-09-28 10:00:40 +02:00
|
|
|
// An output just has been plugged in and is waiting for a modeset
|
2017-09-30 12:31:08 +02:00
|
|
|
WLR_DRM_CONN_NEEDS_MODESET,
|
|
|
|
WLR_DRM_CONN_CLEANUP,
|
|
|
|
WLR_DRM_CONN_CONNECTED,
|
2017-05-01 07:49:18 +02:00
|
|
|
};
|
|
|
|
|
2017-09-30 12:31:08 +02:00
|
|
|
struct wlr_drm_mode {
|
2017-08-14 14:03:51 +02:00
|
|
|
struct wlr_output_mode wlr_mode;
|
2017-09-30 12:31:08 +02:00
|
|
|
drmModeModeInfo drm_mode;
|
2017-05-07 18:26:48 +02:00
|
|
|
};
|
|
|
|
|
2017-09-30 12:31:08 +02:00
|
|
|
struct wlr_drm_connector {
|
2020-12-09 14:50:39 +01:00
|
|
|
struct wlr_output output; // only valid if state != DISCONNECTED
|
2017-08-13 16:51:50 +02:00
|
|
|
|
2020-12-09 14:31:06 +01:00
|
|
|
struct wlr_drm_backend *backend;
|
2020-12-09 14:50:39 +01:00
|
|
|
char name[24];
|
2017-09-30 12:31:08 +02:00
|
|
|
enum wlr_drm_connector_state state;
|
2018-09-04 15:09:07 +02:00
|
|
|
struct wlr_output_mode *desired_mode;
|
2018-09-10 23:35:22 +02:00
|
|
|
bool desired_enabled;
|
2017-09-30 12:31:08 +02:00
|
|
|
uint32_t id;
|
2017-05-01 05:20:48 +02:00
|
|
|
|
2017-08-05 07:27:59 +02:00
|
|
|
struct wlr_drm_crtc *crtc;
|
2020-12-23 12:14:36 +01:00
|
|
|
uint32_t possible_crtcs;
|
2017-07-29 12:14:29 +02:00
|
|
|
|
2017-07-20 13:26:53 +02:00
|
|
|
union wlr_drm_connector_props props;
|
2017-05-13 10:37:15 +02:00
|
|
|
|
2018-02-02 21:01:59 +01:00
|
|
|
int32_t cursor_x, cursor_y;
|
2017-05-01 05:20:48 +02:00
|
|
|
|
|
|
|
drmModeCrtc *old_crtc;
|
|
|
|
|
2017-10-19 15:48:00 +02:00
|
|
|
struct wl_list link;
|
2019-04-29 22:25:47 +02:00
|
|
|
|
2020-12-25 11:12:21 +01:00
|
|
|
/* CRTC ID if a page-flip is pending, zero otherwise.
|
|
|
|
*
|
2020-07-21 17:46:33 +02:00
|
|
|
* We've asked for a state change in the kernel, and yet to receive a
|
2020-02-08 07:02:31 +01:00
|
|
|
* notification for its completion. Currently, the kernel only has a
|
|
|
|
* queue length of 1, and no way to modify your submissions after
|
|
|
|
* they're sent.
|
|
|
|
*/
|
2020-12-25 11:12:21 +01:00
|
|
|
uint32_t pending_page_flip_crtc;
|
2017-05-01 05:20:48 +02:00
|
|
|
};
|
|
|
|
|
2018-09-17 22:25:20 +02:00
|
|
|
struct wlr_drm_backend *get_drm_backend_from_backend(
|
|
|
|
struct wlr_backend *wlr_backend);
|
2018-04-26 00:24:58 +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);
|
2020-12-09 15:15:17 +01:00
|
|
|
void destroy_drm_connector(struct wlr_drm_connector *conn);
|
2021-04-06 17:58:10 +02:00
|
|
|
bool drm_connector_commit_state(struct wlr_drm_connector *conn,
|
2021-04-06 17:44:31 +02:00
|
|
|
const struct wlr_output_state *state);
|
2020-05-27 18:16:03 +02:00
|
|
|
bool drm_connector_is_cursor_visible(struct wlr_drm_connector *conn);
|
2020-05-27 16:43:19 +02:00
|
|
|
bool drm_connector_supports_vrr(struct wlr_drm_connector *conn);
|
2020-05-14 18:27:02 +02:00
|
|
|
size_t drm_crtc_get_gamma_lut_size(struct wlr_drm_backend *drm,
|
|
|
|
struct wlr_drm_crtc *crtc);
|
2017-12-20 00:25:46 +01:00
|
|
|
|
2020-02-08 07:02:31 +01:00
|
|
|
struct wlr_drm_fb *plane_get_next_fb(struct wlr_drm_plane *plane);
|
|
|
|
|
2021-04-06 17:06:37 +02:00
|
|
|
bool drm_connector_state_is_modeset(const struct wlr_output_state *state);
|
2021-04-06 17:14:17 +02:00
|
|
|
bool drm_connector_state_active(struct wlr_drm_connector *conn,
|
|
|
|
const struct wlr_output_state *state);
|
2021-04-06 17:29:07 +02:00
|
|
|
void drm_connector_state_mode(struct wlr_drm_connector *conn,
|
|
|
|
const struct wlr_output_state *state, drmModeModeInfo *mode);
|
2021-04-06 17:06:37 +02:00
|
|
|
|
2020-12-09 14:50:39 +01:00
|
|
|
#define wlr_drm_conn_log(conn, verb, fmt, ...) \
|
2020-12-09 15:11:06 +01:00
|
|
|
wlr_log(verb, "connector %s: " fmt, conn->name, ##__VA_ARGS__)
|
2020-12-09 14:50:39 +01:00
|
|
|
#define wlr_drm_conn_log_errno(conn, verb, fmt, ...) \
|
2020-12-09 15:11:06 +01:00
|
|
|
wlr_log_errno(verb, "connector %s: " fmt, conn->name, ##__VA_ARGS__)
|
2020-12-09 14:50:39 +01:00
|
|
|
|
2017-05-01 05:20:48 +02:00
|
|
|
#endif
|