2023-02-06 10:57:13 +01:00
|
|
|
#include <assert.h>
|
2021-08-09 11:27:08 +02:00
|
|
|
#include <errno.h>
|
2019-08-21 22:07:37 +02:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
2023-02-09 12:33:11 +01:00
|
|
|
#include <xf86drm.h>
|
2023-02-06 10:57:13 +01:00
|
|
|
#include <sys/types.h>
|
2019-08-21 22:07:37 +02:00
|
|
|
#include "private.h"
|
|
|
|
|
2021-08-13 22:02:33 +02:00
|
|
|
struct liftoff_layer *
|
|
|
|
liftoff_layer_create(struct liftoff_output *output)
|
2019-08-21 22:07:37 +02:00
|
|
|
{
|
2019-09-12 10:39:06 +02:00
|
|
|
struct liftoff_layer *layer;
|
2019-08-21 22:07:37 +02:00
|
|
|
|
|
|
|
layer = calloc(1, sizeof(*layer));
|
|
|
|
if (layer == NULL) {
|
2019-10-19 12:35:14 +02:00
|
|
|
liftoff_log_errno(LIFTOFF_ERROR, "calloc");
|
2019-08-21 22:07:37 +02:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
layer->output = output;
|
2023-02-06 10:57:13 +01:00
|
|
|
layer->candidate_planes = calloc(sizeof(layer->candidate_planes[0]),
|
|
|
|
output->device->planes_cap);
|
|
|
|
if (layer->candidate_planes == NULL) {
|
|
|
|
liftoff_log_errno(LIFTOFF_ERROR, "calloc");
|
|
|
|
free(layer);
|
|
|
|
return NULL;
|
|
|
|
}
|
2019-09-12 10:39:06 +02:00
|
|
|
liftoff_list_insert(output->layers.prev, &layer->link);
|
2019-11-24 13:25:59 +01:00
|
|
|
output->layers_changed = true;
|
2019-08-21 22:07:37 +02:00
|
|
|
return layer;
|
|
|
|
}
|
|
|
|
|
2021-08-13 22:02:33 +02:00
|
|
|
void
|
|
|
|
liftoff_layer_destroy(struct liftoff_layer *layer)
|
2019-08-21 22:07:37 +02:00
|
|
|
{
|
2019-12-31 20:46:08 +01:00
|
|
|
if (layer == NULL) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-11-24 13:25:59 +01:00
|
|
|
layer->output->layers_changed = true;
|
2019-12-06 15:06:14 +01:00
|
|
|
if (layer->plane != NULL) {
|
|
|
|
layer->plane->layer = NULL;
|
|
|
|
}
|
2019-09-30 20:22:01 +02:00
|
|
|
if (layer->output->composition_layer == layer) {
|
|
|
|
layer->output->composition_layer = NULL;
|
|
|
|
}
|
2019-08-21 22:07:37 +02:00
|
|
|
free(layer->props);
|
2023-02-06 10:57:13 +01:00
|
|
|
free(layer->candidate_planes);
|
2019-09-12 10:39:06 +02:00
|
|
|
liftoff_list_remove(&layer->link);
|
2019-08-21 22:07:37 +02:00
|
|
|
free(layer);
|
|
|
|
}
|
|
|
|
|
2021-08-13 22:02:33 +02:00
|
|
|
struct liftoff_layer_property *
|
|
|
|
layer_get_property(struct liftoff_layer *layer, const char *name)
|
2019-08-21 22:07:37 +02:00
|
|
|
{
|
|
|
|
size_t i;
|
|
|
|
|
|
|
|
for (i = 0; i < layer->props_len; i++) {
|
|
|
|
if (strcmp(layer->props[i].name, name) == 0) {
|
|
|
|
return &layer->props[i];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2021-08-13 22:02:33 +02:00
|
|
|
int
|
|
|
|
liftoff_layer_set_property(struct liftoff_layer *layer, const char *name,
|
|
|
|
uint64_t value)
|
2019-08-21 22:07:37 +02:00
|
|
|
{
|
2019-09-12 10:39:06 +02:00
|
|
|
struct liftoff_layer_property *props;
|
|
|
|
struct liftoff_layer_property *prop;
|
2019-08-21 22:07:37 +02:00
|
|
|
|
|
|
|
if (strcmp(name, "CRTC_ID") == 0) {
|
2019-10-07 08:47:53 +02:00
|
|
|
liftoff_log(LIFTOFF_ERROR,
|
|
|
|
"refusing to set a layer's CRTC_ID");
|
2021-08-09 11:27:08 +02:00
|
|
|
return -EINVAL;
|
2019-08-21 22:07:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
prop = layer_get_property(layer, name);
|
|
|
|
if (prop == NULL) {
|
|
|
|
props = realloc(layer->props, (layer->props_len + 1)
|
2019-09-12 10:39:06 +02:00
|
|
|
* sizeof(struct liftoff_layer_property));
|
2019-08-21 22:07:37 +02:00
|
|
|
if (props == NULL) {
|
2019-10-19 12:35:14 +02:00
|
|
|
liftoff_log_errno(LIFTOFF_ERROR, "realloc");
|
2021-08-09 11:27:08 +02:00
|
|
|
return -ENOMEM;
|
2019-08-21 22:07:37 +02:00
|
|
|
}
|
|
|
|
layer->props = props;
|
|
|
|
layer->props_len++;
|
|
|
|
|
|
|
|
prop = &layer->props[layer->props_len - 1];
|
|
|
|
memset(prop, 0, sizeof(*prop));
|
|
|
|
strncpy(prop->name, name, sizeof(prop->name) - 1);
|
2019-10-13 17:28:45 +02:00
|
|
|
|
2020-12-05 12:28:50 +01:00
|
|
|
layer->changed = true;
|
2019-08-21 22:07:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
prop->value = value;
|
2019-12-13 11:36:09 +01:00
|
|
|
|
2020-12-05 12:28:50 +01:00
|
|
|
if (strcmp(name, "FB_ID") == 0 && layer->force_composition) {
|
2019-12-13 11:36:09 +01:00
|
|
|
layer->force_composition = false;
|
2020-12-05 12:28:50 +01:00
|
|
|
layer->changed = true;
|
2019-12-13 11:36:09 +01:00
|
|
|
}
|
2021-08-09 11:27:08 +02:00
|
|
|
|
|
|
|
return 0;
|
2019-12-13 11:36:09 +01:00
|
|
|
}
|
|
|
|
|
2022-08-05 23:08:24 +02:00
|
|
|
void
|
|
|
|
liftoff_layer_unset_property(struct liftoff_layer *layer, const char *name)
|
|
|
|
{
|
|
|
|
struct liftoff_layer_property *prop, *last;
|
|
|
|
|
|
|
|
prop = layer_get_property(layer, name);
|
|
|
|
if (prop == NULL) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
last = &layer->props[layer->props_len - 1];
|
|
|
|
if (prop != last) {
|
|
|
|
*prop = *last;
|
|
|
|
}
|
|
|
|
memset(last, 0, sizeof(*last));
|
|
|
|
layer->props_len--;
|
|
|
|
|
|
|
|
layer->changed = true;
|
|
|
|
}
|
|
|
|
|
2021-08-13 22:02:33 +02:00
|
|
|
void
|
|
|
|
liftoff_layer_set_fb_composited(struct liftoff_layer *layer)
|
2019-12-13 11:36:09 +01:00
|
|
|
{
|
|
|
|
if (layer->force_composition) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
liftoff_layer_set_property(layer, "FB_ID", 0);
|
|
|
|
|
|
|
|
layer->force_composition = true;
|
2020-12-05 12:28:50 +01:00
|
|
|
layer->changed = true;
|
2019-08-21 22:07:37 +02:00
|
|
|
}
|
|
|
|
|
2021-08-13 22:02:33 +02:00
|
|
|
struct liftoff_plane *
|
|
|
|
liftoff_layer_get_plane(struct liftoff_layer *layer)
|
2019-08-21 22:07:37 +02:00
|
|
|
{
|
2021-07-01 11:49:36 +02:00
|
|
|
return layer->plane;
|
2019-08-21 22:07:37 +02:00
|
|
|
}
|
2019-09-15 16:00:48 +02:00
|
|
|
|
2021-08-13 22:02:33 +02:00
|
|
|
bool
|
|
|
|
liftoff_layer_needs_composition(struct liftoff_layer *layer)
|
2020-12-06 15:07:03 +01:00
|
|
|
{
|
|
|
|
if (!layer_is_visible(layer)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return layer->plane == NULL;
|
|
|
|
}
|
|
|
|
|
2021-08-13 22:02:33 +02:00
|
|
|
void
|
|
|
|
layer_get_rect(struct liftoff_layer *layer, struct liftoff_rect *rect)
|
2019-09-15 16:00:48 +02:00
|
|
|
{
|
|
|
|
struct liftoff_layer_property *x_prop, *y_prop, *w_prop, *h_prop;
|
|
|
|
|
|
|
|
x_prop = layer_get_property(layer, "CRTC_X");
|
|
|
|
y_prop = layer_get_property(layer, "CRTC_Y");
|
|
|
|
w_prop = layer_get_property(layer, "CRTC_W");
|
|
|
|
h_prop = layer_get_property(layer, "CRTC_H");
|
|
|
|
|
|
|
|
rect->x = x_prop != NULL ? x_prop->value : 0;
|
|
|
|
rect->y = y_prop != NULL ? y_prop->value : 0;
|
|
|
|
rect->width = w_prop != NULL ? w_prop->value : 0;
|
|
|
|
rect->height = h_prop != NULL ? h_prop->value : 0;
|
|
|
|
}
|
|
|
|
|
2021-08-13 22:02:33 +02:00
|
|
|
bool
|
|
|
|
layer_intersects(struct liftoff_layer *a, struct liftoff_layer *b)
|
2019-09-15 16:00:48 +02:00
|
|
|
{
|
|
|
|
struct liftoff_rect ra, rb;
|
|
|
|
|
2021-08-18 13:07:23 +02:00
|
|
|
if (!layer_is_visible(a) || !layer_is_visible(b)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2019-09-15 16:00:48 +02:00
|
|
|
layer_get_rect(a, &ra);
|
|
|
|
layer_get_rect(b, &rb);
|
|
|
|
|
|
|
|
return ra.x < rb.x + rb.width && ra.y < rb.y + rb.height &&
|
|
|
|
ra.x + ra.width > rb.x && ra.y + ra.height > rb.y;
|
|
|
|
}
|
2019-10-13 17:28:45 +02:00
|
|
|
|
2021-08-13 22:02:33 +02:00
|
|
|
void
|
|
|
|
layer_mark_clean(struct liftoff_layer *layer)
|
2019-10-13 17:28:45 +02:00
|
|
|
{
|
|
|
|
size_t i;
|
|
|
|
|
2020-12-05 12:28:50 +01:00
|
|
|
layer->changed = false;
|
2023-02-09 12:33:11 +01:00
|
|
|
layer->prev_fb_info = layer->fb_info;
|
2020-12-05 12:28:50 +01:00
|
|
|
|
2019-10-13 17:28:45 +02:00
|
|
|
for (i = 0; i < layer->props_len; i++) {
|
2020-12-05 12:28:50 +01:00
|
|
|
layer->props[i].prev_value = layer->props[i].value;
|
2019-10-13 17:28:45 +02:00
|
|
|
}
|
|
|
|
}
|
2019-11-15 21:43:44 +01:00
|
|
|
|
2021-08-13 22:02:33 +02:00
|
|
|
static void
|
|
|
|
log_priority(struct liftoff_layer *layer)
|
2020-02-26 11:23:26 +01:00
|
|
|
{
|
|
|
|
if (layer->current_priority == layer->pending_priority) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
liftoff_log(LIFTOFF_DEBUG, "Layer %p priority change: %d -> %d",
|
|
|
|
(void *)layer, layer->current_priority,
|
|
|
|
layer->pending_priority);
|
|
|
|
}
|
|
|
|
|
2021-08-13 22:02:33 +02:00
|
|
|
void
|
|
|
|
layer_update_priority(struct liftoff_layer *layer, bool make_current)
|
|
|
|
{
|
2019-11-15 21:43:44 +01:00
|
|
|
struct liftoff_layer_property *prop;
|
|
|
|
|
2020-12-05 12:28:50 +01:00
|
|
|
/* TODO: also bump priority when updating other properties */
|
2019-11-15 21:43:44 +01:00
|
|
|
prop = layer_get_property(layer, "FB_ID");
|
2020-12-05 12:28:50 +01:00
|
|
|
if (prop != NULL && prop->prev_value != prop->value) {
|
2019-11-15 21:43:44 +01:00
|
|
|
layer->pending_priority++;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (make_current) {
|
2020-02-26 11:23:26 +01:00
|
|
|
log_priority(layer);
|
2019-11-15 21:43:44 +01:00
|
|
|
layer->current_priority = layer->pending_priority;
|
|
|
|
layer->pending_priority = 0;
|
|
|
|
}
|
|
|
|
}
|
2019-12-19 17:49:18 +01:00
|
|
|
|
2021-08-13 22:02:33 +02:00
|
|
|
bool
|
|
|
|
layer_has_fb(struct liftoff_layer *layer)
|
|
|
|
{
|
2019-12-19 17:49:18 +01:00
|
|
|
struct liftoff_layer_property *fb_id_prop;
|
|
|
|
|
|
|
|
fb_id_prop = layer_get_property(layer, "FB_ID");
|
|
|
|
return fb_id_prop != NULL && fb_id_prop->value != 0;
|
|
|
|
}
|
2021-02-24 11:40:01 +01:00
|
|
|
|
2021-08-13 22:02:33 +02:00
|
|
|
bool
|
|
|
|
layer_is_visible(struct liftoff_layer *layer)
|
2021-02-24 11:40:01 +01:00
|
|
|
{
|
|
|
|
struct liftoff_layer_property *alpha_prop;
|
|
|
|
|
|
|
|
alpha_prop = layer_get_property(layer, "alpha");
|
|
|
|
if (alpha_prop != NULL && alpha_prop->value == 0) {
|
|
|
|
return false; /* fully transparent */
|
|
|
|
}
|
|
|
|
|
|
|
|
if (layer->force_composition) {
|
|
|
|
return true;
|
|
|
|
} else {
|
|
|
|
return layer_has_fb(layer);
|
|
|
|
}
|
|
|
|
}
|
2023-02-09 12:33:11 +01:00
|
|
|
|
|
|
|
int
|
|
|
|
layer_cache_fb_info(struct liftoff_layer *layer)
|
|
|
|
{
|
|
|
|
struct liftoff_layer_property *fb_id_prop;
|
|
|
|
drmModeFB2 *fb_info;
|
|
|
|
size_t i, j, num_planes;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
fb_id_prop = layer_get_property(layer, "FB_ID");
|
|
|
|
if (fb_id_prop == NULL || fb_id_prop->value == 0) {
|
|
|
|
memset(&layer->fb_info, 0, sizeof(layer->fb_info));
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (layer->fb_info.fb_id == fb_id_prop->value) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
fb_info = drmModeGetFB2(layer->output->device->drm_fd, fb_id_prop->value);
|
|
|
|
if (fb_info == NULL) {
|
|
|
|
if (errno == EINVAL) {
|
|
|
|
return 0; /* old kernel */
|
|
|
|
}
|
|
|
|
return -errno;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* drmModeGetFB2() always creates new GEM handles -- close these, we
|
|
|
|
* won't use them and we don't want to leak them */
|
|
|
|
num_planes = sizeof(fb_info->handles) / sizeof(fb_info->handles[0]);
|
|
|
|
for (i = 0; i < num_planes; i++) {
|
|
|
|
if (fb_info->handles[i] == 0) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = drmCloseBufferHandle(layer->output->device->drm_fd,
|
|
|
|
fb_info->handles[i]);
|
|
|
|
if (ret != 0) {
|
|
|
|
liftoff_log_errno(LIFTOFF_ERROR, "drmCloseBufferHandle");
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Make sure we don't double-close a handle */
|
|
|
|
for (j = i + 1; j < num_planes; j++) {
|
|
|
|
if (fb_info->handles[j] == fb_info->handles[i]) {
|
|
|
|
fb_info->handles[j] = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
fb_info->handles[i] = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
layer->fb_info = *fb_info;
|
|
|
|
drmModeFreeFB2(fb_info);
|
|
|
|
return 0;
|
|
|
|
}
|
2023-02-06 10:57:13 +01:00
|
|
|
|
|
|
|
bool
|
|
|
|
liftoff_layer_is_candidate_plane(struct liftoff_layer *layer,
|
|
|
|
struct liftoff_plane *plane)
|
|
|
|
{
|
|
|
|
size_t i;
|
|
|
|
|
|
|
|
for (i = 0; i < layer->output->device->planes_cap; i++) {
|
|
|
|
if (layer->candidate_planes[i] == plane->id) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
layer_add_candidate_plane(struct liftoff_layer *layer,
|
|
|
|
struct liftoff_plane *plane)
|
|
|
|
{
|
|
|
|
size_t i;
|
|
|
|
ssize_t empty_slot = -1;
|
|
|
|
|
|
|
|
for (i = 0; i < layer->output->device->planes_cap; i++) {
|
|
|
|
if (layer->candidate_planes[i] == plane->id) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (empty_slot < 0 && layer->candidate_planes[i] == 0) {
|
|
|
|
empty_slot = i;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
assert(empty_slot >= 0);
|
|
|
|
layer->candidate_planes[empty_slot] = plane->id;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
layer_reset_candidate_planes(struct liftoff_layer *layer)
|
|
|
|
{
|
|
|
|
memset(layer->candidate_planes, 0,
|
|
|
|
sizeof(layer->candidate_planes[0]) * layer->output->device->planes_cap);
|
|
|
|
}
|