2018-07-13 14:40:56 +02:00
|
|
|
/*
|
|
|
|
* This an unstable interface of wlroots. No guarantees are made regarding the
|
|
|
|
* future consistency of this API.
|
|
|
|
*/
|
|
|
|
#ifndef WLR_USE_UNSTABLE
|
|
|
|
#error "Add -DWLR_USE_UNSTABLE to enable unstable wlroots features"
|
|
|
|
#endif
|
|
|
|
|
2017-05-02 08:13:17 +02:00
|
|
|
#ifndef WLR_BACKEND_DRM_H
|
|
|
|
#define WLR_BACKEND_DRM_H
|
|
|
|
|
2019-07-27 10:53:54 +02:00
|
|
|
#include <wayland-server-core.h>
|
2017-05-07 16:00:23 +02:00
|
|
|
#include <wlr/backend.h>
|
2018-02-12 21:29:23 +01:00
|
|
|
#include <wlr/backend/session.h>
|
2017-12-19 19:59:08 +01:00
|
|
|
#include <wlr/types/wlr_output.h>
|
2017-05-03 12:40:19 +02:00
|
|
|
|
2021-11-03 14:03:59 +01:00
|
|
|
struct wlr_drm_backend;
|
|
|
|
|
|
|
|
struct wlr_drm_lease {
|
|
|
|
int fd;
|
|
|
|
uint32_t lessee_id;
|
|
|
|
struct wlr_drm_backend *backend;
|
|
|
|
|
|
|
|
struct {
|
|
|
|
struct wl_signal destroy;
|
|
|
|
} events;
|
|
|
|
|
|
|
|
void *data;
|
|
|
|
};
|
|
|
|
|
2018-03-19 20:46:28 +01:00
|
|
|
/**
|
|
|
|
* Creates a DRM backend using the specified GPU file descriptor (typically from
|
|
|
|
* a device node in /dev/dri).
|
|
|
|
*
|
|
|
|
* To slave this to another DRM backend, pass it as the parent (which _must_ be
|
|
|
|
* a DRM backend, other kinds of backends raise SIGABRT).
|
|
|
|
*/
|
2017-05-07 16:00:23 +02:00
|
|
|
struct wlr_backend *wlr_drm_backend_create(struct wl_display *display,
|
2020-11-06 10:16:07 +01:00
|
|
|
struct wlr_session *session, struct wlr_device *dev,
|
2020-12-19 11:34:28 +01:00
|
|
|
struct wlr_backend *parent);
|
2017-05-02 08:13:17 +02:00
|
|
|
|
2017-08-13 23:05:57 +02:00
|
|
|
bool wlr_backend_is_drm(struct wlr_backend *backend);
|
2017-12-19 19:59:08 +01:00
|
|
|
bool wlr_output_is_drm(struct wlr_output *output);
|
2017-08-13 23:05:57 +02:00
|
|
|
|
2021-01-15 21:50:17 +01:00
|
|
|
/**
|
|
|
|
* Get the KMS connector object ID.
|
|
|
|
*/
|
|
|
|
uint32_t wlr_drm_connector_get_id(struct wlr_output *output);
|
|
|
|
|
2021-05-26 01:23:10 +02:00
|
|
|
/**
|
2022-05-24 18:46:59 +02:00
|
|
|
* Tries to open non-master DRM FD. The compositor must not call drmSetMaster()
|
2021-05-26 01:23:10 +02:00
|
|
|
* on the returned FD.
|
2022-05-24 18:46:59 +02:00
|
|
|
*
|
2021-05-26 01:23:10 +02:00
|
|
|
* Returns a valid opened DRM FD, or -1 on error.
|
|
|
|
*/
|
|
|
|
int wlr_drm_backend_get_non_master_fd(struct wlr_backend *backend);
|
|
|
|
|
2021-07-15 15:48:29 +02:00
|
|
|
/**
|
2021-11-03 14:03:59 +01:00
|
|
|
* Leases the given outputs to the caller. The outputs must be from the
|
|
|
|
* associated DRM backend.
|
|
|
|
*
|
|
|
|
* Returns NULL on error.
|
2021-07-15 15:48:29 +02:00
|
|
|
*/
|
2021-11-03 14:03:59 +01:00
|
|
|
struct wlr_drm_lease *wlr_drm_create_lease(struct wlr_output **outputs,
|
|
|
|
size_t n_outputs, int *lease_fd);
|
2021-07-15 15:48:29 +02:00
|
|
|
|
|
|
|
/**
|
2021-11-03 14:03:59 +01:00
|
|
|
* Terminates and destroys a given lease.
|
|
|
|
*
|
|
|
|
* The outputs will be owned again by the backend.
|
2021-07-15 15:48:29 +02:00
|
|
|
*/
|
2021-11-03 14:03:59 +01:00
|
|
|
void wlr_drm_lease_terminate(struct wlr_drm_lease *lease);
|
2021-07-15 15:48:29 +02:00
|
|
|
|
2018-08-13 08:37:44 +02:00
|
|
|
/**
|
2022-05-24 18:46:59 +02:00
|
|
|
* Add mode to the list of available modes.
|
2018-08-13 08:37:44 +02:00
|
|
|
*/
|
|
|
|
typedef struct _drmModeModeInfo drmModeModeInfo;
|
2019-10-26 22:35:51 +02:00
|
|
|
struct wlr_output_mode *wlr_drm_connector_add_mode(struct wlr_output *output,
|
|
|
|
const drmModeModeInfo *mode);
|
2018-08-13 08:37:44 +02:00
|
|
|
|
2021-09-19 16:36:23 +02:00
|
|
|
/**
|
|
|
|
* Get the connector's panel orientation.
|
|
|
|
*
|
|
|
|
* On some devices the panel is mounted in the casing in such a way that the
|
|
|
|
* top side of the panel does not match with the top side of the device. This
|
|
|
|
* function returns the output transform which needs to be applied to compensate
|
|
|
|
* for this.
|
|
|
|
*/
|
|
|
|
enum wl_output_transform wlr_drm_connector_get_panel_orientation(
|
|
|
|
struct wlr_output *output);
|
|
|
|
|
2017-05-02 08:13:17 +02:00
|
|
|
#endif
|