|
|
@ -13,6 +13,7 @@
|
|
|
|
#include <GLES3/gl3.h>
|
|
|
|
#include <GLES3/gl3.h>
|
|
|
|
#include <wayland-server.h>
|
|
|
|
#include <wayland-server.h>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#include "wayland.h"
|
|
|
|
#include "backend.h"
|
|
|
|
#include "backend.h"
|
|
|
|
#include "backend/drm/backend.h"
|
|
|
|
#include "backend/drm/backend.h"
|
|
|
|
#include "backend/drm/drm.h"
|
|
|
|
#include "backend/drm/drm.h"
|
|
|
@ -39,7 +40,6 @@ static const char *conn_name[] = {
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
bool wlr_drm_renderer_init(struct wlr_drm_renderer *renderer, int fd) {
|
|
|
|
bool wlr_drm_renderer_init(struct wlr_drm_renderer *renderer, int fd) {
|
|
|
|
|
|
|
|
|
|
|
|
renderer->gbm = gbm_create_device(fd);
|
|
|
|
renderer->gbm = gbm_create_device(fd);
|
|
|
|
if (!renderer->gbm) {
|
|
|
|
if (!renderer->gbm) {
|
|
|
|
wlr_log(L_ERROR, "Failed to create GBM device: %s", strerror(errno));
|
|
|
|
wlr_log(L_ERROR, "Failed to create GBM device: %s", strerror(errno));
|
|
|
@ -59,7 +59,6 @@ void wlr_drm_renderer_free(struct wlr_drm_renderer *renderer) {
|
|
|
|
if (!renderer) {
|
|
|
|
if (!renderer) {
|
|
|
|
return;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
wlr_egl_free(&renderer->egl);
|
|
|
|
wlr_egl_free(&renderer->egl);
|
|
|
|
gbm_device_destroy(renderer->gbm);
|
|
|
|
gbm_device_destroy(renderer->gbm);
|
|
|
|
}
|
|
|
|
}
|
|
|
@ -95,79 +94,162 @@ static uint32_t get_fb_for_bo(int fd, struct gbm_bo *bo) {
|
|
|
|
return *id;
|
|
|
|
return *id;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void wlr_drm_output_begin(struct wlr_drm_output *out) {
|
|
|
|
void wlr_drm_output_begin(struct wlr_output *output) {
|
|
|
|
struct wlr_drm_renderer *renderer = out->renderer;
|
|
|
|
struct wlr_output_state *_output = output->state;
|
|
|
|
eglMakeCurrent(renderer->egl.display, out->egl, out->egl, renderer->egl.context);
|
|
|
|
struct wlr_drm_renderer *renderer = _output->renderer;
|
|
|
|
|
|
|
|
eglMakeCurrent(renderer->egl.display, _output->egl,
|
|
|
|
|
|
|
|
_output->egl, renderer->egl.context);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void wlr_drm_output_end(struct wlr_drm_output *out) {
|
|
|
|
void wlr_drm_output_end(struct wlr_output *output) {
|
|
|
|
struct wlr_drm_renderer *renderer = out->renderer;
|
|
|
|
struct wlr_output_state *_output = output->state;
|
|
|
|
eglSwapBuffers(renderer->egl.display, out->egl);
|
|
|
|
struct wlr_drm_renderer *renderer = _output->renderer;
|
|
|
|
|
|
|
|
|
|
|
|
struct gbm_bo *bo = gbm_surface_lock_front_buffer(out->gbm);
|
|
|
|
eglSwapBuffers(renderer->egl.display, _output->egl);
|
|
|
|
|
|
|
|
struct gbm_bo *bo = gbm_surface_lock_front_buffer(_output->gbm);
|
|
|
|
uint32_t fb_id = get_fb_for_bo(renderer->fd, bo);
|
|
|
|
uint32_t fb_id = get_fb_for_bo(renderer->fd, bo);
|
|
|
|
|
|
|
|
drmModePageFlip(renderer->fd, _output->crtc, fb_id, DRM_MODE_PAGE_FLIP_EVENT, _output);
|
|
|
|
drmModePageFlip(renderer->fd, out->crtc, fb_id, DRM_MODE_PAGE_FLIP_EVENT, out);
|
|
|
|
gbm_surface_release_buffer(_output->gbm, bo);
|
|
|
|
|
|
|
|
_output->pageflip_pending = true;
|
|
|
|
gbm_surface_release_buffer(out->gbm, bo);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
out->pageflip_pending = true;
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static bool display_init_renderer(struct wlr_drm_renderer *renderer,
|
|
|
|
static bool display_init_renderer(struct wlr_drm_renderer *renderer,
|
|
|
|
struct wlr_drm_output *out) {
|
|
|
|
struct wlr_output_state *output) {
|
|
|
|
|
|
|
|
struct wlr_output_mode *mode = output->wlr_output->current_mode;
|
|
|
|
out->renderer = renderer;
|
|
|
|
output->renderer = renderer;
|
|
|
|
|
|
|
|
output->gbm = gbm_surface_create(renderer->gbm, mode->width,
|
|
|
|
out->gbm = gbm_surface_create(renderer->gbm, out->width, out->height,
|
|
|
|
mode->height, GBM_FORMAT_XRGB8888, GBM_BO_USE_SCANOUT | GBM_BO_USE_RENDERING);
|
|
|
|
GBM_FORMAT_XRGB8888, GBM_BO_USE_SCANOUT | GBM_BO_USE_RENDERING);
|
|
|
|
if (!output->gbm) {
|
|
|
|
if (!out->gbm) {
|
|
|
|
wlr_log(L_ERROR, "Failed to create GBM surface for %s: %s", output->name,
|
|
|
|
wlr_log(L_ERROR, "Failed to create GBM surface for %s: %s", out->name,
|
|
|
|
|
|
|
|
strerror(errno));
|
|
|
|
strerror(errno));
|
|
|
|
return false;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
out->egl = wlr_egl_create_surface(&renderer->egl, out->gbm);
|
|
|
|
output->egl = wlr_egl_create_surface(&renderer->egl, output->gbm);
|
|
|
|
if (out->egl == EGL_NO_SURFACE) {
|
|
|
|
if (output->egl == EGL_NO_SURFACE) {
|
|
|
|
wlr_log(L_ERROR, "Failed to create EGL surface for %s", out->name);
|
|
|
|
wlr_log(L_ERROR, "Failed to create EGL surface for %s", output->name);
|
|
|
|
return false;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Render black frame
|
|
|
|
// Render black frame
|
|
|
|
|
|
|
|
eglMakeCurrent(renderer->egl.display, output->egl, output->egl, renderer->egl.context);
|
|
|
|
|
|
|
|
|
|
|
|
eglMakeCurrent(renderer->egl.display, out->egl, out->egl, renderer->egl.context);
|
|
|
|
glViewport(0, 0, output->width, output->height);
|
|
|
|
|
|
|
|
|
|
|
|
glViewport(0, 0, out->width, out->height);
|
|
|
|
|
|
|
|
glClearColor(0.0, 0.0, 0.0, 1.0);
|
|
|
|
glClearColor(0.0, 0.0, 0.0, 1.0);
|
|
|
|
glClear(GL_COLOR_BUFFER_BIT);
|
|
|
|
glClear(GL_COLOR_BUFFER_BIT);
|
|
|
|
|
|
|
|
|
|
|
|
eglSwapBuffers(renderer->egl.display, out->egl);
|
|
|
|
eglSwapBuffers(renderer->egl.display, output->egl);
|
|
|
|
|
|
|
|
|
|
|
|
struct gbm_bo *bo = gbm_surface_lock_front_buffer(out->gbm);
|
|
|
|
struct gbm_bo *bo = gbm_surface_lock_front_buffer(output->gbm);
|
|
|
|
uint32_t fb_id = get_fb_for_bo(renderer->fd, bo);
|
|
|
|
uint32_t fb_id = get_fb_for_bo(renderer->fd, bo);
|
|
|
|
|
|
|
|
|
|
|
|
drmModeSetCrtc(renderer->fd, out->crtc, fb_id, 0, 0,
|
|
|
|
drmModeSetCrtc(renderer->fd, output->crtc, fb_id, 0, 0,
|
|
|
|
&out->connector, 1, &out->active_mode->mode);
|
|
|
|
&output->connector, 1, &mode->state->mode);
|
|
|
|
drmModePageFlip(renderer->fd, out->crtc, fb_id, DRM_MODE_PAGE_FLIP_EVENT, out);
|
|
|
|
drmModePageFlip(renderer->fd, output->crtc, fb_id,
|
|
|
|
|
|
|
|
DRM_MODE_PAGE_FLIP_EVENT, output);
|
|
|
|
gbm_surface_release_buffer(out->gbm, bo);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
gbm_surface_release_buffer(output->gbm, bo);
|
|
|
|
return true;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int find_id(const void *item, const void *cmp_to) {
|
|
|
|
static int find_id(const void *item, const void *cmp_to) {
|
|
|
|
const struct wlr_drm_output *out = item;
|
|
|
|
const struct wlr_output_state *output = item;
|
|
|
|
const uint32_t *id = cmp_to;
|
|
|
|
const uint32_t *id = cmp_to;
|
|
|
|
|
|
|
|
|
|
|
|
if (out->connector < *id) {
|
|
|
|
if (output->connector < *id) {
|
|
|
|
return -1;
|
|
|
|
return -1;
|
|
|
|
} else if (out->connector > *id) {
|
|
|
|
} else if (output->connector > *id) {
|
|
|
|
return 1;
|
|
|
|
return 1;
|
|
|
|
} else {
|
|
|
|
} else {
|
|
|
|
return 0;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
static bool wlr_drm_output_set_mode(struct wlr_output_state *output,
|
|
|
|
|
|
|
|
struct wlr_output_mode *mode) {
|
|
|
|
|
|
|
|
struct wlr_backend_state *state =
|
|
|
|
|
|
|
|
wl_container_of(output->renderer, state, renderer);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
wlr_log(L_INFO, "Modesetting '%s' with '%ux%u@%u mHz'", output->name,
|
|
|
|
|
|
|
|
mode->width, mode->height, mode->refresh);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
drmModeConnector *conn = drmModeGetConnector(state->fd, output->connector);
|
|
|
|
|
|
|
|
if (!conn) {
|
|
|
|
|
|
|
|
wlr_log(L_ERROR, "Failed to get DRM connector");
|
|
|
|
|
|
|
|
goto error;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (conn->connection != DRM_MODE_CONNECTED || conn->count_modes == 0) {
|
|
|
|
|
|
|
|
wlr_log(L_ERROR, "%s is not connected", output->name);
|
|
|
|
|
|
|
|
goto error;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
drmModeRes *res = drmModeGetResources(state->fd);
|
|
|
|
|
|
|
|
if (!res) {
|
|
|
|
|
|
|
|
wlr_log(L_ERROR, "Failed to get DRM resources");
|
|
|
|
|
|
|
|
goto error;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
bool success = false;
|
|
|
|
|
|
|
|
for (int i = 0; !success && i < conn->count_encoders; ++i) {
|
|
|
|
|
|
|
|
drmModeEncoder *enc = drmModeGetEncoder(state->fd, conn->encoders[i]);
|
|
|
|
|
|
|
|
if (!enc) {
|
|
|
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
for (int j = 0; j < res->count_crtcs; ++j) {
|
|
|
|
|
|
|
|
if ((enc->possible_crtcs & (1 << j)) == 0) {
|
|
|
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if ((state->taken_crtcs & (1 << j)) == 0) {
|
|
|
|
|
|
|
|
state->taken_crtcs |= 1 << j;
|
|
|
|
|
|
|
|
output->crtc = res->crtcs[j];
|
|
|
|
|
|
|
|
success = true;
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
drmModeFreeEncoder(enc);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
drmModeFreeResources(res);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (!success) {
|
|
|
|
|
|
|
|
wlr_log(L_ERROR, "Failed to find CRTC for %s", output->name);
|
|
|
|
|
|
|
|
goto error;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
output->state = DRM_OUTPUT_CONNECTED;
|
|
|
|
|
|
|
|
output->width = mode->width;
|
|
|
|
|
|
|
|
output->height = mode->height;
|
|
|
|
|
|
|
|
output->wlr_output->current_mode = mode;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (!display_init_renderer(&state->renderer, output)) {
|
|
|
|
|
|
|
|
wlr_log(L_ERROR, "Failed to initalise renderer for %s", output->name);
|
|
|
|
|
|
|
|
goto error;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
drmModeFreeConnector(conn);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
error:
|
|
|
|
|
|
|
|
// TODO: destroy
|
|
|
|
|
|
|
|
wlr_drm_output_cleanup(output, false);
|
|
|
|
|
|
|
|
drmModeFreeConnector(conn);
|
|
|
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
static void wlr_drm_output_destroy(struct wlr_output_state *output) {
|
|
|
|
|
|
|
|
wlr_drm_output_cleanup(output, true);
|
|
|
|
|
|
|
|
wlr_drm_renderer_free(output->renderer);
|
|
|
|
|
|
|
|
free(output);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
static struct wlr_output_impl output_impl = {
|
|
|
|
|
|
|
|
.set_mode = wlr_drm_output_set_mode,
|
|
|
|
|
|
|
|
.destroy = wlr_drm_output_destroy,
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
void wlr_drm_scan_connectors(struct wlr_backend_state *state) {
|
|
|
|
void wlr_drm_scan_connectors(struct wlr_backend_state *state) {
|
|
|
|
wlr_log(L_INFO, "Scanning DRM connectors");
|
|
|
|
wlr_log(L_INFO, "Scanning DRM connectors");
|
|
|
|
|
|
|
|
|
|
|
@ -186,171 +268,98 @@ void wlr_drm_scan_connectors(struct wlr_backend_state *state) {
|
|
|
|
continue;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
struct wlr_drm_output *out;
|
|
|
|
struct wlr_output_state *output;
|
|
|
|
|
|
|
|
struct wlr_output *wlr_output;
|
|
|
|
int index = list_seq_find(state->outputs, find_id, &id);
|
|
|
|
int index = list_seq_find(state->outputs, find_id, &id);
|
|
|
|
|
|
|
|
|
|
|
|
if (index == -1) {
|
|
|
|
if (index == -1) {
|
|
|
|
out = calloc(1, sizeof(struct wlr_drm_output));
|
|
|
|
output = calloc(1, sizeof(struct wlr_output_state));
|
|
|
|
if (!out) {
|
|
|
|
if (!state) {
|
|
|
|
|
|
|
|
drmModeFreeConnector(conn);
|
|
|
|
wlr_log(L_ERROR, "Allocation failed: %s", strerror(errno));
|
|
|
|
wlr_log(L_ERROR, "Allocation failed: %s", strerror(errno));
|
|
|
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
wlr_output = output->wlr_output = wlr_output_create(&output_impl, output);
|
|
|
|
|
|
|
|
if (!wlr_output) {
|
|
|
|
drmModeFreeConnector(conn);
|
|
|
|
drmModeFreeConnector(conn);
|
|
|
|
continue;
|
|
|
|
wlr_log(L_ERROR, "Allocation failed: %s", strerror(errno));
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
out->renderer = &state->renderer;
|
|
|
|
output->renderer = &state->renderer;
|
|
|
|
out->state = DRM_OUTPUT_DISCONNECTED;
|
|
|
|
output->state = DRM_OUTPUT_DISCONNECTED;
|
|
|
|
out->connector = id;
|
|
|
|
output->connector = id;
|
|
|
|
snprintf(out->name, sizeof out->name, "%s-%"PRIu32,
|
|
|
|
// TODO: Populate more wlr_output fields
|
|
|
|
|
|
|
|
// TODO: Move this to wlr_output->name
|
|
|
|
|
|
|
|
snprintf(output->name, sizeof(output->name), "%s-%"PRIu32,
|
|
|
|
conn_name[conn->connector_type],
|
|
|
|
conn_name[conn->connector_type],
|
|
|
|
conn->connector_type_id);
|
|
|
|
conn->connector_type_id);
|
|
|
|
|
|
|
|
|
|
|
|
drmModeEncoder *curr_enc = drmModeGetEncoder(state->fd, conn->encoder_id);
|
|
|
|
drmModeEncoder *curr_enc = drmModeGetEncoder(state->fd, conn->encoder_id);
|
|
|
|
if (curr_enc) {
|
|
|
|
if (curr_enc) {
|
|
|
|
out->old_crtc = drmModeGetCrtc(state->fd, curr_enc->crtc_id);
|
|
|
|
output->old_crtc = drmModeGetCrtc(state->fd, curr_enc->crtc_id);
|
|
|
|
free(curr_enc);
|
|
|
|
free(curr_enc);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
list_add(state->outputs, out);
|
|
|
|
list_add(state->outputs, output);
|
|
|
|
wlr_log(L_INFO, "Found display '%s'", out->name);
|
|
|
|
wlr_log(L_INFO, "Found display '%s'", output->name);
|
|
|
|
} else {
|
|
|
|
} else {
|
|
|
|
out = state->outputs->items[index];
|
|
|
|
output = state->outputs->items[index];
|
|
|
|
|
|
|
|
wlr_output = output->wlr_output;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (out->state == DRM_OUTPUT_DISCONNECTED &&
|
|
|
|
// TODO: move state into wlr_output
|
|
|
|
|
|
|
|
if (output->state == DRM_OUTPUT_DISCONNECTED &&
|
|
|
|
conn->connection == DRM_MODE_CONNECTED) {
|
|
|
|
conn->connection == DRM_MODE_CONNECTED) {
|
|
|
|
|
|
|
|
|
|
|
|
wlr_log(L_INFO, "'%s' connected", out->name);
|
|
|
|
wlr_log(L_INFO, "'%s' connected", output->name);
|
|
|
|
|
|
|
|
|
|
|
|
out->modes = malloc(sizeof(*out->modes) * conn->count_modes);
|
|
|
|
|
|
|
|
if (!out->modes) {
|
|
|
|
|
|
|
|
wlr_log(L_ERROR, "Allocation failed: %s", strerror(errno));
|
|
|
|
|
|
|
|
goto error;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
wlr_log(L_INFO, "Detected modes:");
|
|
|
|
wlr_log(L_INFO, "Detected modes:");
|
|
|
|
|
|
|
|
|
|
|
|
out->num_modes = conn->count_modes;
|
|
|
|
|
|
|
|
for (int i = 0; i < conn->count_modes; ++i) {
|
|
|
|
for (int i = 0; i < conn->count_modes; ++i) {
|
|
|
|
drmModeModeInfo *mode = &conn->modes[i];
|
|
|
|
struct wlr_output_mode_state *_state = calloc(1,
|
|
|
|
out->modes[i].width = mode->hdisplay;
|
|
|
|
sizeof(struct wlr_output_mode_state));
|
|
|
|
out->modes[i].height = mode->vdisplay;
|
|
|
|
_state->mode = conn->modes[i];
|
|
|
|
|
|
|
|
struct wlr_output_mode *mode = calloc(1,
|
|
|
|
|
|
|
|
sizeof(struct wlr_output_mode));
|
|
|
|
|
|
|
|
mode->width = _state->mode.hdisplay;
|
|
|
|
// TODO: Calculate more accurate refresh rate
|
|
|
|
// TODO: Calculate more accurate refresh rate
|
|
|
|
out->modes[i].rate = mode->vrefresh;
|
|
|
|
// TODO: Check that this refresh rate is mHz
|
|
|
|
out->modes[i].mode = *mode;
|
|
|
|
mode->height = _state->mode.vdisplay;
|
|
|
|
|
|
|
|
mode->state = _state;
|
|
|
|
|
|
|
|
|
|
|
|
wlr_log(L_INFO, " %"PRIu16"@%"PRIu16"@%"PRIu32,
|
|
|
|
wlr_log(L_INFO, " %"PRIu16"@%"PRIu16"@%"PRIu32,
|
|
|
|
mode->hdisplay, mode->vdisplay,
|
|
|
|
_state->mode.hdisplay, _state->mode.vdisplay,
|
|
|
|
mode->vrefresh);
|
|
|
|
_state->mode.vrefresh);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
out->state = DRM_OUTPUT_NEEDS_MODESET;
|
|
|
|
|
|
|
|
wlr_log(L_INFO, "Sending modesetting signal for '%s'", out->name);
|
|
|
|
|
|
|
|
wl_signal_emit(&state->backend->events.output_add, out);
|
|
|
|
|
|
|
|
} else if (out->state == DRM_OUTPUT_CONNECTED &&
|
|
|
|
|
|
|
|
conn->connection != DRM_MODE_CONNECTED) {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
wlr_log(L_INFO, "'%s' disconnected", out->name);
|
|
|
|
|
|
|
|
wlr_drm_output_cleanup(out, false);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
error:
|
|
|
|
|
|
|
|
drmModeFreeConnector(conn);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
drmModeFreeResources(res);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
struct wlr_drm_mode *wlr_drm_output_get_modes(struct wlr_drm_output *out, size_t *count) {
|
|
|
|
|
|
|
|
if (out->state == DRM_OUTPUT_DISCONNECTED) {
|
|
|
|
|
|
|
|
*count = 0;
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
*count = out->num_modes;
|
|
|
|
|
|
|
|
return out->modes;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
bool wlr_drm_output_modeset(struct wlr_drm_output *out, struct wlr_drm_mode *mode) {
|
|
|
|
|
|
|
|
struct wlr_backend_state *state = wl_container_of(out->renderer, state, renderer);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
wlr_log(L_INFO, "Modesetting '%s' with '%ux%u@%u'", out->name, mode->width,
|
|
|
|
|
|
|
|
mode->height, mode->rate);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
drmModeConnector *conn = drmModeGetConnector(state->fd, out->connector);
|
|
|
|
|
|
|
|
if (!conn) {
|
|
|
|
|
|
|
|
wlr_log(L_ERROR, "Failed to get DRM connector");
|
|
|
|
|
|
|
|
goto error;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (conn->connection != DRM_MODE_CONNECTED || conn->count_modes == 0) {
|
|
|
|
|
|
|
|
wlr_log(L_ERROR, "%s is not connected", out->name);
|
|
|
|
|
|
|
|
goto error;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
drmModeRes *res = drmModeGetResources(state->fd);
|
|
|
|
|
|
|
|
if (!res) {
|
|
|
|
|
|
|
|
wlr_log(L_ERROR, "Failed to get DRM resources");
|
|
|
|
|
|
|
|
goto error;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
bool success = false;
|
|
|
|
|
|
|
|
for (int i = 0; !success && i < conn->count_encoders; ++i) {
|
|
|
|
|
|
|
|
drmModeEncoder *enc = drmModeGetEncoder(state->fd, conn->encoders[i]);
|
|
|
|
|
|
|
|
if (!enc)
|
|
|
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
for (int j = 0; j < res->count_crtcs; ++j) {
|
|
|
|
list_add(wlr_output->modes, mode);
|
|
|
|
if ((enc->possible_crtcs & (1 << j)) == 0) {
|
|
|
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if ((state->taken_crtcs & (1 << j)) == 0) {
|
|
|
|
output->state = DRM_OUTPUT_NEEDS_MODESET;
|
|
|
|
state->taken_crtcs |= 1 << j;
|
|
|
|
wlr_log(L_INFO, "Sending modesetting signal for '%s'", output->name);
|
|
|
|
out->crtc = res->crtcs[j];
|
|
|
|
wl_signal_emit(&state->backend->events.output_add, wlr_output);
|
|
|
|
|
|
|
|
} else if (output->state == DRM_OUTPUT_CONNECTED &&
|
|
|
|
|
|
|
|
conn->connection != DRM_MODE_CONNECTED) {
|
|
|
|
|
|
|
|
|
|
|
|
success = true;
|
|
|
|
wlr_log(L_INFO, "'%s' disconnected", output->name);
|
|
|
|
break;
|
|
|
|
// TODO: Destroy
|
|
|
|
}
|
|
|
|
wlr_drm_output_cleanup(output, false);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
drmModeFreeEncoder(enc);
|
|
|
|
drmModeFreeConnector(conn);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
drmModeFreeResources(res);
|
|
|
|
drmModeFreeResources(res);
|
|
|
|
|
|
|
|
|
|
|
|
if (!success) {
|
|
|
|
|
|
|
|
wlr_log(L_ERROR, "Failed to find CRTC for %s", out->name);
|
|
|
|
|
|
|
|
goto error;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
out->state = DRM_OUTPUT_CONNECTED;
|
|
|
|
|
|
|
|
out->active_mode = mode;
|
|
|
|
|
|
|
|
out->width = mode->width;
|
|
|
|
|
|
|
|
out->height = mode->height;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (!display_init_renderer(&state->renderer, out)) {
|
|
|
|
|
|
|
|
wlr_log(L_ERROR, "Failed to initalise renderer for %s", out->name);
|
|
|
|
|
|
|
|
goto error;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
drmModeFreeConnector(conn);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
error:
|
|
|
|
|
|
|
|
wlr_drm_output_cleanup(out, false);
|
|
|
|
|
|
|
|
drmModeFreeConnector(conn);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void page_flip_handler(int fd, unsigned seq,
|
|
|
|
static void page_flip_handler(int fd, unsigned seq,
|
|
|
|
unsigned tv_sec, unsigned tv_usec, void *user) {
|
|
|
|
unsigned tv_sec, unsigned tv_usec, void *user) {
|
|
|
|
struct wlr_drm_output *out = user;
|
|
|
|
struct wlr_output_state *output = user;
|
|
|
|
struct wlr_backend_state *state = wl_container_of(out->renderer, state, renderer);
|
|
|
|
struct wlr_backend_state *state =
|
|
|
|
|
|
|
|
wl_container_of(output->renderer, state, renderer);
|
|
|
|
|
|
|
|
|
|
|
|
out->pageflip_pending = false;
|
|
|
|
output->pageflip_pending = false;
|
|
|
|
if (out->state == DRM_OUTPUT_CONNECTED) {
|
|
|
|
if (output->state == DRM_OUTPUT_CONNECTED) {
|
|
|
|
wl_signal_emit(&state->backend->events.output_frame, out);
|
|
|
|
wl_signal_emit(&output->wlr_output->events.frame, output->wlr_output);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
@ -361,66 +370,50 @@ int wlr_drm_event(int fd, uint32_t mask, void *data) {
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
drmHandleEvent(fd, &event);
|
|
|
|
drmHandleEvent(fd, &event);
|
|
|
|
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void restore_output(struct wlr_drm_output *out, int fd) {
|
|
|
|
static void restore_output(struct wlr_output_state *output, int fd) {
|
|
|
|
// Wait for any pending pageflips to finish
|
|
|
|
// Wait for any pending pageflips to finish
|
|
|
|
while (out->pageflip_pending) {
|
|
|
|
while (output->pageflip_pending) {
|
|
|
|
wlr_drm_event(fd, 0, NULL);
|
|
|
|
wlr_drm_event(fd, 0, NULL);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
drmModeCrtc *crtc = out->old_crtc;
|
|
|
|
drmModeCrtc *crtc = output->old_crtc;
|
|
|
|
if (!crtc) {
|
|
|
|
if (!crtc) {
|
|
|
|
return;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
drmModeSetCrtc(fd, crtc->crtc_id, crtc->buffer_id, crtc->x, crtc->y,
|
|
|
|
drmModeSetCrtc(fd, crtc->crtc_id, crtc->buffer_id, crtc->x, crtc->y,
|
|
|
|
&out->connector, 1, &crtc->mode);
|
|
|
|
&output->connector, 1, &crtc->mode);
|
|
|
|
drmModeFreeCrtc(crtc);
|
|
|
|
drmModeFreeCrtc(crtc);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void wlr_drm_output_cleanup(struct wlr_drm_output *out, bool restore) {
|
|
|
|
void wlr_drm_output_cleanup(struct wlr_output_state *output, bool restore) {
|
|
|
|
if (!out) {
|
|
|
|
if (!output) {
|
|
|
|
return;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
struct wlr_drm_renderer *renderer = out->renderer;
|
|
|
|
struct wlr_drm_renderer *renderer = output->renderer;
|
|
|
|
struct wlr_backend_state *state = wl_container_of(renderer, state, renderer);
|
|
|
|
struct wlr_backend_state *state = wl_container_of(renderer, state, renderer);
|
|
|
|
|
|
|
|
|
|
|
|
switch (out->state) {
|
|
|
|
switch (output->state) {
|
|
|
|
case DRM_OUTPUT_CONNECTED:
|
|
|
|
case DRM_OUTPUT_CONNECTED:
|
|
|
|
eglDestroySurface(renderer->egl.display, out->egl);
|
|
|
|
eglDestroySurface(renderer->egl.display, output->egl);
|
|
|
|
gbm_surface_destroy(out->gbm);
|
|
|
|
gbm_surface_destroy(output->gbm);
|
|
|
|
|
|
|
|
output->egl = EGL_NO_SURFACE;
|
|
|
|
out->egl = EGL_NO_SURFACE;
|
|
|
|
output->gbm = NULL;
|
|
|
|
out->gbm = NULL;
|
|
|
|
|
|
|
|
/* Fallthrough */
|
|
|
|
/* Fallthrough */
|
|
|
|
|
|
|
|
|
|
|
|
case DRM_OUTPUT_NEEDS_MODESET:
|
|
|
|
case DRM_OUTPUT_NEEDS_MODESET:
|
|
|
|
free(out->modes);
|
|
|
|
output->state = DRM_OUTPUT_DISCONNECTED;
|
|
|
|
out->num_modes = 0;
|
|
|
|
|
|
|
|
out->modes = NULL;
|
|
|
|
|
|
|
|
out->active_mode = NULL;
|
|
|
|
|
|
|
|
out->width = 0;
|
|
|
|
|
|
|
|
out->height = 0;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
out->state = DRM_OUTPUT_DISCONNECTED;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (restore) {
|
|
|
|
if (restore) {
|
|
|
|
restore_output(out, renderer->fd);
|
|
|
|
restore_output(output, renderer->fd);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
wlr_log(L_INFO, "Emmiting destruction signal for '%s'", output->name);
|
|
|
|
wlr_log(L_INFO, "Emmiting destruction signal for '%s'", out->name);
|
|
|
|
wl_signal_emit(&state->backend->events.output_remove, output->wlr_output);
|
|
|
|
wl_signal_emit(&state->backend->events.output_remove, out);
|
|
|
|
|
|
|
|
break;
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
|
|
case DRM_OUTPUT_DISCONNECTED:
|
|
|
|
case DRM_OUTPUT_DISCONNECTED:
|
|
|
|
break;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// TODO: free wlr_output
|
|
|
|
|
|
|
|
|
|
|
|
const char *wlr_drm_output_get_name(struct wlr_drm_output *out) {
|
|
|
|
|
|
|
|
return out->name;
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|