mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-11-02 11:55:59 +01:00
d36dd96e8d
Since 1d581656c7
("backend/drm: set "max bpc" to the max") we
set the "max bpc" property to the maximum value. The kernel driver
is supposed to clamp this value depending on hardware capabilities.
All kernel drivers lower the value depending on the GPU capabilities.
However, none of the drivers lower the value depending on the DP-MST
link capabilities. Thus, enabling a 4k@60Hz mode can fail on some
DP-MST setups due to the "max bpc" property.
Additionally, it's not a good idea to unconditionally set "max bpc"
to the max. A high bpc consumes more lanes and more clock speed,
which means higher power consumption and the busy lanes cannot be
used for something else (e.g. other data transfers on a USB-C cable).
For now, let's tie the "max bpc" to the pixel format of the buffer.
Introduce a heuristic to make "high bit-depth buffer" a synonym of
"I want the best quality".
This is not perfect: a "max bpc" higher than 8 might be desirable
for pixel formats with a color depth of 8 bits, for instance when
the color management KMS properties are used. But we don't really
support that yet, so let's leave this for later.
Closes: https://github.com/swaywm/sway/issues/7367
162 lines
4.2 KiB
C
162 lines
4.2 KiB
C
#ifndef BACKEND_DRM_DRM_H
|
|
#define BACKEND_DRM_DRM_H
|
|
|
|
#include <stdbool.h>
|
|
#include <stddef.h>
|
|
#include <stdint.h>
|
|
#include <time.h>
|
|
#include <wayland-server-core.h>
|
|
#include <wayland-util.h>
|
|
#include <wlr/backend/drm.h>
|
|
#include <wlr/backend/session.h>
|
|
#include <wlr/render/drm_format_set.h>
|
|
#include <xf86drmMode.h>
|
|
#include "backend/drm/iface.h"
|
|
#include "backend/drm/properties.h"
|
|
#include "backend/drm/renderer.h"
|
|
|
|
struct wlr_drm_plane {
|
|
uint32_t type;
|
|
uint32_t id;
|
|
|
|
/* Only initialized on multi-GPU setups */
|
|
struct wlr_drm_surface mgpu_surf;
|
|
|
|
/* Buffer submitted to the kernel, will be presented on next vblank */
|
|
struct wlr_drm_fb *queued_fb;
|
|
/* Buffer currently displayed on screen */
|
|
struct wlr_drm_fb *current_fb;
|
|
|
|
struct wlr_drm_format_set formats;
|
|
|
|
union wlr_drm_plane_props props;
|
|
};
|
|
|
|
struct wlr_drm_crtc {
|
|
uint32_t id;
|
|
struct wlr_drm_lease *lease;
|
|
|
|
// Atomic modesetting only
|
|
uint32_t mode_id;
|
|
uint32_t gamma_lut;
|
|
|
|
// Legacy only
|
|
int legacy_gamma_size;
|
|
|
|
struct wlr_drm_plane *primary;
|
|
struct wlr_drm_plane *cursor;
|
|
|
|
union wlr_drm_crtc_props props;
|
|
};
|
|
|
|
struct wlr_drm_backend {
|
|
struct wlr_backend backend;
|
|
|
|
struct wlr_drm_backend *parent;
|
|
const struct wlr_drm_interface *iface;
|
|
clockid_t clock;
|
|
bool addfb2_modifiers;
|
|
|
|
int fd;
|
|
char *name;
|
|
struct wlr_device *dev;
|
|
|
|
size_t num_crtcs;
|
|
struct wlr_drm_crtc *crtcs;
|
|
|
|
struct wl_display *display;
|
|
struct wl_event_source *drm_event;
|
|
|
|
struct wl_listener display_destroy;
|
|
struct wl_listener session_destroy;
|
|
struct wl_listener session_active;
|
|
struct wl_listener parent_destroy;
|
|
struct wl_listener dev_change;
|
|
struct wl_listener dev_remove;
|
|
|
|
struct wl_list fbs; // wlr_drm_fb.link
|
|
struct wl_list connectors; // wlr_drm_connector.link
|
|
|
|
/* Only initialized on multi-GPU setups */
|
|
struct wlr_drm_renderer mgpu_renderer;
|
|
|
|
struct wlr_session *session;
|
|
|
|
uint64_t cursor_width, cursor_height;
|
|
|
|
struct wlr_drm_format_set mgpu_formats;
|
|
};
|
|
|
|
struct wlr_drm_mode {
|
|
struct wlr_output_mode wlr_mode;
|
|
drmModeModeInfo drm_mode;
|
|
};
|
|
|
|
struct wlr_drm_connector_state {
|
|
const struct wlr_output_state *base;
|
|
bool modeset;
|
|
bool active;
|
|
drmModeModeInfo mode;
|
|
struct wlr_drm_fb *primary_fb;
|
|
};
|
|
|
|
struct wlr_drm_connector {
|
|
struct wlr_output output; // only valid if status != DISCONNECTED
|
|
|
|
struct wlr_drm_backend *backend;
|
|
char name[24];
|
|
drmModeConnection status;
|
|
uint32_t id;
|
|
uint64_t max_bpc_bounds[2];
|
|
struct wlr_drm_lease *lease;
|
|
|
|
struct wlr_drm_crtc *crtc;
|
|
uint32_t possible_crtcs;
|
|
|
|
union wlr_drm_connector_props props;
|
|
|
|
bool cursor_enabled;
|
|
int cursor_x, cursor_y;
|
|
int cursor_width, cursor_height;
|
|
int cursor_hotspot_x, cursor_hotspot_y;
|
|
/* Buffer to be submitted to the kernel on the next page-flip */
|
|
struct wlr_drm_fb *cursor_pending_fb;
|
|
|
|
struct wl_list link; // wlr_drm_backend.connectors
|
|
|
|
/* CRTC ID if a page-flip is pending, zero otherwise.
|
|
*
|
|
* We've asked for a state change in the kernel, and yet to receive a
|
|
* 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.
|
|
*/
|
|
uint32_t pending_page_flip_crtc;
|
|
};
|
|
|
|
struct wlr_drm_backend *get_drm_backend_from_backend(
|
|
struct wlr_backend *wlr_backend);
|
|
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 scan_drm_connectors(struct wlr_drm_backend *state,
|
|
struct wlr_device_hotplug_event *event);
|
|
void scan_drm_leases(struct wlr_drm_backend *drm);
|
|
int handle_drm_event(int fd, uint32_t mask, void *data);
|
|
void destroy_drm_connector(struct wlr_drm_connector *conn);
|
|
bool drm_connector_commit_state(struct wlr_drm_connector *conn,
|
|
const struct wlr_output_state *state);
|
|
bool drm_connector_is_cursor_visible(struct wlr_drm_connector *conn);
|
|
bool drm_connector_supports_vrr(struct wlr_drm_connector *conn);
|
|
size_t drm_crtc_get_gamma_lut_size(struct wlr_drm_backend *drm,
|
|
struct wlr_drm_crtc *crtc);
|
|
void drm_lease_destroy(struct wlr_drm_lease *lease);
|
|
|
|
struct wlr_drm_fb *get_next_cursor_fb(struct wlr_drm_connector *conn);
|
|
|
|
#define wlr_drm_conn_log(conn, verb, fmt, ...) \
|
|
wlr_log(verb, "connector %s: " fmt, conn->name, ##__VA_ARGS__)
|
|
#define wlr_drm_conn_log_errno(conn, verb, fmt, ...) \
|
|
wlr_log_errno(verb, "connector %s: " fmt, conn->name, ##__VA_ARGS__)
|
|
|
|
#endif
|