2010-06-11 20:56:24 +04:00
|
|
|
/*
|
Change remaining GPLv2 headers to MIT
The files in question are copyright Benjamin Franzke (who agrees),
Intel Corporation, Red Hat and myself. On behalf of Red Hat,
Richard Fontana says:
"Therefore, to the extent that Red Hat, Inc. has any copyright
interest in the files you cited as of this date (compositor-drm.c,
compositor.c, compositor.h, screenshooter.c in
http://cgit.freedesktop.org/wayland/wayland-demos/tree/compositor),
Red Hat hereby elects to apply the CC0 1.0 Universal Public Domain
Dedication to such copyrighted material. See:
http://creativecommons.org/publicdomain/zero/1.0/legalcode .
Thanks,
Richard E. Fontana
Open Source Licensing and Patent Counsel
Red Hat, Inc."
2011-09-15 23:43:14 +04:00
|
|
|
* Copyright © 2008-2011 Kristian Høgsberg
|
|
|
|
* Copyright © 2011 Intel Corporation
|
2010-06-11 20:56:24 +04:00
|
|
|
*
|
Change remaining GPLv2 headers to MIT
The files in question are copyright Benjamin Franzke (who agrees),
Intel Corporation, Red Hat and myself. On behalf of Red Hat,
Richard Fontana says:
"Therefore, to the extent that Red Hat, Inc. has any copyright
interest in the files you cited as of this date (compositor-drm.c,
compositor.c, compositor.h, screenshooter.c in
http://cgit.freedesktop.org/wayland/wayland-demos/tree/compositor),
Red Hat hereby elects to apply the CC0 1.0 Universal Public Domain
Dedication to such copyrighted material. See:
http://creativecommons.org/publicdomain/zero/1.0/legalcode .
Thanks,
Richard E. Fontana
Open Source Licensing and Patent Counsel
Red Hat, Inc."
2011-09-15 23:43:14 +04:00
|
|
|
* Permission to use, copy, modify, distribute, and sell this software and
|
|
|
|
* its documentation for any purpose is hereby granted without fee, provided
|
|
|
|
* that the above copyright notice appear in all copies and that both that
|
|
|
|
* copyright notice and this permission notice appear in supporting
|
|
|
|
* documentation, and that the name of the copyright holders not be used in
|
|
|
|
* advertising or publicity pertaining to distribution of the software
|
|
|
|
* without specific, written prior permission. The copyright holders make
|
|
|
|
* no representations about the suitability of this software for any
|
|
|
|
* purpose. It is provided "as is" without express or implied warranty.
|
2010-06-11 20:56:24 +04:00
|
|
|
*
|
Change remaining GPLv2 headers to MIT
The files in question are copyright Benjamin Franzke (who agrees),
Intel Corporation, Red Hat and myself. On behalf of Red Hat,
Richard Fontana says:
"Therefore, to the extent that Red Hat, Inc. has any copyright
interest in the files you cited as of this date (compositor-drm.c,
compositor.c, compositor.h, screenshooter.c in
http://cgit.freedesktop.org/wayland/wayland-demos/tree/compositor),
Red Hat hereby elects to apply the CC0 1.0 Universal Public Domain
Dedication to such copyrighted material. See:
http://creativecommons.org/publicdomain/zero/1.0/legalcode .
Thanks,
Richard E. Fontana
Open Source Licensing and Patent Counsel
Red Hat, Inc."
2011-09-15 23:43:14 +04:00
|
|
|
* THE COPYRIGHT HOLDERS DISCLAIM ALL WARRANTIES WITH REGARD TO THIS
|
|
|
|
* SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
|
|
|
|
* FITNESS, IN NO EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
|
|
* SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER
|
|
|
|
* RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF
|
|
|
|
* CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
|
|
|
|
* CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
2010-06-11 20:56:24 +04:00
|
|
|
*/
|
|
|
|
|
2011-04-12 19:34:32 +04:00
|
|
|
#define _GNU_SOURCE
|
|
|
|
|
2012-02-23 18:45:49 +04:00
|
|
|
#include <errno.h>
|
2010-06-11 20:56:24 +04:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <unistd.h>
|
2012-04-10 08:11:50 +04:00
|
|
|
#include <linux/input.h>
|
2010-06-11 20:56:24 +04:00
|
|
|
|
2011-03-02 13:56:04 +03:00
|
|
|
#include <xf86drm.h>
|
|
|
|
#include <xf86drmMode.h>
|
2012-02-23 18:45:49 +04:00
|
|
|
#include <drm_fourcc.h>
|
2011-03-02 13:56:04 +03:00
|
|
|
|
2011-04-30 11:32:11 +04:00
|
|
|
#include <gbm.h>
|
2012-02-29 21:53:50 +04:00
|
|
|
#include <libbacklight.h>
|
2011-04-30 11:32:11 +04:00
|
|
|
|
2010-06-11 20:56:24 +04:00
|
|
|
#include "compositor.h"
|
2011-12-19 03:14:03 +04:00
|
|
|
#include "evdev.h"
|
2012-01-30 17:04:04 +04:00
|
|
|
#include "launcher-util.h"
|
2012-06-07 20:01:59 +04:00
|
|
|
#include "log.h"
|
2010-06-11 20:56:24 +04:00
|
|
|
|
2012-06-19 06:37:35 +04:00
|
|
|
enum {
|
|
|
|
WESTON_PLANE_DRM_CURSOR = 0x100
|
|
|
|
};
|
|
|
|
|
2010-06-14 19:54:00 +04:00
|
|
|
struct drm_compositor {
|
Rename wayland-compositor to weston
This rename addresses a few problems around the split between core
Wayland and the wayland-demos repository.
1) Initially, we had one big repository with protocol code, sample
compositor and sample clients. We split that repository to make it
possible to implement the protocol without pulling in the sample/demo
code. At this point, the compositor is more than just a "demo" and
wayland-demos doesn't send the right message. The sample compositor
is a useful, self-contained project in it's own right, and we want to
move away from the "demos" label.
2) Another problem is that the wayland-demos compositor is often
called "the wayland compsitor", but it's really just one possible
compositor. Existing X11 compositors are expected to add Wayland
support and then gradually phase out/modularize the X11 support, for
example. Conversely, it's hard to talk about the wayland-demos
compositor specifically as opposed to, eg, the wayland protocol or a
wayland compositor in general.
We are also renaming the repo to weston, and the compositor
subdirectory to src/, to emphasize that the main "output" is the
compositor.
2012-01-03 19:29:47 +04:00
|
|
|
struct weston_compositor base;
|
2010-06-14 19:54:00 +04:00
|
|
|
|
|
|
|
struct udev *udev;
|
|
|
|
struct wl_event_source *drm_source;
|
|
|
|
|
2011-03-15 17:08:41 +03:00
|
|
|
struct udev_monitor *udev_monitor;
|
|
|
|
struct wl_event_source *udev_drm_source;
|
|
|
|
|
2011-03-02 13:14:59 +03:00
|
|
|
struct {
|
2012-03-11 23:05:21 +04:00
|
|
|
int id;
|
2011-03-02 13:14:59 +03:00
|
|
|
int fd;
|
|
|
|
} drm;
|
2011-04-30 11:32:11 +04:00
|
|
|
struct gbm_device *gbm;
|
2012-02-23 18:45:49 +04:00
|
|
|
uint32_t *crtcs;
|
|
|
|
int num_crtcs;
|
2011-02-10 03:01:42 +03:00
|
|
|
uint32_t crtc_allocator;
|
2011-03-15 17:08:41 +03:00
|
|
|
uint32_t connector_allocator;
|
2011-01-14 22:59:13 +03:00
|
|
|
struct tty *tty;
|
2011-12-02 15:07:27 +04:00
|
|
|
|
2012-03-29 06:53:49 +04:00
|
|
|
struct gbm_surface *dummy_surface;
|
|
|
|
EGLSurface dummy_egl_surface;
|
|
|
|
|
2012-02-23 18:45:49 +04:00
|
|
|
struct wl_list sprite_list;
|
2012-03-06 04:57:35 +04:00
|
|
|
int sprites_are_broken;
|
2012-02-23 18:45:49 +04:00
|
|
|
|
2011-12-02 15:07:27 +04:00
|
|
|
uint32_t prev_state;
|
2010-06-14 19:54:00 +04:00
|
|
|
};
|
|
|
|
|
2011-06-21 19:16:58 +04:00
|
|
|
struct drm_mode {
|
Rename wayland-compositor to weston
This rename addresses a few problems around the split between core
Wayland and the wayland-demos repository.
1) Initially, we had one big repository with protocol code, sample
compositor and sample clients. We split that repository to make it
possible to implement the protocol without pulling in the sample/demo
code. At this point, the compositor is more than just a "demo" and
wayland-demos doesn't send the right message. The sample compositor
is a useful, self-contained project in it's own right, and we want to
move away from the "demos" label.
2) Another problem is that the wayland-demos compositor is often
called "the wayland compsitor", but it's really just one possible
compositor. Existing X11 compositors are expected to add Wayland
support and then gradually phase out/modularize the X11 support, for
example. Conversely, it's hard to talk about the wayland-demos
compositor specifically as opposed to, eg, the wayland protocol or a
wayland compositor in general.
We are also renaming the repo to weston, and the compositor
subdirectory to src/, to emphasize that the main "output" is the
compositor.
2012-01-03 19:29:47 +04:00
|
|
|
struct weston_mode base;
|
2011-06-21 19:16:58 +04:00
|
|
|
drmModeModeInfo mode_info;
|
|
|
|
};
|
|
|
|
|
2012-05-02 17:42:21 +04:00
|
|
|
struct drm_output;
|
|
|
|
|
|
|
|
struct drm_fb {
|
|
|
|
struct gbm_bo *bo;
|
|
|
|
struct drm_output *output;
|
|
|
|
uint32_t fb_id;
|
|
|
|
int is_client_buffer;
|
|
|
|
struct wl_buffer *buffer;
|
|
|
|
struct wl_listener buffer_destroy_listener;
|
|
|
|
};
|
|
|
|
|
2010-06-14 19:54:00 +04:00
|
|
|
struct drm_output {
|
Rename wayland-compositor to weston
This rename addresses a few problems around the split between core
Wayland and the wayland-demos repository.
1) Initially, we had one big repository with protocol code, sample
compositor and sample clients. We split that repository to make it
possible to implement the protocol without pulling in the sample/demo
code. At this point, the compositor is more than just a "demo" and
wayland-demos doesn't send the right message. The sample compositor
is a useful, self-contained project in it's own right, and we want to
move away from the "demos" label.
2) Another problem is that the wayland-demos compositor is often
called "the wayland compsitor", but it's really just one possible
compositor. Existing X11 compositors are expected to add Wayland
support and then gradually phase out/modularize the X11 support, for
example. Conversely, it's hard to talk about the wayland-demos
compositor specifically as opposed to, eg, the wayland protocol or a
wayland compositor in general.
We are also renaming the repo to weston, and the compositor
subdirectory to src/, to emphasize that the main "output" is the
compositor.
2012-01-03 19:29:47 +04:00
|
|
|
struct weston_output base;
|
2010-06-14 19:54:00 +04:00
|
|
|
|
|
|
|
uint32_t crtc_id;
|
|
|
|
uint32_t connector_id;
|
2011-08-30 00:52:23 +04:00
|
|
|
drmModeCrtcPtr original_crtc;
|
2012-03-12 02:27:41 +04:00
|
|
|
|
|
|
|
struct gbm_surface *surface;
|
2012-05-03 19:39:35 +04:00
|
|
|
struct gbm_bo *cursor_bo[2];
|
|
|
|
int current_cursor;
|
2012-03-12 02:27:41 +04:00
|
|
|
EGLSurface egl_surface;
|
2012-05-02 17:42:21 +04:00
|
|
|
struct drm_fb *current, *next;
|
2012-02-29 21:53:50 +04:00
|
|
|
struct backlight *backlight;
|
2010-06-14 19:54:00 +04:00
|
|
|
};
|
|
|
|
|
2012-02-23 18:45:49 +04:00
|
|
|
/*
|
|
|
|
* An output has a primary display plane plus zero or more sprites for
|
|
|
|
* blending display contents.
|
|
|
|
*/
|
|
|
|
struct drm_sprite {
|
|
|
|
struct wl_list link;
|
|
|
|
|
|
|
|
uint32_t fb_id;
|
|
|
|
uint32_t pending_fb_id;
|
|
|
|
struct weston_surface *surface;
|
|
|
|
struct weston_surface *pending_surface;
|
|
|
|
|
|
|
|
struct drm_compositor *compositor;
|
|
|
|
|
|
|
|
struct wl_listener destroy_listener;
|
|
|
|
struct wl_listener pending_destroy_listener;
|
|
|
|
|
|
|
|
uint32_t possible_crtcs;
|
|
|
|
uint32_t plane_id;
|
|
|
|
uint32_t count_formats;
|
|
|
|
|
|
|
|
int32_t src_x, src_y;
|
|
|
|
uint32_t src_w, src_h;
|
|
|
|
uint32_t dest_x, dest_y;
|
|
|
|
uint32_t dest_w, dest_h;
|
|
|
|
|
|
|
|
uint32_t formats[];
|
|
|
|
};
|
|
|
|
|
|
|
|
static int
|
|
|
|
surface_is_primary(struct weston_compositor *ec, struct weston_surface *es)
|
|
|
|
{
|
|
|
|
struct weston_surface *primary;
|
|
|
|
|
|
|
|
primary = container_of(ec->surface_list.next, struct weston_surface,
|
|
|
|
link);
|
|
|
|
if (es == primary)
|
|
|
|
return -1;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
drm_sprite_crtc_supported(struct weston_output *output_base, uint32_t supported)
|
|
|
|
{
|
|
|
|
struct weston_compositor *ec = output_base->compositor;
|
|
|
|
struct drm_compositor *c =(struct drm_compositor *) ec;
|
|
|
|
struct drm_output *output = (struct drm_output *) output_base;
|
|
|
|
int crtc;
|
|
|
|
|
|
|
|
for (crtc = 0; crtc < c->num_crtcs; crtc++) {
|
|
|
|
if (c->crtcs[crtc] != output->crtc_id)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (supported & (1 << crtc))
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-05-02 17:42:21 +04:00
|
|
|
static void
|
|
|
|
drm_fb_destroy_callback(struct gbm_bo *bo, void *data)
|
|
|
|
{
|
|
|
|
struct drm_fb *fb = data;
|
|
|
|
struct gbm_device *gbm = gbm_bo_get_device(bo);
|
|
|
|
|
|
|
|
if (fb->fb_id)
|
|
|
|
drmModeRmFB(gbm_device_get_fd(gbm), fb->fb_id);
|
|
|
|
|
|
|
|
if (fb->buffer) {
|
|
|
|
weston_buffer_post_release(fb->buffer);
|
|
|
|
wl_list_remove(&fb->buffer_destroy_listener.link);
|
|
|
|
}
|
|
|
|
|
|
|
|
free(data);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct drm_fb *
|
|
|
|
drm_fb_get_from_bo(struct gbm_bo *bo, struct drm_output *output)
|
|
|
|
{
|
|
|
|
struct drm_fb *fb = gbm_bo_get_user_data(bo);
|
|
|
|
struct drm_compositor *compositor =
|
|
|
|
(struct drm_compositor *) output->base.compositor;
|
|
|
|
uint32_t width, height, stride, handle;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
if (fb)
|
|
|
|
return fb;
|
|
|
|
|
|
|
|
fb = malloc(sizeof *fb);
|
|
|
|
|
|
|
|
fb->bo = bo;
|
|
|
|
fb->output = output;
|
|
|
|
fb->is_client_buffer = 0;
|
|
|
|
fb->buffer = NULL;
|
|
|
|
|
|
|
|
width = gbm_bo_get_width(bo);
|
|
|
|
height = gbm_bo_get_height(bo);
|
|
|
|
stride = gbm_bo_get_pitch(bo);
|
|
|
|
handle = gbm_bo_get_handle(bo).u32;
|
|
|
|
|
|
|
|
ret = drmModeAddFB(compositor->drm.fd, width, height, 24, 32,
|
|
|
|
stride, handle, &fb->fb_id);
|
|
|
|
if (ret) {
|
2012-06-07 20:01:59 +04:00
|
|
|
weston_log("failed to create kms fb: %m\n");
|
2012-05-02 17:42:21 +04:00
|
|
|
free(fb);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
gbm_bo_set_user_data(bo, fb, drm_fb_destroy_callback);
|
|
|
|
|
|
|
|
return fb;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
fb_handle_buffer_destroy(struct wl_listener *listener, void *data)
|
|
|
|
{
|
|
|
|
struct drm_fb *fb = container_of(listener, struct drm_fb,
|
|
|
|
buffer_destroy_listener);
|
|
|
|
|
|
|
|
fb->buffer = NULL;
|
|
|
|
|
|
|
|
if (fb == fb->output->next ||
|
|
|
|
(fb == fb->output->current && !fb->output->next))
|
2012-06-20 08:35:59 +04:00
|
|
|
weston_output_schedule_repaint(&fb->output->base);
|
2012-05-02 17:42:21 +04:00
|
|
|
}
|
|
|
|
|
2012-01-26 08:59:42 +04:00
|
|
|
static int
|
|
|
|
drm_output_prepare_scanout_surface(struct drm_output *output)
|
|
|
|
{
|
|
|
|
struct drm_compositor *c =
|
|
|
|
(struct drm_compositor *) output->base.compositor;
|
|
|
|
struct weston_surface *es;
|
2012-05-02 17:42:21 +04:00
|
|
|
struct gbm_bo *bo;
|
2012-01-26 08:59:42 +04:00
|
|
|
|
|
|
|
es = container_of(c->base.surface_list.next,
|
|
|
|
struct weston_surface, link);
|
|
|
|
|
2012-02-17 19:45:16 +04:00
|
|
|
if (es->geometry.x != output->base.x ||
|
2012-01-25 18:22:05 +04:00
|
|
|
es->geometry.y != output->base.y ||
|
2012-01-25 17:55:43 +04:00
|
|
|
es->geometry.width != output->base.current->width ||
|
|
|
|
es->geometry.height != output->base.current->height ||
|
2012-01-25 16:33:33 +04:00
|
|
|
es->transform.enabled ||
|
2012-01-26 08:59:42 +04:00
|
|
|
es->image == EGL_NO_IMAGE_KHR)
|
|
|
|
return -1;
|
|
|
|
|
2012-05-02 17:42:21 +04:00
|
|
|
bo = gbm_bo_create_from_egl_image(c->gbm,
|
2012-06-18 23:13:51 +04:00
|
|
|
c->base.egl_display,
|
|
|
|
es->image,
|
2012-05-02 17:42:21 +04:00
|
|
|
es->geometry.width,
|
|
|
|
es->geometry.height,
|
|
|
|
GBM_BO_USE_SCANOUT);
|
|
|
|
|
2012-05-02 17:42:22 +04:00
|
|
|
/* Need to verify output->region contained in surface opaque
|
|
|
|
* region. Or maybe just that format doesn't have alpha.
|
|
|
|
* For now, scanout only if format is XRGB8888. */
|
|
|
|
if (gbm_bo_get_format(bo) != GBM_FORMAT_XRGB8888) {
|
|
|
|
gbm_bo_destroy(bo);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2012-05-02 17:42:21 +04:00
|
|
|
output->next = drm_fb_get_from_bo(bo, output);
|
|
|
|
if (!output->next) {
|
|
|
|
gbm_bo_destroy(bo);
|
|
|
|
return -1;
|
|
|
|
}
|
2012-01-26 08:59:42 +04:00
|
|
|
|
2012-05-02 17:42:21 +04:00
|
|
|
output->next->is_client_buffer = 1;
|
|
|
|
output->next->buffer = es->buffer;
|
|
|
|
output->next->buffer->busy_count++;
|
|
|
|
output->next->buffer_destroy_listener.notify = fb_handle_buffer_destroy;
|
2012-01-26 08:59:42 +04:00
|
|
|
|
2012-05-02 17:42:21 +04:00
|
|
|
wl_signal_add(&output->next->buffer->resource.destroy_signal,
|
|
|
|
&output->next->buffer_destroy_listener);
|
2012-01-26 08:59:42 +04:00
|
|
|
|
|
|
|
pixman_region32_fini(&es->damage);
|
|
|
|
pixman_region32_init(&es->damage);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-03-12 02:27:41 +04:00
|
|
|
static void
|
|
|
|
drm_output_render(struct drm_output *output, pixman_region32_t *damage)
|
|
|
|
{
|
|
|
|
struct drm_compositor *compositor =
|
|
|
|
(struct drm_compositor *) output->base.compositor;
|
|
|
|
struct weston_surface *surface;
|
2012-05-02 17:42:21 +04:00
|
|
|
struct gbm_bo *bo;
|
2012-03-12 02:27:41 +04:00
|
|
|
|
2012-06-18 23:13:51 +04:00
|
|
|
if (!eglMakeCurrent(compositor->base.egl_display, output->egl_surface,
|
|
|
|
output->egl_surface,
|
|
|
|
compositor->base.egl_context)) {
|
2012-06-07 20:01:59 +04:00
|
|
|
weston_log("failed to make current\n");
|
2012-03-12 02:27:41 +04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
wl_list_for_each_reverse(surface, &compositor->base.surface_list, link)
|
|
|
|
weston_surface_draw(surface, &output->base, damage);
|
|
|
|
|
2012-06-20 08:13:18 +04:00
|
|
|
wl_signal_emit(&output->base.frame_signal, output);
|
2012-04-20 23:37:33 +04:00
|
|
|
|
2012-06-18 23:13:51 +04:00
|
|
|
eglSwapBuffers(compositor->base.egl_display, output->egl_surface);
|
2012-05-02 17:42:21 +04:00
|
|
|
bo = gbm_surface_lock_front_buffer(output->surface);
|
|
|
|
if (!bo) {
|
2012-06-07 20:01:59 +04:00
|
|
|
weston_log("failed to lock front buffer: %m\n");
|
2012-03-12 02:27:41 +04:00
|
|
|
return;
|
|
|
|
}
|
2012-05-02 17:42:21 +04:00
|
|
|
|
|
|
|
output->next = drm_fb_get_from_bo(bo, output);
|
|
|
|
if (!output->next) {
|
2012-06-07 20:01:59 +04:00
|
|
|
weston_log("failed to get drm_fb for bo\n");
|
2012-05-02 17:42:21 +04:00
|
|
|
gbm_surface_release_buffer(output->surface, bo);
|
|
|
|
return;
|
|
|
|
}
|
2012-03-12 02:27:41 +04:00
|
|
|
}
|
|
|
|
|
2012-01-26 08:47:45 +04:00
|
|
|
static void
|
2012-02-29 07:31:58 +04:00
|
|
|
drm_output_repaint(struct weston_output *output_base,
|
|
|
|
pixman_region32_t *damage)
|
2011-03-11 18:39:20 +03:00
|
|
|
{
|
|
|
|
struct drm_output *output = (struct drm_output *) output_base;
|
2012-01-26 08:47:45 +04:00
|
|
|
struct drm_compositor *compositor =
|
|
|
|
(struct drm_compositor *) output->base.compositor;
|
2012-02-23 18:45:49 +04:00
|
|
|
struct drm_sprite *s;
|
2012-03-12 02:27:41 +04:00
|
|
|
struct drm_mode *mode;
|
2012-02-23 18:45:49 +04:00
|
|
|
int ret = 0;
|
2011-03-11 18:39:20 +03:00
|
|
|
|
2012-01-26 08:59:42 +04:00
|
|
|
drm_output_prepare_scanout_surface(output);
|
2012-05-02 17:42:21 +04:00
|
|
|
if (!output->next)
|
2012-03-12 02:27:41 +04:00
|
|
|
drm_output_render(output, damage);
|
2012-05-02 17:42:21 +04:00
|
|
|
if (!output->next)
|
2012-03-12 02:27:41 +04:00
|
|
|
return;
|
2010-06-14 19:54:00 +04:00
|
|
|
|
2012-03-12 02:27:41 +04:00
|
|
|
mode = container_of(output->base.current, struct drm_mode, base);
|
2012-05-02 17:42:21 +04:00
|
|
|
if (!output->current) {
|
2012-03-12 02:27:41 +04:00
|
|
|
ret = drmModeSetCrtc(compositor->drm.fd, output->crtc_id,
|
2012-05-02 17:42:21 +04:00
|
|
|
output->next->fb_id, 0, 0,
|
2012-03-12 02:27:41 +04:00
|
|
|
&output->connector_id, 1,
|
|
|
|
&mode->mode_info);
|
|
|
|
if (ret) {
|
2012-06-07 20:01:59 +04:00
|
|
|
weston_log("set mode failed: %m\n");
|
2012-03-12 02:27:41 +04:00
|
|
|
return;
|
|
|
|
}
|
2011-04-10 18:49:52 +04:00
|
|
|
}
|
|
|
|
|
2012-01-26 08:47:45 +04:00
|
|
|
if (drmModePageFlip(compositor->drm.fd, output->crtc_id,
|
2012-05-02 17:42:21 +04:00
|
|
|
output->next->fb_id,
|
2012-01-18 20:47:41 +04:00
|
|
|
DRM_MODE_PAGE_FLIP_EVENT, output) < 0) {
|
2012-06-07 20:01:59 +04:00
|
|
|
weston_log("queueing pageflip failed: %m\n");
|
2012-01-26 08:47:45 +04:00
|
|
|
return;
|
2012-01-18 20:47:41 +04:00
|
|
|
}
|
2011-03-11 18:39:20 +03:00
|
|
|
|
2012-02-23 18:45:49 +04:00
|
|
|
/*
|
|
|
|
* Now, update all the sprite surfaces
|
|
|
|
*/
|
|
|
|
wl_list_for_each(s, &compositor->sprite_list, link) {
|
|
|
|
uint32_t flags = 0;
|
|
|
|
drmVBlank vbl = {
|
|
|
|
.request.type = DRM_VBLANK_RELATIVE | DRM_VBLANK_EVENT,
|
|
|
|
.request.sequence = 1,
|
|
|
|
};
|
|
|
|
|
|
|
|
if (!drm_sprite_crtc_supported(output_base, s->possible_crtcs))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
ret = drmModeSetPlane(compositor->drm.fd, s->plane_id,
|
|
|
|
output->crtc_id, s->pending_fb_id, flags,
|
|
|
|
s->dest_x, s->dest_y,
|
|
|
|
s->dest_w, s->dest_h,
|
|
|
|
s->src_x, s->src_y,
|
|
|
|
s->src_w, s->src_h);
|
|
|
|
if (ret)
|
2012-06-07 20:01:59 +04:00
|
|
|
weston_log("setplane failed: %d: %s\n",
|
2012-02-23 18:45:49 +04:00
|
|
|
ret, strerror(errno));
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Queue a vblank signal so we know when the surface
|
|
|
|
* becomes active on the display or has been replaced.
|
|
|
|
*/
|
|
|
|
vbl.request.signal = (unsigned long)s;
|
|
|
|
ret = drmWaitVBlank(compositor->drm.fd, &vbl);
|
|
|
|
if (ret) {
|
2012-06-07 20:01:59 +04:00
|
|
|
weston_log("vblank event request failed: %d: %s\n",
|
2012-02-23 18:45:49 +04:00
|
|
|
ret, strerror(errno));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-01-26 08:47:45 +04:00
|
|
|
return;
|
2010-06-11 20:56:24 +04:00
|
|
|
}
|
|
|
|
|
2012-02-23 18:45:49 +04:00
|
|
|
static void
|
|
|
|
vblank_handler(int fd, unsigned int frame, unsigned int sec, unsigned int usec,
|
|
|
|
void *data)
|
|
|
|
{
|
|
|
|
struct drm_sprite *s = (struct drm_sprite *)data;
|
|
|
|
struct drm_compositor *c = s->compositor;
|
|
|
|
|
|
|
|
if (s->surface) {
|
|
|
|
weston_buffer_post_release(s->surface->buffer);
|
|
|
|
wl_list_remove(&s->destroy_listener.link);
|
|
|
|
s->surface = NULL;
|
|
|
|
drmModeRmFB(c->drm.fd, s->fb_id);
|
|
|
|
s->fb_id = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (s->pending_surface) {
|
|
|
|
wl_list_remove(&s->pending_destroy_listener.link);
|
2012-04-12 07:18:23 +04:00
|
|
|
wl_signal_add(&s->pending_surface->buffer->resource.destroy_signal,
|
|
|
|
&s->destroy_listener);
|
2012-02-23 18:45:49 +04:00
|
|
|
s->surface = s->pending_surface;
|
|
|
|
s->pending_surface = NULL;
|
|
|
|
s->fb_id = s->pending_fb_id;
|
|
|
|
s->pending_fb_id = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-06-11 20:56:24 +04:00
|
|
|
static void
|
|
|
|
page_flip_handler(int fd, unsigned int frame,
|
|
|
|
unsigned int sec, unsigned int usec, void *data)
|
|
|
|
{
|
2011-04-10 18:49:52 +04:00
|
|
|
struct drm_output *output = (struct drm_output *) data;
|
2010-06-11 20:56:24 +04:00
|
|
|
uint32_t msecs;
|
|
|
|
|
2012-05-02 17:42:21 +04:00
|
|
|
if (output->current) {
|
|
|
|
if (output->current->is_client_buffer)
|
|
|
|
gbm_bo_destroy(output->current->bo);
|
|
|
|
else
|
|
|
|
gbm_surface_release_buffer(output->surface,
|
|
|
|
output->current->bo);
|
2011-04-10 18:49:52 +04:00
|
|
|
}
|
|
|
|
|
2012-05-02 17:42:21 +04:00
|
|
|
output->current = output->next;
|
|
|
|
output->next = NULL;
|
2012-03-12 02:27:41 +04:00
|
|
|
|
2011-03-14 14:07:26 +03:00
|
|
|
msecs = sec * 1000 + usec / 1000;
|
Rename wayland-compositor to weston
This rename addresses a few problems around the split between core
Wayland and the wayland-demos repository.
1) Initially, we had one big repository with protocol code, sample
compositor and sample clients. We split that repository to make it
possible to implement the protocol without pulling in the sample/demo
code. At this point, the compositor is more than just a "demo" and
wayland-demos doesn't send the right message. The sample compositor
is a useful, self-contained project in it's own right, and we want to
move away from the "demos" label.
2) Another problem is that the wayland-demos compositor is often
called "the wayland compsitor", but it's really just one possible
compositor. Existing X11 compositors are expected to add Wayland
support and then gradually phase out/modularize the X11 support, for
example. Conversely, it's hard to talk about the wayland-demos
compositor specifically as opposed to, eg, the wayland protocol or a
wayland compositor in general.
We are also renaming the repo to weston, and the compositor
subdirectory to src/, to emphasize that the main "output" is the
compositor.
2012-01-03 19:29:47 +04:00
|
|
|
weston_output_finish_frame(&output->base, msecs);
|
2011-04-10 18:49:52 +04:00
|
|
|
}
|
|
|
|
|
2012-02-23 18:45:49 +04:00
|
|
|
static int
|
|
|
|
drm_surface_format_supported(struct drm_sprite *s, uint32_t format)
|
|
|
|
{
|
2012-03-30 19:52:39 +04:00
|
|
|
uint32_t i;
|
2012-02-23 18:45:49 +04:00
|
|
|
|
|
|
|
for (i = 0; i < s->count_formats; i++)
|
|
|
|
if (s->formats[i] == format)
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
drm_surface_transform_supported(struct weston_surface *es)
|
|
|
|
{
|
|
|
|
if (es->transform.enabled)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
drm_surface_overlap_supported(struct weston_output *output_base,
|
|
|
|
pixman_region32_t *overlap)
|
|
|
|
{
|
|
|
|
/* We could potentially use a color key here if the surface left
|
|
|
|
* to display has rectangular regions
|
|
|
|
*/
|
|
|
|
if (pixman_region32_not_empty(overlap))
|
|
|
|
return 0;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
drm_disable_unused_sprites(struct weston_output *output_base)
|
|
|
|
{
|
|
|
|
struct weston_compositor *ec = output_base->compositor;
|
|
|
|
struct drm_compositor *c =(struct drm_compositor *) ec;
|
|
|
|
struct drm_output *output = (struct drm_output *) output_base;
|
|
|
|
struct drm_sprite *s;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
wl_list_for_each(s, &c->sprite_list, link) {
|
|
|
|
if (s->pending_fb_id)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
ret = drmModeSetPlane(c->drm.fd, s->plane_id,
|
|
|
|
output->crtc_id, 0, 0,
|
|
|
|
0, 0, 0, 0, 0, 0, 0, 0);
|
|
|
|
if (ret)
|
2012-06-07 20:01:59 +04:00
|
|
|
weston_log("failed to disable plane: %d: %s\n",
|
2012-02-23 18:45:49 +04:00
|
|
|
ret, strerror(errno));
|
|
|
|
drmModeRmFB(c->drm.fd, s->fb_id);
|
|
|
|
s->surface = NULL;
|
|
|
|
s->pending_surface = NULL;
|
|
|
|
s->fb_id = 0;
|
|
|
|
s->pending_fb_id = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This function must take care to damage any previously assigned surface
|
|
|
|
* if the sprite ends up binding to a different surface than in the
|
|
|
|
* previous frame.
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
drm_output_prepare_overlay_surface(struct weston_output *output_base,
|
|
|
|
struct weston_surface *es,
|
|
|
|
pixman_region32_t *overlap)
|
|
|
|
{
|
|
|
|
struct weston_compositor *ec = output_base->compositor;
|
|
|
|
struct drm_compositor *c =(struct drm_compositor *) ec;
|
|
|
|
struct drm_sprite *s;
|
|
|
|
int found = 0;
|
|
|
|
EGLint handle, stride;
|
|
|
|
struct gbm_bo *bo;
|
|
|
|
uint32_t fb_id = 0;
|
|
|
|
uint32_t handles[4], pitches[4], offsets[4];
|
|
|
|
int ret = 0;
|
|
|
|
pixman_region32_t dest_rect, src_rect;
|
|
|
|
pixman_box32_t *box;
|
|
|
|
uint32_t format;
|
|
|
|
|
2012-03-06 04:57:35 +04:00
|
|
|
if (c->sprites_are_broken)
|
|
|
|
return -1;
|
|
|
|
|
2012-02-23 18:45:49 +04:00
|
|
|
if (surface_is_primary(ec, es))
|
|
|
|
return -1;
|
|
|
|
|
2012-03-26 19:48:55 +04:00
|
|
|
if (es->image == EGL_NO_IMAGE_KHR)
|
2012-02-23 18:45:49 +04:00
|
|
|
return -1;
|
|
|
|
|
|
|
|
if (!drm_surface_transform_supported(es))
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
if (!drm_surface_overlap_supported(output_base, overlap))
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
wl_list_for_each(s, &c->sprite_list, link) {
|
|
|
|
if (!drm_sprite_crtc_supported(output_base, s->possible_crtcs))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (!s->pending_fb_id) {
|
|
|
|
found = 1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* No sprites available */
|
|
|
|
if (!found)
|
|
|
|
return -1;
|
|
|
|
|
2012-06-18 23:13:51 +04:00
|
|
|
bo = gbm_bo_create_from_egl_image(c->gbm, c->base.egl_display,
|
|
|
|
es->image, es->geometry.width,
|
|
|
|
es->geometry.height,
|
2012-02-23 18:45:49 +04:00
|
|
|
GBM_BO_USE_SCANOUT);
|
|
|
|
format = gbm_bo_get_format(bo);
|
|
|
|
handle = gbm_bo_get_handle(bo).s32;
|
|
|
|
stride = gbm_bo_get_pitch(bo);
|
|
|
|
|
|
|
|
gbm_bo_destroy(bo);
|
|
|
|
|
|
|
|
if (!drm_surface_format_supported(s, format))
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
if (!handle)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
handles[0] = handle;
|
|
|
|
pitches[0] = stride;
|
|
|
|
offsets[0] = 0;
|
|
|
|
|
|
|
|
ret = drmModeAddFB2(c->drm.fd, es->geometry.width, es->geometry.height,
|
|
|
|
format, handles, pitches, offsets,
|
|
|
|
&fb_id, 0);
|
|
|
|
if (ret) {
|
2012-06-07 20:01:59 +04:00
|
|
|
weston_log("addfb2 failed: %d\n", ret);
|
2012-03-06 04:57:35 +04:00
|
|
|
c->sprites_are_broken = 1;
|
2012-02-23 18:45:49 +04:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (s->surface && s->surface != es) {
|
|
|
|
struct weston_surface *old_surf = s->surface;
|
|
|
|
pixman_region32_fini(&old_surf->damage);
|
|
|
|
pixman_region32_init_rect(&old_surf->damage,
|
|
|
|
old_surf->geometry.x, old_surf->geometry.y,
|
|
|
|
old_surf->geometry.width, old_surf->geometry.height);
|
|
|
|
}
|
|
|
|
|
|
|
|
s->pending_fb_id = fb_id;
|
|
|
|
s->pending_surface = es;
|
|
|
|
es->buffer->busy_count++;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Calculate the source & dest rects properly based on actual
|
|
|
|
* postion (note the caller has called weston_surface_update_transform()
|
|
|
|
* for us already).
|
|
|
|
*/
|
|
|
|
pixman_region32_init(&dest_rect);
|
|
|
|
pixman_region32_intersect(&dest_rect, &es->transform.boundingbox,
|
|
|
|
&output_base->region);
|
|
|
|
pixman_region32_translate(&dest_rect, -output_base->x, -output_base->y);
|
|
|
|
box = pixman_region32_extents(&dest_rect);
|
|
|
|
s->dest_x = box->x1;
|
|
|
|
s->dest_y = box->y1;
|
|
|
|
s->dest_w = box->x2 - box->x1;
|
|
|
|
s->dest_h = box->y2 - box->y1;
|
|
|
|
pixman_region32_fini(&dest_rect);
|
|
|
|
|
|
|
|
pixman_region32_init(&src_rect);
|
|
|
|
pixman_region32_intersect(&src_rect, &es->transform.boundingbox,
|
|
|
|
&output_base->region);
|
|
|
|
pixman_region32_translate(&src_rect, -es->geometry.x, -es->geometry.y);
|
|
|
|
box = pixman_region32_extents(&src_rect);
|
2012-03-12 04:48:43 +04:00
|
|
|
s->src_x = box->x1 << 16;
|
|
|
|
s->src_y = box->y1 << 16;
|
|
|
|
s->src_w = (box->x2 - box->x1) << 16;
|
|
|
|
s->src_h = (box->y2 - box->y1) << 16;
|
2012-02-23 18:45:49 +04:00
|
|
|
pixman_region32_fini(&src_rect);
|
|
|
|
|
2012-04-12 07:18:23 +04:00
|
|
|
wl_signal_add(&es->buffer->resource.destroy_signal,
|
|
|
|
&s->pending_destroy_listener);
|
2012-02-23 18:45:49 +04:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-02-24 08:03:14 +04:00
|
|
|
static int
|
|
|
|
drm_output_set_cursor(struct weston_output *output_base,
|
2012-05-16 21:45:18 +04:00
|
|
|
struct weston_seat *es);
|
2012-02-24 08:03:14 +04:00
|
|
|
|
|
|
|
static void
|
|
|
|
weston_output_set_cursor(struct weston_output *output,
|
2012-05-16 21:45:18 +04:00
|
|
|
struct weston_seat *seat,
|
2012-02-24 08:03:14 +04:00
|
|
|
pixman_region32_t *overlap)
|
|
|
|
{
|
|
|
|
pixman_region32_t cursor_region;
|
|
|
|
|
2012-05-16 21:45:18 +04:00
|
|
|
if (seat->sprite == NULL)
|
2012-02-24 08:03:14 +04:00
|
|
|
return;
|
|
|
|
|
|
|
|
pixman_region32_init(&cursor_region);
|
|
|
|
pixman_region32_intersect(&cursor_region,
|
2012-05-16 21:45:18 +04:00
|
|
|
&seat->sprite->transform.boundingbox,
|
2012-02-24 08:03:14 +04:00
|
|
|
&output->region);
|
|
|
|
|
|
|
|
if (!pixman_region32_not_empty(&cursor_region)) {
|
|
|
|
drm_output_set_cursor(output, NULL);
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (pixman_region32_not_empty(overlap) ||
|
2012-05-16 21:45:18 +04:00
|
|
|
drm_output_set_cursor(output, seat) < 0) {
|
2012-06-19 06:37:35 +04:00
|
|
|
if (seat->sprite->plane == WESTON_PLANE_DRM_CURSOR) {
|
2012-05-16 21:45:18 +04:00
|
|
|
weston_surface_damage(seat->sprite);
|
2012-02-24 08:03:14 +04:00
|
|
|
drm_output_set_cursor(output, NULL);
|
|
|
|
}
|
2012-06-19 06:37:35 +04:00
|
|
|
seat->sprite->plane = WESTON_PLANE_PRIMARY;
|
2012-02-24 08:03:14 +04:00
|
|
|
} else {
|
2012-06-19 06:37:35 +04:00
|
|
|
if (seat->sprite->plane == WESTON_PLANE_PRIMARY)
|
2012-05-16 21:45:18 +04:00
|
|
|
weston_surface_damage_below(seat->sprite);
|
|
|
|
wl_list_remove(&seat->sprite->link);
|
2012-06-19 06:37:35 +04:00
|
|
|
seat->sprite->plane = WESTON_PLANE_DRM_CURSOR;
|
2012-02-24 08:03:14 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
out:
|
|
|
|
pixman_region32_fini(&cursor_region);
|
|
|
|
}
|
|
|
|
|
2012-02-23 18:45:49 +04:00
|
|
|
static void
|
|
|
|
drm_assign_planes(struct weston_output *output)
|
|
|
|
{
|
|
|
|
struct weston_compositor *ec = output->compositor;
|
2012-05-03 19:39:35 +04:00
|
|
|
struct weston_surface *es, *next;
|
2012-02-23 18:45:49 +04:00
|
|
|
pixman_region32_t overlap, surface_overlap;
|
2012-05-16 21:45:18 +04:00
|
|
|
struct weston_seat *seat;
|
2012-02-23 18:45:49 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Find a surface for each sprite in the output using some heuristics:
|
|
|
|
* 1) size
|
|
|
|
* 2) frequency of update
|
|
|
|
* 3) opacity (though some hw might support alpha blending)
|
|
|
|
* 4) clipping (this can be fixed with color keys)
|
|
|
|
*
|
|
|
|
* The idea is to save on blitting since this should save power.
|
|
|
|
* If we can get a large video surface on the sprite for example,
|
|
|
|
* the main display surface may not need to update at all, and
|
|
|
|
* the client buffer can be used directly for the sprite surface
|
|
|
|
* as we do for flipping full screen surfaces.
|
|
|
|
*/
|
2012-06-21 07:03:53 +04:00
|
|
|
seat = (struct weston_seat *) ec->seat;
|
2012-02-23 18:45:49 +04:00
|
|
|
pixman_region32_init(&overlap);
|
2012-05-03 19:39:35 +04:00
|
|
|
wl_list_for_each_safe(es, next, &ec->surface_list, link) {
|
2012-02-23 18:45:49 +04:00
|
|
|
/*
|
|
|
|
* FIXME: try to assign hw cursors here too, they're just
|
|
|
|
* special overlays
|
|
|
|
*/
|
|
|
|
pixman_region32_init(&surface_overlap);
|
|
|
|
pixman_region32_intersect(&surface_overlap, &overlap,
|
|
|
|
&es->transform.boundingbox);
|
|
|
|
|
2012-05-16 21:45:18 +04:00
|
|
|
if (es == seat->sprite) {
|
|
|
|
weston_output_set_cursor(output, seat,
|
2012-02-24 08:03:14 +04:00
|
|
|
&surface_overlap);
|
|
|
|
|
2012-06-19 06:37:35 +04:00
|
|
|
if (seat->sprite->plane == WESTON_PLANE_PRIMARY)
|
2012-02-24 08:03:14 +04:00
|
|
|
pixman_region32_union(&overlap, &overlap,
|
|
|
|
&es->transform.boundingbox);
|
|
|
|
} else if (!drm_output_prepare_overlay_surface(output, es,
|
|
|
|
&surface_overlap)) {
|
2012-02-23 18:45:49 +04:00
|
|
|
pixman_region32_fini(&es->damage);
|
|
|
|
pixman_region32_init(&es->damage);
|
|
|
|
} else {
|
|
|
|
pixman_region32_union(&overlap, &overlap,
|
|
|
|
&es->transform.boundingbox);
|
|
|
|
}
|
|
|
|
pixman_region32_fini(&surface_overlap);
|
|
|
|
}
|
|
|
|
pixman_region32_fini(&overlap);
|
|
|
|
|
2012-06-21 07:03:53 +04:00
|
|
|
if (!seat->sprite || !weston_surface_is_mapped(seat->sprite))
|
|
|
|
drm_output_set_cursor(output, NULL);
|
|
|
|
|
2012-02-23 18:45:49 +04:00
|
|
|
drm_disable_unused_sprites(output);
|
|
|
|
}
|
|
|
|
|
2011-04-20 13:02:58 +04:00
|
|
|
static int
|
Rename wayland-compositor to weston
This rename addresses a few problems around the split between core
Wayland and the wayland-demos repository.
1) Initially, we had one big repository with protocol code, sample
compositor and sample clients. We split that repository to make it
possible to implement the protocol without pulling in the sample/demo
code. At this point, the compositor is more than just a "demo" and
wayland-demos doesn't send the right message. The sample compositor
is a useful, self-contained project in it's own right, and we want to
move away from the "demos" label.
2) Another problem is that the wayland-demos compositor is often
called "the wayland compsitor", but it's really just one possible
compositor. Existing X11 compositors are expected to add Wayland
support and then gradually phase out/modularize the X11 support, for
example. Conversely, it's hard to talk about the wayland-demos
compositor specifically as opposed to, eg, the wayland protocol or a
wayland compositor in general.
We are also renaming the repo to weston, and the compositor
subdirectory to src/, to emphasize that the main "output" is the
compositor.
2012-01-03 19:29:47 +04:00
|
|
|
drm_output_set_cursor(struct weston_output *output_base,
|
2012-05-16 21:45:18 +04:00
|
|
|
struct weston_seat *es)
|
2011-04-20 13:02:58 +04:00
|
|
|
{
|
|
|
|
struct drm_output *output = (struct drm_output *) output_base;
|
|
|
|
struct drm_compositor *c =
|
|
|
|
(struct drm_compositor *) output->base.compositor;
|
|
|
|
EGLint handle, stride;
|
|
|
|
int ret = -1;
|
2011-04-30 11:32:11 +04:00
|
|
|
struct gbm_bo *bo;
|
2012-05-03 19:39:35 +04:00
|
|
|
uint32_t buf[64 * 64];
|
|
|
|
unsigned char *d, *s, *end;
|
2011-04-20 13:02:58 +04:00
|
|
|
|
2012-05-16 21:45:18 +04:00
|
|
|
if (es == NULL) {
|
2011-05-06 22:04:21 +04:00
|
|
|
drmModeSetCursor(c->drm.fd, output->crtc_id, 0, 0, 0);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-05-16 21:45:18 +04:00
|
|
|
if (es->sprite->buffer == NULL ||
|
|
|
|
!wl_buffer_is_shm(es->sprite->buffer))
|
2011-04-20 13:02:58 +04:00
|
|
|
goto out;
|
|
|
|
|
2012-05-16 21:45:18 +04:00
|
|
|
if (es->sprite->geometry.width > 64 ||
|
|
|
|
es->sprite->geometry.height > 64)
|
2011-04-20 13:02:58 +04:00
|
|
|
goto out;
|
2011-08-30 13:38:26 +04:00
|
|
|
|
2012-05-03 19:39:35 +04:00
|
|
|
output->current_cursor ^= 1;
|
|
|
|
bo = output->cursor_bo[output->current_cursor];
|
2012-01-19 00:11:07 +04:00
|
|
|
if (bo == NULL)
|
|
|
|
goto out;
|
2011-04-30 11:32:11 +04:00
|
|
|
|
2012-05-03 19:39:35 +04:00
|
|
|
memset(buf, 0, sizeof buf);
|
|
|
|
d = (unsigned char *) buf;
|
2012-05-16 21:45:18 +04:00
|
|
|
stride = wl_shm_buffer_get_stride(es->sprite->buffer);
|
|
|
|
s = wl_shm_buffer_get_data(es->sprite->buffer);
|
|
|
|
end = s + stride * es->sprite->geometry.height;
|
2012-05-03 19:39:35 +04:00
|
|
|
while (s < end) {
|
2012-05-16 21:45:18 +04:00
|
|
|
memcpy(d, s, es->sprite->geometry.width * 4);
|
2012-05-03 19:39:35 +04:00
|
|
|
s += stride;
|
|
|
|
d += 64 * 4;
|
|
|
|
}
|
2011-04-20 13:02:58 +04:00
|
|
|
|
2012-05-03 19:39:35 +04:00
|
|
|
if (gbm_bo_write(bo, buf, sizeof buf) < 0)
|
2011-04-20 13:02:58 +04:00
|
|
|
goto out;
|
|
|
|
|
2012-05-03 19:39:35 +04:00
|
|
|
handle = gbm_bo_get_handle(bo).s32;
|
2011-04-20 13:02:58 +04:00
|
|
|
ret = drmModeSetCursor(c->drm.fd, output->crtc_id, handle, 64, 64);
|
|
|
|
if (ret) {
|
2012-06-07 20:01:59 +04:00
|
|
|
weston_log("failed to set cursor: %s\n", strerror(-ret));
|
2011-04-20 13:02:58 +04:00
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = drmModeMoveCursor(c->drm.fd, output->crtc_id,
|
2012-05-16 21:45:18 +04:00
|
|
|
es->sprite->geometry.x - output->base.x,
|
|
|
|
es->sprite->geometry.y - output->base.y);
|
2011-04-20 13:02:58 +04:00
|
|
|
if (ret) {
|
2012-06-07 20:01:59 +04:00
|
|
|
weston_log("failed to move cursor: %s\n", strerror(-ret));
|
2011-04-20 13:02:58 +04:00
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
out:
|
|
|
|
if (ret)
|
|
|
|
drmModeSetCursor(c->drm.fd, output->crtc_id, 0, 0, 0);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2011-08-30 00:52:23 +04:00
|
|
|
static void
|
Rename wayland-compositor to weston
This rename addresses a few problems around the split between core
Wayland and the wayland-demos repository.
1) Initially, we had one big repository with protocol code, sample
compositor and sample clients. We split that repository to make it
possible to implement the protocol without pulling in the sample/demo
code. At this point, the compositor is more than just a "demo" and
wayland-demos doesn't send the right message. The sample compositor
is a useful, self-contained project in it's own right, and we want to
move away from the "demos" label.
2) Another problem is that the wayland-demos compositor is often
called "the wayland compsitor", but it's really just one possible
compositor. Existing X11 compositors are expected to add Wayland
support and then gradually phase out/modularize the X11 support, for
example. Conversely, it's hard to talk about the wayland-demos
compositor specifically as opposed to, eg, the wayland protocol or a
wayland compositor in general.
We are also renaming the repo to weston, and the compositor
subdirectory to src/, to emphasize that the main "output" is the
compositor.
2012-01-03 19:29:47 +04:00
|
|
|
drm_output_destroy(struct weston_output *output_base)
|
2011-08-30 00:52:23 +04:00
|
|
|
{
|
|
|
|
struct drm_output *output = (struct drm_output *) output_base;
|
|
|
|
struct drm_compositor *c =
|
2011-08-30 13:38:26 +04:00
|
|
|
(struct drm_compositor *) output->base.compositor;
|
2011-08-30 00:52:23 +04:00
|
|
|
drmModeCrtcPtr origcrtc = output->original_crtc;
|
|
|
|
|
2012-02-29 21:53:50 +04:00
|
|
|
if (output->backlight)
|
|
|
|
backlight_destroy(output->backlight);
|
|
|
|
|
2011-08-30 00:52:23 +04:00
|
|
|
/* Turn off hardware cursor */
|
2011-08-30 13:38:26 +04:00
|
|
|
drm_output_set_cursor(&output->base, NULL);
|
2011-08-30 00:52:23 +04:00
|
|
|
|
|
|
|
/* Restore original CRTC state */
|
|
|
|
drmModeSetCrtc(c->drm.fd, origcrtc->crtc_id, origcrtc->buffer_id,
|
2011-08-30 13:38:26 +04:00
|
|
|
origcrtc->x, origcrtc->y,
|
|
|
|
&output->connector_id, 1, &origcrtc->mode);
|
2011-08-30 00:52:23 +04:00
|
|
|
drmModeFreeCrtc(origcrtc);
|
|
|
|
|
2011-08-30 13:44:56 +04:00
|
|
|
c->crtc_allocator &= ~(1 << output->crtc_id);
|
|
|
|
c->connector_allocator &= ~(1 << output->connector_id);
|
|
|
|
|
2012-06-18 23:13:51 +04:00
|
|
|
eglDestroySurface(c->base.egl_display, output->egl_surface);
|
2012-03-12 02:27:41 +04:00
|
|
|
gbm_surface_destroy(output->surface);
|
|
|
|
|
Rename wayland-compositor to weston
This rename addresses a few problems around the split between core
Wayland and the wayland-demos repository.
1) Initially, we had one big repository with protocol code, sample
compositor and sample clients. We split that repository to make it
possible to implement the protocol without pulling in the sample/demo
code. At this point, the compositor is more than just a "demo" and
wayland-demos doesn't send the right message. The sample compositor
is a useful, self-contained project in it's own right, and we want to
move away from the "demos" label.
2) Another problem is that the wayland-demos compositor is often
called "the wayland compsitor", but it's really just one possible
compositor. Existing X11 compositors are expected to add Wayland
support and then gradually phase out/modularize the X11 support, for
example. Conversely, it's hard to talk about the wayland-demos
compositor specifically as opposed to, eg, the wayland protocol or a
wayland compositor in general.
We are also renaming the repo to weston, and the compositor
subdirectory to src/, to emphasize that the main "output" is the
compositor.
2012-01-03 19:29:47 +04:00
|
|
|
weston_output_destroy(&output->base);
|
2011-08-30 13:44:56 +04:00
|
|
|
wl_list_remove(&output->base.link);
|
|
|
|
|
2011-08-30 00:52:23 +04:00
|
|
|
free(output);
|
|
|
|
}
|
|
|
|
|
2012-04-17 13:20:48 +04:00
|
|
|
static struct drm_mode *
|
|
|
|
choose_mode (struct drm_output *output, struct weston_mode *target_mode)
|
|
|
|
{
|
|
|
|
struct drm_mode *tmp_mode = NULL, *mode;
|
|
|
|
|
|
|
|
if (output->base.current->width == target_mode->width &&
|
|
|
|
output->base.current->height == target_mode->height &&
|
|
|
|
(output->base.current->refresh == target_mode->refresh ||
|
|
|
|
target_mode->refresh == 0))
|
|
|
|
return (struct drm_mode *)output->base.current;
|
|
|
|
|
|
|
|
wl_list_for_each(mode, &output->base.mode_list, base.link) {
|
|
|
|
if (mode->mode_info.hdisplay == target_mode->width &&
|
|
|
|
mode->mode_info.vdisplay == target_mode->height) {
|
|
|
|
if (mode->mode_info.vrefresh == target_mode->refresh ||
|
|
|
|
target_mode->refresh == 0) {
|
|
|
|
return mode;
|
|
|
|
} else if (!tmp_mode)
|
|
|
|
tmp_mode = mode;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return tmp_mode;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
drm_output_switch_mode(struct weston_output *output_base, struct weston_mode *mode)
|
|
|
|
{
|
|
|
|
struct drm_output *output;
|
|
|
|
struct drm_mode *drm_mode;
|
|
|
|
int ret;
|
|
|
|
struct drm_compositor *ec;
|
|
|
|
struct gbm_surface *surface;
|
|
|
|
EGLSurface egl_surface;
|
|
|
|
|
|
|
|
if (output_base == NULL) {
|
2012-06-07 20:01:59 +04:00
|
|
|
weston_log("output is NULL.\n");
|
2012-04-17 13:20:48 +04:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (mode == NULL) {
|
2012-06-07 20:01:59 +04:00
|
|
|
weston_log("mode is NULL.\n");
|
2012-04-17 13:20:48 +04:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
ec = (struct drm_compositor *)output_base->compositor;
|
|
|
|
output = (struct drm_output *)output_base;
|
|
|
|
drm_mode = choose_mode (output, mode);
|
|
|
|
|
|
|
|
if (!drm_mode) {
|
2012-06-07 20:01:59 +04:00
|
|
|
weston_log("%s, invalid resolution:%dx%d\n", __func__, mode->width, mode->height);
|
2012-04-17 13:20:48 +04:00
|
|
|
return -1;
|
|
|
|
} else if (&drm_mode->base == output->base.current) {
|
|
|
|
return 0;
|
|
|
|
} else if (drm_mode->base.width == output->base.current->width &&
|
|
|
|
drm_mode->base.height == output->base.current->height) {
|
|
|
|
/* only change refresh value */
|
|
|
|
ret = drmModeSetCrtc(ec->drm.fd,
|
|
|
|
output->crtc_id,
|
2012-05-02 17:42:21 +04:00
|
|
|
output->current->fb_id, 0, 0,
|
2012-04-17 13:20:48 +04:00
|
|
|
&output->connector_id, 1, &drm_mode->mode_info);
|
|
|
|
|
|
|
|
if (ret) {
|
2012-06-07 20:01:59 +04:00
|
|
|
weston_log("failed to set mode (%dx%d) %u Hz\n",
|
2012-04-17 13:20:48 +04:00
|
|
|
drm_mode->base.width,
|
|
|
|
drm_mode->base.height,
|
2012-05-10 20:23:53 +04:00
|
|
|
drm_mode->base.refresh / 1000);
|
2012-04-17 13:20:48 +04:00
|
|
|
ret = -1;
|
|
|
|
} else {
|
|
|
|
output->base.current->flags = 0;
|
|
|
|
output->base.current = &drm_mode->base;
|
|
|
|
drm_mode->base.flags =
|
|
|
|
WL_OUTPUT_MODE_CURRENT | WL_OUTPUT_MODE_PREFERRED;
|
|
|
|
ret = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
drm_mode->base.flags =
|
|
|
|
WL_OUTPUT_MODE_CURRENT | WL_OUTPUT_MODE_PREFERRED;
|
|
|
|
|
|
|
|
surface = gbm_surface_create(ec->gbm,
|
|
|
|
drm_mode->base.width,
|
|
|
|
drm_mode->base.height,
|
|
|
|
GBM_FORMAT_XRGB8888,
|
|
|
|
GBM_BO_USE_SCANOUT |
|
|
|
|
GBM_BO_USE_RENDERING);
|
|
|
|
if (!surface) {
|
2012-06-07 20:01:59 +04:00
|
|
|
weston_log("failed to create gbm surface\n");
|
2012-04-17 13:20:48 +04:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
egl_surface =
|
2012-06-18 23:13:51 +04:00
|
|
|
eglCreateWindowSurface(ec->base.egl_display,
|
|
|
|
ec->base.egl_config,
|
2012-04-17 13:20:48 +04:00
|
|
|
surface, NULL);
|
|
|
|
|
|
|
|
if (egl_surface == EGL_NO_SURFACE) {
|
2012-06-07 20:01:59 +04:00
|
|
|
weston_log("failed to create egl surface\n");
|
2012-04-17 13:20:48 +04:00
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = drmModeSetCrtc(ec->drm.fd,
|
|
|
|
output->crtc_id,
|
2012-05-02 17:42:21 +04:00
|
|
|
output->current->fb_id, 0, 0,
|
2012-04-17 13:20:48 +04:00
|
|
|
&output->connector_id, 1, &drm_mode->mode_info);
|
|
|
|
if (ret) {
|
2012-06-07 20:01:59 +04:00
|
|
|
weston_log("failed to set mode\n");
|
2012-04-17 13:20:48 +04:00
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* reset rendering stuff. */
|
2012-05-02 17:42:21 +04:00
|
|
|
if (output->current) {
|
|
|
|
if (output->current->is_client_buffer)
|
|
|
|
gbm_bo_destroy(output->current->bo);
|
|
|
|
else
|
|
|
|
gbm_surface_release_buffer(output->surface,
|
|
|
|
output->current->bo);
|
|
|
|
}
|
|
|
|
output->current = NULL;
|
|
|
|
|
|
|
|
if (output->next) {
|
|
|
|
if (output->next->is_client_buffer)
|
|
|
|
gbm_bo_destroy(output->next->bo);
|
|
|
|
else
|
|
|
|
gbm_surface_release_buffer(output->surface,
|
|
|
|
output->next->bo);
|
|
|
|
}
|
|
|
|
output->next = NULL;
|
2012-04-17 13:20:48 +04:00
|
|
|
|
2012-06-18 23:13:51 +04:00
|
|
|
eglDestroySurface(ec->base.egl_display, output->egl_surface);
|
2012-04-17 13:20:48 +04:00
|
|
|
gbm_surface_destroy(output->surface);
|
|
|
|
output->egl_surface = egl_surface;
|
|
|
|
output->surface = surface;
|
|
|
|
|
|
|
|
/*update output*/
|
|
|
|
output->base.current = &drm_mode->base;
|
|
|
|
output->base.dirty = 1;
|
|
|
|
weston_output_move(&output->base, output->base.x, output->base.y);
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
err:
|
2012-06-18 23:13:51 +04:00
|
|
|
eglDestroySurface(ec->base.egl_display, egl_surface);
|
2012-04-17 13:20:48 +04:00
|
|
|
gbm_surface_destroy(surface);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2011-04-22 20:27:57 +04:00
|
|
|
static int
|
2010-06-11 20:56:24 +04:00
|
|
|
on_drm_input(int fd, uint32_t mask, void *data)
|
|
|
|
{
|
|
|
|
drmEventContext evctx;
|
|
|
|
|
|
|
|
memset(&evctx, 0, sizeof evctx);
|
|
|
|
evctx.version = DRM_EVENT_CONTEXT_VERSION;
|
|
|
|
evctx.page_flip_handler = page_flip_handler;
|
2012-02-23 18:45:49 +04:00
|
|
|
evctx.vblank_handler = vblank_handler;
|
2010-06-11 20:56:24 +04:00
|
|
|
drmHandleEvent(fd, &evctx);
|
2011-04-22 20:27:57 +04:00
|
|
|
|
|
|
|
return 1;
|
2010-06-11 20:56:24 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2010-06-14 19:54:00 +04:00
|
|
|
init_egl(struct drm_compositor *ec, struct udev_device *device)
|
2010-06-11 20:56:24 +04:00
|
|
|
{
|
2012-03-12 02:27:41 +04:00
|
|
|
EGLint major, minor, n;
|
2012-03-29 06:53:49 +04:00
|
|
|
const char *filename, *sysnum;
|
2010-08-09 22:43:33 +04:00
|
|
|
int fd;
|
2010-07-29 07:47:54 +04:00
|
|
|
static const EGLint context_attribs[] = {
|
|
|
|
EGL_CONTEXT_CLIENT_VERSION, 2,
|
|
|
|
EGL_NONE
|
|
|
|
};
|
2010-06-11 20:56:24 +04:00
|
|
|
|
2012-03-12 02:27:41 +04:00
|
|
|
static const EGLint config_attribs[] = {
|
|
|
|
EGL_SURFACE_TYPE, EGL_WINDOW_BIT,
|
|
|
|
EGL_RED_SIZE, 1,
|
|
|
|
EGL_GREEN_SIZE, 1,
|
|
|
|
EGL_BLUE_SIZE, 1,
|
|
|
|
EGL_ALPHA_SIZE, 0,
|
|
|
|
EGL_RENDERABLE_TYPE, EGL_OPENGL_ES2_BIT,
|
|
|
|
EGL_NONE
|
|
|
|
};
|
|
|
|
|
2012-05-10 20:28:35 +04:00
|
|
|
sysnum = udev_device_get_sysnum(device);
|
|
|
|
if (sysnum)
|
|
|
|
ec->drm.id = atoi(sysnum);
|
|
|
|
if (!sysnum || ec->drm.id < 0) {
|
2012-06-07 20:01:59 +04:00
|
|
|
weston_log("cannot get device sysnum\n");
|
2012-05-10 20:28:35 +04:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2010-08-09 22:43:33 +04:00
|
|
|
filename = udev_device_get_devnode(device);
|
2011-11-05 21:46:01 +04:00
|
|
|
fd = open(filename, O_RDWR | O_CLOEXEC);
|
2010-08-09 22:43:33 +04:00
|
|
|
if (fd < 0) {
|
2010-06-11 20:56:24 +04:00
|
|
|
/* Probably permissions error */
|
2012-06-07 20:01:59 +04:00
|
|
|
weston_log("couldn't open %s, skipping\n",
|
2010-06-11 20:56:24 +04:00
|
|
|
udev_device_get_devnode(device));
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2012-06-09 00:45:33 +04:00
|
|
|
weston_log("using %s\n", filename);
|
|
|
|
|
2011-03-02 13:14:59 +03:00
|
|
|
ec->drm.fd = fd;
|
2011-04-30 11:32:11 +04:00
|
|
|
ec->gbm = gbm_create_device(ec->drm.fd);
|
2012-06-18 23:13:51 +04:00
|
|
|
ec->base.egl_display = eglGetDisplay(ec->gbm);
|
|
|
|
if (ec->base.egl_display == NULL) {
|
2012-06-07 20:01:59 +04:00
|
|
|
weston_log("failed to create display\n");
|
2010-06-11 20:56:24 +04:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2012-06-18 23:13:51 +04:00
|
|
|
if (!eglInitialize(ec->base.egl_display, &major, &minor)) {
|
2012-06-07 20:01:59 +04:00
|
|
|
weston_log("failed to initialize display\n");
|
2010-06-11 20:56:24 +04:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2010-11-23 05:24:39 +03:00
|
|
|
if (!eglBindAPI(EGL_OPENGL_ES_API)) {
|
2012-06-07 20:01:59 +04:00
|
|
|
weston_log("failed to bind api EGL_OPENGL_ES_API\n");
|
2010-11-23 05:24:39 +03:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2012-06-18 23:13:51 +04:00
|
|
|
if (!eglChooseConfig(ec->base.egl_display, config_attribs,
|
|
|
|
&ec->base.egl_config, 1, &n) || n != 1) {
|
2012-06-07 20:01:59 +04:00
|
|
|
weston_log("failed to choose config: %d\n", n);
|
2012-03-12 02:27:41 +04:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2012-06-18 23:13:51 +04:00
|
|
|
ec->base.egl_context =
|
|
|
|
eglCreateContext(ec->base.egl_display, ec->base.egl_config,
|
|
|
|
EGL_NO_CONTEXT, context_attribs);
|
|
|
|
if (ec->base.egl_context == NULL) {
|
2012-06-07 20:01:59 +04:00
|
|
|
weston_log("failed to create context\n");
|
2010-06-11 20:56:24 +04:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2012-03-29 06:53:49 +04:00
|
|
|
ec->dummy_surface = gbm_surface_create(ec->gbm, 10, 10,
|
|
|
|
GBM_FORMAT_XRGB8888,
|
|
|
|
GBM_BO_USE_RENDERING);
|
|
|
|
if (!ec->dummy_surface) {
|
2012-06-07 20:01:59 +04:00
|
|
|
weston_log("failed to create dummy gbm surface\n");
|
2012-03-29 06:53:49 +04:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
ec->dummy_egl_surface =
|
2012-06-18 23:13:51 +04:00
|
|
|
eglCreateWindowSurface(ec->base.egl_display,
|
|
|
|
ec->base.egl_config,
|
|
|
|
ec->dummy_surface,
|
|
|
|
NULL);
|
2012-03-29 06:53:49 +04:00
|
|
|
if (ec->dummy_egl_surface == EGL_NO_SURFACE) {
|
2012-06-07 20:01:59 +04:00
|
|
|
weston_log("failed to create egl surface\n");
|
2012-03-29 06:53:49 +04:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2012-06-18 23:13:51 +04:00
|
|
|
if (!eglMakeCurrent(ec->base.egl_display, ec->dummy_egl_surface,
|
|
|
|
ec->dummy_egl_surface, ec->base.egl_context)) {
|
2012-06-07 20:01:59 +04:00
|
|
|
weston_log("failed to make context current\n");
|
2010-06-11 20:56:24 +04:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static drmModeModeInfo builtin_1024x768 = {
|
|
|
|
63500, /* clock */
|
|
|
|
1024, 1072, 1176, 1328, 0,
|
|
|
|
768, 771, 775, 798, 0,
|
|
|
|
59920,
|
|
|
|
DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_PVSYNC,
|
|
|
|
0,
|
|
|
|
"1024x768"
|
|
|
|
};
|
|
|
|
|
2011-06-21 19:16:58 +04:00
|
|
|
|
|
|
|
static int
|
|
|
|
drm_output_add_mode(struct drm_output *output, drmModeModeInfo *info)
|
|
|
|
{
|
|
|
|
struct drm_mode *mode;
|
2012-05-10 20:23:53 +04:00
|
|
|
uint64_t refresh;
|
2011-06-21 19:16:58 +04:00
|
|
|
|
|
|
|
mode = malloc(sizeof *mode);
|
|
|
|
if (mode == NULL)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
mode->base.flags = 0;
|
|
|
|
mode->base.width = info->hdisplay;
|
|
|
|
mode->base.height = info->vdisplay;
|
2012-05-10 20:23:53 +04:00
|
|
|
|
|
|
|
/* Calculate higher precision (mHz) refresh rate */
|
|
|
|
refresh = (info->clock * 1000000LL / info->htotal +
|
|
|
|
info->vtotal / 2) / info->vtotal;
|
|
|
|
|
|
|
|
if (info->flags & DRM_MODE_FLAG_INTERLACE)
|
|
|
|
refresh *= 2;
|
|
|
|
if (info->flags & DRM_MODE_FLAG_DBLSCAN)
|
|
|
|
refresh /= 2;
|
|
|
|
if (info->vscan > 1)
|
|
|
|
refresh /= info->vscan;
|
|
|
|
|
|
|
|
mode->base.refresh = refresh;
|
2011-06-21 19:16:58 +04:00
|
|
|
mode->mode_info = *info;
|
|
|
|
wl_list_insert(output->base.mode_list.prev, &mode->base.link);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
drm_subpixel_to_wayland(int drm_value)
|
|
|
|
{
|
|
|
|
switch (drm_value) {
|
|
|
|
default:
|
|
|
|
case DRM_MODE_SUBPIXEL_UNKNOWN:
|
|
|
|
return WL_OUTPUT_SUBPIXEL_UNKNOWN;
|
|
|
|
case DRM_MODE_SUBPIXEL_NONE:
|
|
|
|
return WL_OUTPUT_SUBPIXEL_NONE;
|
|
|
|
case DRM_MODE_SUBPIXEL_HORIZONTAL_RGB:
|
|
|
|
return WL_OUTPUT_SUBPIXEL_HORIZONTAL_RGB;
|
|
|
|
case DRM_MODE_SUBPIXEL_HORIZONTAL_BGR:
|
|
|
|
return WL_OUTPUT_SUBPIXEL_HORIZONTAL_BGR;
|
|
|
|
case DRM_MODE_SUBPIXEL_VERTICAL_RGB:
|
|
|
|
return WL_OUTPUT_SUBPIXEL_VERTICAL_RGB;
|
|
|
|
case DRM_MODE_SUBPIXEL_VERTICAL_BGR:
|
|
|
|
return WL_OUTPUT_SUBPIXEL_VERTICAL_BGR;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-02-23 18:45:49 +04:00
|
|
|
static void
|
2012-04-12 07:18:23 +04:00
|
|
|
sprite_handle_buffer_destroy(struct wl_listener *listener, void *data)
|
2012-02-23 18:45:49 +04:00
|
|
|
{
|
|
|
|
struct drm_sprite *sprite =
|
|
|
|
container_of(listener, struct drm_sprite,
|
|
|
|
destroy_listener);
|
|
|
|
|
|
|
|
sprite->surface = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2012-04-12 07:18:23 +04:00
|
|
|
sprite_handle_pending_buffer_destroy(struct wl_listener *listener, void *data)
|
2012-02-23 18:45:49 +04:00
|
|
|
{
|
|
|
|
struct drm_sprite *sprite =
|
|
|
|
container_of(listener, struct drm_sprite,
|
|
|
|
pending_destroy_listener);
|
|
|
|
|
|
|
|
sprite->pending_surface = NULL;
|
|
|
|
}
|
|
|
|
|
2012-03-13 02:40:09 +04:00
|
|
|
/* returns a value between 0-255 range, where higher is brighter */
|
2012-02-29 21:53:50 +04:00
|
|
|
static uint32_t
|
|
|
|
drm_get_backlight(struct drm_output *output)
|
|
|
|
{
|
|
|
|
long brightness, max_brightness, norm;
|
|
|
|
|
|
|
|
brightness = backlight_get_brightness(output->backlight);
|
|
|
|
max_brightness = backlight_get_max_brightness(output->backlight);
|
|
|
|
|
2012-03-13 02:40:09 +04:00
|
|
|
/* convert it on a scale of 0 to 255 */
|
|
|
|
norm = (brightness * 255)/(max_brightness);
|
2012-02-29 21:53:50 +04:00
|
|
|
|
|
|
|
return (uint32_t) norm;
|
|
|
|
}
|
|
|
|
|
2012-03-13 02:40:09 +04:00
|
|
|
/* values accepted are between 0-255 range */
|
2012-02-29 21:53:50 +04:00
|
|
|
static void
|
|
|
|
drm_set_backlight(struct weston_output *output_base, uint32_t value)
|
|
|
|
{
|
|
|
|
struct drm_output *output = (struct drm_output *) output_base;
|
|
|
|
long max_brightness, new_brightness;
|
|
|
|
|
|
|
|
if (!output->backlight)
|
|
|
|
return;
|
|
|
|
|
2012-03-30 19:52:39 +04:00
|
|
|
if (value > 255)
|
2012-02-29 21:53:50 +04:00
|
|
|
return;
|
|
|
|
|
|
|
|
max_brightness = backlight_get_max_brightness(output->backlight);
|
|
|
|
|
|
|
|
/* get denormalized value */
|
2012-03-13 02:40:09 +04:00
|
|
|
new_brightness = (value * max_brightness) / 255;
|
2012-02-29 21:53:50 +04:00
|
|
|
|
|
|
|
backlight_set_brightness(output->backlight, new_brightness);
|
|
|
|
}
|
|
|
|
|
|
|
|
static drmModePropertyPtr
|
|
|
|
drm_get_prop(int fd, drmModeConnectorPtr connector, const char *name)
|
|
|
|
{
|
|
|
|
drmModePropertyPtr props;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < connector->count_props; i++) {
|
|
|
|
props = drmModeGetProperty(fd, connector->props[i]);
|
|
|
|
if (!props)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (!strcmp(props->name, name))
|
|
|
|
return props;
|
|
|
|
|
|
|
|
drmModeFreeProperty(props);
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
drm_set_dpms(struct weston_output *output_base, enum dpms_enum level)
|
|
|
|
{
|
|
|
|
struct drm_output *output = (struct drm_output *) output_base;
|
|
|
|
struct weston_compositor *ec = output_base->compositor;
|
|
|
|
struct drm_compositor *c = (struct drm_compositor *) ec;
|
|
|
|
drmModeConnectorPtr connector;
|
|
|
|
drmModePropertyPtr prop;
|
|
|
|
|
|
|
|
connector = drmModeGetConnector(c->drm.fd, output->connector_id);
|
|
|
|
if (!connector)
|
|
|
|
return;
|
|
|
|
|
|
|
|
prop = drm_get_prop(c->drm.fd, connector, "DPMS");
|
|
|
|
if (!prop) {
|
|
|
|
drmModeFreeConnector(connector);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
drmModeConnectorSetProperty(c->drm.fd, connector->connector_id,
|
|
|
|
prop->prop_id, level);
|
|
|
|
drmModeFreeProperty(prop);
|
|
|
|
drmModeFreeConnector(connector);
|
|
|
|
}
|
|
|
|
|
2010-06-11 20:56:24 +04:00
|
|
|
static int
|
2010-06-14 19:54:00 +04:00
|
|
|
create_output_for_connector(struct drm_compositor *ec,
|
2010-06-11 20:56:24 +04:00
|
|
|
drmModeRes *resources,
|
2011-03-11 18:39:20 +03:00
|
|
|
drmModeConnector *connector,
|
2012-02-29 21:53:50 +04:00
|
|
|
int x, int y, struct udev_device *drm_device)
|
2010-06-11 20:56:24 +04:00
|
|
|
{
|
2010-06-14 19:54:00 +04:00
|
|
|
struct drm_output *output;
|
2011-12-08 20:05:45 +04:00
|
|
|
struct drm_mode *drm_mode, *next;
|
2010-06-11 20:56:24 +04:00
|
|
|
drmModeEncoder *encoder;
|
|
|
|
int i, ret;
|
|
|
|
|
2011-03-02 13:14:59 +03:00
|
|
|
encoder = drmModeGetEncoder(ec->drm.fd, connector->encoders[0]);
|
2010-06-11 20:56:24 +04:00
|
|
|
if (encoder == NULL) {
|
2012-06-07 20:01:59 +04:00
|
|
|
weston_log("No encoder for connector.\n");
|
2010-06-11 20:56:24 +04:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; i < resources->count_crtcs; i++) {
|
2011-02-10 03:01:42 +03:00
|
|
|
if (encoder->possible_crtcs & (1 << i) &&
|
2011-03-15 17:08:41 +03:00
|
|
|
!(ec->crtc_allocator & (1 << resources->crtcs[i])))
|
2010-06-11 20:56:24 +04:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (i == resources->count_crtcs) {
|
2012-06-07 20:01:59 +04:00
|
|
|
weston_log("No usable crtc for encoder.\n");
|
2011-12-08 20:05:44 +04:00
|
|
|
drmModeFreeEncoder(encoder);
|
2010-06-11 20:56:24 +04:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2011-06-21 19:16:58 +04:00
|
|
|
output = malloc(sizeof *output);
|
2011-12-08 20:05:44 +04:00
|
|
|
if (output == NULL) {
|
|
|
|
drmModeFreeEncoder(encoder);
|
2011-06-21 19:16:58 +04:00
|
|
|
return -1;
|
2011-12-08 20:05:44 +04:00
|
|
|
}
|
2011-06-21 19:16:58 +04:00
|
|
|
|
2010-06-14 19:54:00 +04:00
|
|
|
memset(output, 0, sizeof *output);
|
2011-06-21 19:16:58 +04:00
|
|
|
output->base.subpixel = drm_subpixel_to_wayland(connector->subpixel);
|
|
|
|
output->base.make = "unknown";
|
|
|
|
output->base.model = "unknown";
|
|
|
|
wl_list_init(&output->base.mode_list);
|
2010-06-14 19:54:00 +04:00
|
|
|
|
2010-06-11 20:56:24 +04:00
|
|
|
output->crtc_id = resources->crtcs[i];
|
2011-03-15 17:08:41 +03:00
|
|
|
ec->crtc_allocator |= (1 << output->crtc_id);
|
2010-06-11 20:56:24 +04:00
|
|
|
output->connector_id = connector->connector_id;
|
2011-03-15 17:08:41 +03:00
|
|
|
ec->connector_allocator |= (1 << output->connector_id);
|
2011-06-21 19:16:58 +04:00
|
|
|
|
2011-08-30 00:52:23 +04:00
|
|
|
output->original_crtc = drmModeGetCrtc(ec->drm.fd, output->crtc_id);
|
2011-12-08 20:05:45 +04:00
|
|
|
drmModeFreeEncoder(encoder);
|
|
|
|
|
|
|
|
for (i = 0; i < connector->count_modes; i++) {
|
|
|
|
ret = drm_output_add_mode(output, &connector->modes[i]);
|
|
|
|
if (ret)
|
|
|
|
goto err_free;
|
|
|
|
}
|
2011-08-30 00:52:23 +04:00
|
|
|
|
2011-12-08 20:05:45 +04:00
|
|
|
if (connector->count_modes == 0) {
|
|
|
|
ret = drm_output_add_mode(output, &builtin_1024x768);
|
|
|
|
if (ret)
|
|
|
|
goto err_free;
|
|
|
|
}
|
2011-06-21 19:16:58 +04:00
|
|
|
|
|
|
|
drm_mode = container_of(output->base.mode_list.next,
|
|
|
|
struct drm_mode, base.link);
|
|
|
|
output->base.current = &drm_mode->base;
|
|
|
|
drm_mode->base.flags =
|
|
|
|
WL_OUTPUT_MODE_CURRENT | WL_OUTPUT_MODE_PREFERRED;
|
|
|
|
|
2012-03-12 02:27:41 +04:00
|
|
|
output->surface = gbm_surface_create(ec->gbm,
|
|
|
|
output->base.current->width,
|
|
|
|
output->base.current->height,
|
|
|
|
GBM_FORMAT_XRGB8888,
|
|
|
|
GBM_BO_USE_SCANOUT |
|
|
|
|
GBM_BO_USE_RENDERING);
|
|
|
|
if (!output->surface) {
|
2012-06-07 20:01:59 +04:00
|
|
|
weston_log("failed to create gbm surface\n");
|
2012-03-12 02:27:41 +04:00
|
|
|
goto err_free;
|
2010-06-11 20:56:24 +04:00
|
|
|
}
|
|
|
|
|
2012-03-12 02:27:41 +04:00
|
|
|
output->egl_surface =
|
2012-06-18 23:13:51 +04:00
|
|
|
eglCreateWindowSurface(ec->base.egl_display,
|
|
|
|
ec->base.egl_config,
|
|
|
|
output->surface,
|
|
|
|
NULL);
|
2012-03-12 02:27:41 +04:00
|
|
|
if (output->egl_surface == EGL_NO_SURFACE) {
|
2012-06-07 20:01:59 +04:00
|
|
|
weston_log("failed to create egl surface\n");
|
2012-03-12 02:27:41 +04:00
|
|
|
goto err_surface;
|
2010-06-11 20:56:24 +04:00
|
|
|
}
|
|
|
|
|
2012-05-03 19:39:35 +04:00
|
|
|
output->cursor_bo[0] =
|
|
|
|
gbm_bo_create(ec->gbm, 64, 64, GBM_FORMAT_ARGB8888,
|
|
|
|
GBM_BO_USE_CURSOR_64X64 | GBM_BO_USE_WRITE);
|
|
|
|
output->cursor_bo[1] =
|
|
|
|
gbm_bo_create(ec->gbm, 64, 64, GBM_FORMAT_ARGB8888,
|
|
|
|
GBM_BO_USE_CURSOR_64X64 | GBM_BO_USE_WRITE);
|
|
|
|
|
2012-02-29 21:53:50 +04:00
|
|
|
output->backlight = backlight_init(drm_device,
|
|
|
|
connector->connector_type);
|
|
|
|
if (output->backlight) {
|
|
|
|
output->base.set_backlight = drm_set_backlight;
|
|
|
|
output->base.backlight_current = drm_get_backlight(output);
|
|
|
|
}
|
|
|
|
|
Rename wayland-compositor to weston
This rename addresses a few problems around the split between core
Wayland and the wayland-demos repository.
1) Initially, we had one big repository with protocol code, sample
compositor and sample clients. We split that repository to make it
possible to implement the protocol without pulling in the sample/demo
code. At this point, the compositor is more than just a "demo" and
wayland-demos doesn't send the right message. The sample compositor
is a useful, self-contained project in it's own right, and we want to
move away from the "demos" label.
2) Another problem is that the wayland-demos compositor is often
called "the wayland compsitor", but it's really just one possible
compositor. Existing X11 compositors are expected to add Wayland
support and then gradually phase out/modularize the X11 support, for
example. Conversely, it's hard to talk about the wayland-demos
compositor specifically as opposed to, eg, the wayland protocol or a
wayland compositor in general.
We are also renaming the repo to weston, and the compositor
subdirectory to src/, to emphasize that the main "output" is the
compositor.
2012-01-03 19:29:47 +04:00
|
|
|
weston_output_init(&output->base, &ec->base, x, y,
|
2012-03-12 02:27:41 +04:00
|
|
|
connector->mmWidth, connector->mmHeight,
|
|
|
|
WL_OUTPUT_FLIPPED);
|
2011-10-24 21:26:32 +04:00
|
|
|
|
|
|
|
wl_list_insert(ec->base.output_list.prev, &output->base.link);
|
|
|
|
|
2012-04-17 13:20:49 +04:00
|
|
|
output->base.origin = output->base.current;
|
2012-01-26 08:32:28 +04:00
|
|
|
output->base.repaint = drm_output_repaint;
|
2011-08-30 00:52:23 +04:00
|
|
|
output->base.destroy = drm_output_destroy;
|
2012-02-23 18:45:49 +04:00
|
|
|
output->base.assign_planes = drm_assign_planes;
|
2012-02-29 21:53:50 +04:00
|
|
|
output->base.set_dpms = drm_set_dpms;
|
2012-04-17 13:20:48 +04:00
|
|
|
output->base.switch_mode = drm_output_switch_mode;
|
2011-03-11 18:39:20 +03:00
|
|
|
|
2012-06-09 00:45:33 +04:00
|
|
|
weston_log("kms connector %d, crtc %d at mode %dx%d@%.1f\n",
|
|
|
|
output->connector_id, output->crtc_id,
|
|
|
|
output->base.current->width,
|
|
|
|
output->base.current->height,
|
|
|
|
output->base.current->refresh / 1000.0);
|
|
|
|
|
2010-06-11 20:56:24 +04:00
|
|
|
return 0;
|
2011-12-08 20:05:45 +04:00
|
|
|
|
2012-03-12 02:27:41 +04:00
|
|
|
err_surface:
|
|
|
|
gbm_surface_destroy(output->surface);
|
2011-12-08 20:05:45 +04:00
|
|
|
err_free:
|
|
|
|
wl_list_for_each_safe(drm_mode, next, &output->base.mode_list,
|
|
|
|
base.link) {
|
|
|
|
wl_list_remove(&drm_mode->base.link);
|
|
|
|
free(drm_mode);
|
|
|
|
}
|
|
|
|
|
|
|
|
drmModeFreeCrtc(output->original_crtc);
|
|
|
|
ec->crtc_allocator &= ~(1 << output->crtc_id);
|
|
|
|
ec->connector_allocator &= ~(1 << output->connector_id);
|
|
|
|
free(output);
|
2012-03-12 02:27:41 +04:00
|
|
|
|
2011-12-08 20:05:45 +04:00
|
|
|
return -1;
|
2010-06-11 20:56:24 +04:00
|
|
|
}
|
|
|
|
|
2012-02-23 18:45:49 +04:00
|
|
|
static void
|
|
|
|
create_sprites(struct drm_compositor *ec)
|
|
|
|
{
|
|
|
|
struct drm_sprite *sprite;
|
|
|
|
drmModePlaneRes *plane_res;
|
|
|
|
drmModePlane *plane;
|
2012-03-30 19:52:39 +04:00
|
|
|
uint32_t i;
|
2012-02-23 18:45:49 +04:00
|
|
|
|
|
|
|
plane_res = drmModeGetPlaneResources(ec->drm.fd);
|
|
|
|
if (!plane_res) {
|
2012-06-07 20:01:59 +04:00
|
|
|
weston_log("failed to get plane resources: %s\n",
|
2012-02-23 18:45:49 +04:00
|
|
|
strerror(errno));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; i < plane_res->count_planes; i++) {
|
|
|
|
plane = drmModeGetPlane(ec->drm.fd, plane_res->planes[i]);
|
|
|
|
if (!plane)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
sprite = malloc(sizeof(*sprite) + ((sizeof(uint32_t)) *
|
|
|
|
plane->count_formats));
|
|
|
|
if (!sprite) {
|
2012-06-07 20:01:59 +04:00
|
|
|
weston_log("%s: out of memory\n",
|
2012-02-23 18:45:49 +04:00
|
|
|
__func__);
|
|
|
|
free(plane);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
memset(sprite, 0, sizeof *sprite);
|
|
|
|
|
|
|
|
sprite->possible_crtcs = plane->possible_crtcs;
|
|
|
|
sprite->plane_id = plane->plane_id;
|
|
|
|
sprite->surface = NULL;
|
|
|
|
sprite->pending_surface = NULL;
|
|
|
|
sprite->fb_id = 0;
|
|
|
|
sprite->pending_fb_id = 0;
|
2012-04-12 07:18:23 +04:00
|
|
|
sprite->destroy_listener.notify = sprite_handle_buffer_destroy;
|
|
|
|
sprite->pending_destroy_listener.notify =
|
2012-02-23 18:45:49 +04:00
|
|
|
sprite_handle_pending_buffer_destroy;
|
|
|
|
sprite->compositor = ec;
|
|
|
|
sprite->count_formats = plane->count_formats;
|
|
|
|
memcpy(sprite->formats, plane->formats,
|
2012-03-12 04:48:44 +04:00
|
|
|
plane->count_formats * sizeof(plane->formats[0]));
|
2012-02-23 18:45:49 +04:00
|
|
|
drmModeFreePlane(plane);
|
|
|
|
|
|
|
|
wl_list_insert(&ec->sprite_list, &sprite->link);
|
|
|
|
}
|
|
|
|
|
|
|
|
free(plane_res->planes);
|
|
|
|
free(plane_res);
|
|
|
|
}
|
|
|
|
|
2012-02-24 06:45:32 +04:00
|
|
|
static void
|
|
|
|
destroy_sprites(struct drm_compositor *compositor)
|
|
|
|
{
|
|
|
|
struct drm_sprite *sprite, *next;
|
|
|
|
struct drm_output *output;
|
|
|
|
|
|
|
|
output = container_of(compositor->base.output_list.next,
|
|
|
|
struct drm_output, base.link);
|
|
|
|
|
|
|
|
wl_list_for_each_safe(sprite, next, &compositor->sprite_list, link) {
|
|
|
|
drmModeSetPlane(compositor->drm.fd,
|
|
|
|
sprite->plane_id,
|
|
|
|
output->crtc_id, 0, 0,
|
|
|
|
0, 0, 0, 0, 0, 0, 0, 0);
|
|
|
|
drmModeRmFB(compositor->drm.fd, sprite->fb_id);
|
|
|
|
free(sprite);
|
|
|
|
}
|
|
|
|
}
|
2012-02-23 18:45:49 +04:00
|
|
|
|
2010-06-11 20:56:24 +04:00
|
|
|
static int
|
2012-03-30 19:52:39 +04:00
|
|
|
create_outputs(struct drm_compositor *ec, uint32_t option_connector,
|
2012-02-29 21:53:50 +04:00
|
|
|
struct udev_device *drm_device)
|
2010-06-11 20:56:24 +04:00
|
|
|
{
|
|
|
|
drmModeConnector *connector;
|
|
|
|
drmModeRes *resources;
|
|
|
|
int i;
|
2011-03-11 18:39:20 +03:00
|
|
|
int x = 0, y = 0;
|
2010-06-11 20:56:24 +04:00
|
|
|
|
2011-03-02 13:14:59 +03:00
|
|
|
resources = drmModeGetResources(ec->drm.fd);
|
2010-06-11 20:56:24 +04:00
|
|
|
if (!resources) {
|
2012-06-07 20:01:59 +04:00
|
|
|
weston_log("drmModeGetResources failed\n");
|
2010-06-11 20:56:24 +04:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2012-02-23 18:45:49 +04:00
|
|
|
ec->crtcs = calloc(resources->count_crtcs, sizeof(uint32_t));
|
2012-03-07 23:55:21 +04:00
|
|
|
if (!ec->crtcs) {
|
|
|
|
drmModeFreeResources(resources);
|
2012-02-23 18:45:49 +04:00
|
|
|
return -1;
|
2012-03-07 23:55:21 +04:00
|
|
|
}
|
2012-02-23 18:45:49 +04:00
|
|
|
|
|
|
|
ec->num_crtcs = resources->count_crtcs;
|
|
|
|
memcpy(ec->crtcs, resources->crtcs, sizeof(uint32_t) * ec->num_crtcs);
|
|
|
|
|
2010-06-11 20:56:24 +04:00
|
|
|
for (i = 0; i < resources->count_connectors; i++) {
|
2011-08-30 13:38:26 +04:00
|
|
|
connector = drmModeGetConnector(ec->drm.fd,
|
|
|
|
resources->connectors[i]);
|
2010-06-11 20:56:24 +04:00
|
|
|
if (connector == NULL)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (connector->connection == DRM_MODE_CONNECTED &&
|
|
|
|
(option_connector == 0 ||
|
2011-08-02 15:03:54 +04:00
|
|
|
connector->connector_id == option_connector)) {
|
2011-03-11 18:39:20 +03:00
|
|
|
if (create_output_for_connector(ec, resources,
|
2012-02-29 21:53:50 +04:00
|
|
|
connector, x, y,
|
|
|
|
drm_device) < 0) {
|
2011-10-07 10:20:53 +04:00
|
|
|
drmModeFreeConnector(connector);
|
|
|
|
continue;
|
|
|
|
}
|
2010-06-11 20:56:24 +04:00
|
|
|
|
2011-08-02 15:03:54 +04:00
|
|
|
x += container_of(ec->base.output_list.prev,
|
Rename wayland-compositor to weston
This rename addresses a few problems around the split between core
Wayland and the wayland-demos repository.
1) Initially, we had one big repository with protocol code, sample
compositor and sample clients. We split that repository to make it
possible to implement the protocol without pulling in the sample/demo
code. At this point, the compositor is more than just a "demo" and
wayland-demos doesn't send the right message. The sample compositor
is a useful, self-contained project in it's own right, and we want to
move away from the "demos" label.
2) Another problem is that the wayland-demos compositor is often
called "the wayland compsitor", but it's really just one possible
compositor. Existing X11 compositors are expected to add Wayland
support and then gradually phase out/modularize the X11 support, for
example. Conversely, it's hard to talk about the wayland-demos
compositor specifically as opposed to, eg, the wayland protocol or a
wayland compositor in general.
We are also renaming the repo to weston, and the compositor
subdirectory to src/, to emphasize that the main "output" is the
compositor.
2012-01-03 19:29:47 +04:00
|
|
|
struct weston_output,
|
2011-08-02 15:03:54 +04:00
|
|
|
link)->current->width;
|
|
|
|
}
|
2011-03-11 18:39:20 +03:00
|
|
|
|
2010-06-11 20:56:24 +04:00
|
|
|
drmModeFreeConnector(connector);
|
|
|
|
}
|
|
|
|
|
2010-06-14 19:54:00 +04:00
|
|
|
if (wl_list_empty(&ec->base.output_list)) {
|
2012-06-07 20:01:59 +04:00
|
|
|
weston_log("No currently active connector found.\n");
|
2012-03-07 23:55:21 +04:00
|
|
|
drmModeFreeResources(resources);
|
2010-06-11 20:56:24 +04:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
drmModeFreeResources(resources);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2011-03-15 17:08:41 +03:00
|
|
|
static void
|
2012-02-29 21:53:50 +04:00
|
|
|
update_outputs(struct drm_compositor *ec, struct udev_device *drm_device)
|
2011-03-15 17:08:41 +03:00
|
|
|
{
|
|
|
|
drmModeConnector *connector;
|
|
|
|
drmModeRes *resources;
|
|
|
|
struct drm_output *output, *next;
|
|
|
|
int x = 0, y = 0;
|
|
|
|
int x_offset = 0, y_offset = 0;
|
|
|
|
uint32_t connected = 0, disconnects = 0;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
resources = drmModeGetResources(ec->drm.fd);
|
|
|
|
if (!resources) {
|
2012-06-07 20:01:59 +04:00
|
|
|
weston_log("drmModeGetResources failed\n");
|
2011-03-15 17:08:41 +03:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* collect new connects */
|
|
|
|
for (i = 0; i < resources->count_connectors; i++) {
|
2011-08-30 13:38:26 +04:00
|
|
|
int connector_id = resources->connectors[i];
|
|
|
|
|
|
|
|
connector = drmModeGetConnector(ec->drm.fd, connector_id);
|
2011-12-08 20:05:43 +04:00
|
|
|
if (connector == NULL)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (connector->connection != DRM_MODE_CONNECTED) {
|
|
|
|
drmModeFreeConnector(connector);
|
2011-03-15 17:08:41 +03:00
|
|
|
continue;
|
2011-12-08 20:05:43 +04:00
|
|
|
}
|
2011-03-15 17:08:41 +03:00
|
|
|
|
2011-08-30 13:38:26 +04:00
|
|
|
connected |= (1 << connector_id);
|
|
|
|
|
|
|
|
if (!(ec->connector_allocator & (1 << connector_id))) {
|
Rename wayland-compositor to weston
This rename addresses a few problems around the split between core
Wayland and the wayland-demos repository.
1) Initially, we had one big repository with protocol code, sample
compositor and sample clients. We split that repository to make it
possible to implement the protocol without pulling in the sample/demo
code. At this point, the compositor is more than just a "demo" and
wayland-demos doesn't send the right message. The sample compositor
is a useful, self-contained project in it's own right, and we want to
move away from the "demos" label.
2) Another problem is that the wayland-demos compositor is often
called "the wayland compsitor", but it's really just one possible
compositor. Existing X11 compositors are expected to add Wayland
support and then gradually phase out/modularize the X11 support, for
example. Conversely, it's hard to talk about the wayland-demos
compositor specifically as opposed to, eg, the wayland protocol or a
wayland compositor in general.
We are also renaming the repo to weston, and the compositor
subdirectory to src/, to emphasize that the main "output" is the
compositor.
2012-01-03 19:29:47 +04:00
|
|
|
struct weston_output *last =
|
2011-03-15 17:08:41 +03:00
|
|
|
container_of(ec->base.output_list.prev,
|
Rename wayland-compositor to weston
This rename addresses a few problems around the split between core
Wayland and the wayland-demos repository.
1) Initially, we had one big repository with protocol code, sample
compositor and sample clients. We split that repository to make it
possible to implement the protocol without pulling in the sample/demo
code. At this point, the compositor is more than just a "demo" and
wayland-demos doesn't send the right message. The sample compositor
is a useful, self-contained project in it's own right, and we want to
move away from the "demos" label.
2) Another problem is that the wayland-demos compositor is often
called "the wayland compsitor", but it's really just one possible
compositor. Existing X11 compositors are expected to add Wayland
support and then gradually phase out/modularize the X11 support, for
example. Conversely, it's hard to talk about the wayland-demos
compositor specifically as opposed to, eg, the wayland protocol or a
wayland compositor in general.
We are also renaming the repo to weston, and the compositor
subdirectory to src/, to emphasize that the main "output" is the
compositor.
2012-01-03 19:29:47 +04:00
|
|
|
struct weston_output, link);
|
2011-03-15 17:08:41 +03:00
|
|
|
|
|
|
|
/* XXX: not yet needed, we die with 0 outputs */
|
|
|
|
if (!wl_list_empty(&ec->base.output_list))
|
2011-08-30 13:38:26 +04:00
|
|
|
x = last->x + last->current->width;
|
2011-03-15 17:08:41 +03:00
|
|
|
else
|
|
|
|
x = 0;
|
|
|
|
y = 0;
|
|
|
|
create_output_for_connector(ec, resources,
|
2012-02-29 21:53:50 +04:00
|
|
|
connector, x, y,
|
|
|
|
drm_device);
|
2012-06-07 20:01:59 +04:00
|
|
|
weston_log("connector %d connected\n", connector_id);
|
2011-08-30 13:38:26 +04:00
|
|
|
|
2011-03-15 17:08:41 +03:00
|
|
|
}
|
|
|
|
drmModeFreeConnector(connector);
|
|
|
|
}
|
|
|
|
drmModeFreeResources(resources);
|
|
|
|
|
|
|
|
disconnects = ec->connector_allocator & ~connected;
|
|
|
|
if (disconnects) {
|
|
|
|
wl_list_for_each_safe(output, next, &ec->base.output_list,
|
|
|
|
base.link) {
|
|
|
|
if (x_offset != 0 || y_offset != 0) {
|
Rename wayland-compositor to weston
This rename addresses a few problems around the split between core
Wayland and the wayland-demos repository.
1) Initially, we had one big repository with protocol code, sample
compositor and sample clients. We split that repository to make it
possible to implement the protocol without pulling in the sample/demo
code. At this point, the compositor is more than just a "demo" and
wayland-demos doesn't send the right message. The sample compositor
is a useful, self-contained project in it's own right, and we want to
move away from the "demos" label.
2) Another problem is that the wayland-demos compositor is often
called "the wayland compsitor", but it's really just one possible
compositor. Existing X11 compositors are expected to add Wayland
support and then gradually phase out/modularize the X11 support, for
example. Conversely, it's hard to talk about the wayland-demos
compositor specifically as opposed to, eg, the wayland protocol or a
wayland compositor in general.
We are also renaming the repo to weston, and the compositor
subdirectory to src/, to emphasize that the main "output" is the
compositor.
2012-01-03 19:29:47 +04:00
|
|
|
weston_output_move(&output->base,
|
2011-03-15 17:08:41 +03:00
|
|
|
output->base.x - x_offset,
|
|
|
|
output->base.y - y_offset);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (disconnects & (1 << output->connector_id)) {
|
|
|
|
disconnects &= ~(1 << output->connector_id);
|
2012-06-07 20:01:59 +04:00
|
|
|
weston_log("connector %d disconnected\n",
|
2011-03-15 17:08:41 +03:00
|
|
|
output->connector_id);
|
2011-06-21 19:16:58 +04:00
|
|
|
x_offset += output->base.current->width;
|
2011-08-30 13:44:56 +04:00
|
|
|
drm_output_destroy(&output->base);
|
2011-03-15 17:08:41 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* FIXME: handle zero outputs, without terminating */
|
|
|
|
if (ec->connector_allocator == 0)
|
|
|
|
wl_display_terminate(ec->base.wl_display);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2012-03-11 23:05:21 +04:00
|
|
|
udev_event_is_hotplug(struct drm_compositor *ec, struct udev_device *device)
|
2011-03-15 17:08:41 +03:00
|
|
|
{
|
2012-03-11 23:05:21 +04:00
|
|
|
const char *sysnum;
|
2012-03-11 23:05:22 +04:00
|
|
|
const char *val;
|
2012-03-11 23:05:21 +04:00
|
|
|
|
|
|
|
sysnum = udev_device_get_sysnum(device);
|
|
|
|
if (!sysnum || atoi(sysnum) != ec->drm.id)
|
|
|
|
return 0;
|
2011-08-30 13:38:26 +04:00
|
|
|
|
2012-03-11 23:05:22 +04:00
|
|
|
val = udev_device_get_property_value(device, "HOTPLUG");
|
|
|
|
if (!val)
|
2011-03-15 17:08:41 +03:00
|
|
|
return 0;
|
|
|
|
|
2012-03-11 23:05:22 +04:00
|
|
|
return strcmp(val, "1") == 0;
|
2011-03-15 17:08:41 +03:00
|
|
|
}
|
|
|
|
|
2011-04-22 20:27:57 +04:00
|
|
|
static int
|
2011-03-15 17:08:41 +03:00
|
|
|
udev_drm_event(int fd, uint32_t mask, void *data)
|
|
|
|
{
|
|
|
|
struct drm_compositor *ec = data;
|
|
|
|
struct udev_device *event;
|
|
|
|
|
|
|
|
event = udev_monitor_receive_device(ec->udev_monitor);
|
2011-08-30 13:38:26 +04:00
|
|
|
|
2012-03-11 23:05:21 +04:00
|
|
|
if (udev_event_is_hotplug(ec, event))
|
2012-02-29 21:53:50 +04:00
|
|
|
update_outputs(ec, event);
|
2011-03-15 17:08:41 +03:00
|
|
|
|
|
|
|
udev_device_unref(event);
|
2011-04-22 20:27:57 +04:00
|
|
|
|
|
|
|
return 1;
|
2011-03-15 17:08:41 +03:00
|
|
|
}
|
|
|
|
|
2010-12-02 00:52:15 +03:00
|
|
|
static void
|
Rename wayland-compositor to weston
This rename addresses a few problems around the split between core
Wayland and the wayland-demos repository.
1) Initially, we had one big repository with protocol code, sample
compositor and sample clients. We split that repository to make it
possible to implement the protocol without pulling in the sample/demo
code. At this point, the compositor is more than just a "demo" and
wayland-demos doesn't send the right message. The sample compositor
is a useful, self-contained project in it's own right, and we want to
move away from the "demos" label.
2) Another problem is that the wayland-demos compositor is often
called "the wayland compsitor", but it's really just one possible
compositor. Existing X11 compositors are expected to add Wayland
support and then gradually phase out/modularize the X11 support, for
example. Conversely, it's hard to talk about the wayland-demos
compositor specifically as opposed to, eg, the wayland protocol or a
wayland compositor in general.
We are also renaming the repo to weston, and the compositor
subdirectory to src/, to emphasize that the main "output" is the
compositor.
2012-01-03 19:29:47 +04:00
|
|
|
drm_destroy(struct weston_compositor *ec)
|
2010-12-02 00:52:15 +03:00
|
|
|
{
|
|
|
|
struct drm_compositor *d = (struct drm_compositor *) ec;
|
2012-05-16 21:45:18 +04:00
|
|
|
struct weston_seat *seat, *next;
|
2010-12-02 00:52:15 +03:00
|
|
|
|
2012-05-16 21:45:18 +04:00
|
|
|
wl_list_for_each_safe(seat, next, &ec->seat_list, link)
|
|
|
|
evdev_input_destroy(seat);
|
2012-03-29 00:36:09 +04:00
|
|
|
|
|
|
|
wl_event_source_remove(d->udev_drm_source);
|
|
|
|
wl_event_source_remove(d->drm_source);
|
|
|
|
|
Rename wayland-compositor to weston
This rename addresses a few problems around the split between core
Wayland and the wayland-demos repository.
1) Initially, we had one big repository with protocol code, sample
compositor and sample clients. We split that repository to make it
possible to implement the protocol without pulling in the sample/demo
code. At this point, the compositor is more than just a "demo" and
wayland-demos doesn't send the right message. The sample compositor
is a useful, self-contained project in it's own right, and we want to
move away from the "demos" label.
2) Another problem is that the wayland-demos compositor is often
called "the wayland compsitor", but it's really just one possible
compositor. Existing X11 compositors are expected to add Wayland
support and then gradually phase out/modularize the X11 support, for
example. Conversely, it's hard to talk about the wayland-demos
compositor specifically as opposed to, eg, the wayland protocol or a
wayland compositor in general.
We are also renaming the repo to weston, and the compositor
subdirectory to src/, to emphasize that the main "output" is the
compositor.
2012-01-03 19:29:47 +04:00
|
|
|
weston_compositor_shutdown(ec);
|
2012-03-29 00:36:09 +04:00
|
|
|
|
2012-04-30 14:31:28 +04:00
|
|
|
/* Work around crash in egl_dri2.c's dri2_make_current() */
|
2012-06-18 23:13:51 +04:00
|
|
|
eglMakeCurrent(ec->egl_display, EGL_NO_SURFACE, EGL_NO_SURFACE,
|
2012-04-30 14:31:28 +04:00
|
|
|
EGL_NO_CONTEXT);
|
2012-06-18 23:13:51 +04:00
|
|
|
eglTerminate(ec->egl_display);
|
2012-04-30 14:31:28 +04:00
|
|
|
eglReleaseThread();
|
|
|
|
|
2011-08-30 00:52:23 +04:00
|
|
|
gbm_device_destroy(d->gbm);
|
2012-02-24 06:45:32 +04:00
|
|
|
destroy_sprites(d);
|
2012-01-30 17:04:04 +04:00
|
|
|
if (weston_launcher_drm_set_master(&d->base, d->drm.fd, 0) < 0)
|
2012-06-07 20:01:59 +04:00
|
|
|
weston_log("failed to drop master: %m\n");
|
2011-01-14 22:59:13 +03:00
|
|
|
tty_destroy(d->tty);
|
2010-12-02 00:52:15 +03:00
|
|
|
|
2011-01-14 22:59:13 +03:00
|
|
|
free(d);
|
2010-12-02 00:52:15 +03:00
|
|
|
}
|
|
|
|
|
2012-01-18 20:48:46 +04:00
|
|
|
static void
|
|
|
|
drm_compositor_set_modes(struct drm_compositor *compositor)
|
|
|
|
{
|
|
|
|
struct drm_output *output;
|
|
|
|
struct drm_mode *drm_mode;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
wl_list_for_each(output, &compositor->base.output_list, base.link) {
|
|
|
|
drm_mode = (struct drm_mode *) output->base.current;
|
|
|
|
ret = drmModeSetCrtc(compositor->drm.fd, output->crtc_id,
|
2012-05-02 17:42:21 +04:00
|
|
|
output->current->fb_id, 0, 0,
|
2012-01-18 20:48:46 +04:00
|
|
|
&output->connector_id, 1,
|
|
|
|
&drm_mode->mode_info);
|
|
|
|
if (ret < 0) {
|
2012-06-07 20:01:59 +04:00
|
|
|
weston_log(
|
2012-03-12 02:27:41 +04:00
|
|
|
"failed to set mode %dx%d for output at %d,%d: %m\n",
|
2012-01-18 20:48:46 +04:00
|
|
|
drm_mode->base.width, drm_mode->base.height,
|
|
|
|
output->base.x, output->base.y);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-05-06 23:15:37 +04:00
|
|
|
static void
|
Rename wayland-compositor to weston
This rename addresses a few problems around the split between core
Wayland and the wayland-demos repository.
1) Initially, we had one big repository with protocol code, sample
compositor and sample clients. We split that repository to make it
possible to implement the protocol without pulling in the sample/demo
code. At this point, the compositor is more than just a "demo" and
wayland-demos doesn't send the right message. The sample compositor
is a useful, self-contained project in it's own right, and we want to
move away from the "demos" label.
2) Another problem is that the wayland-demos compositor is often
called "the wayland compsitor", but it's really just one possible
compositor. Existing X11 compositors are expected to add Wayland
support and then gradually phase out/modularize the X11 support, for
example. Conversely, it's hard to talk about the wayland-demos
compositor specifically as opposed to, eg, the wayland protocol or a
wayland compositor in general.
We are also renaming the repo to weston, and the compositor
subdirectory to src/, to emphasize that the main "output" is the
compositor.
2012-01-03 19:29:47 +04:00
|
|
|
vt_func(struct weston_compositor *compositor, int event)
|
2011-05-06 23:15:37 +04:00
|
|
|
{
|
|
|
|
struct drm_compositor *ec = (struct drm_compositor *) compositor;
|
Rename wayland-compositor to weston
This rename addresses a few problems around the split between core
Wayland and the wayland-demos repository.
1) Initially, we had one big repository with protocol code, sample
compositor and sample clients. We split that repository to make it
possible to implement the protocol without pulling in the sample/demo
code. At this point, the compositor is more than just a "demo" and
wayland-demos doesn't send the right message. The sample compositor
is a useful, self-contained project in it's own right, and we want to
move away from the "demos" label.
2) Another problem is that the wayland-demos compositor is often
called "the wayland compsitor", but it's really just one possible
compositor. Existing X11 compositors are expected to add Wayland
support and then gradually phase out/modularize the X11 support, for
example. Conversely, it's hard to talk about the wayland-demos
compositor specifically as opposed to, eg, the wayland protocol or a
wayland compositor in general.
We are also renaming the repo to weston, and the compositor
subdirectory to src/, to emphasize that the main "output" is the
compositor.
2012-01-03 19:29:47 +04:00
|
|
|
struct weston_output *output;
|
2012-05-16 21:45:18 +04:00
|
|
|
struct weston_seat *seat;
|
2012-02-24 06:45:32 +04:00
|
|
|
struct drm_sprite *sprite;
|
|
|
|
struct drm_output *drm_output;
|
2011-05-06 23:15:37 +04:00
|
|
|
|
|
|
|
switch (event) {
|
|
|
|
case TTY_ENTER_VT:
|
|
|
|
compositor->focus = 1;
|
2012-01-30 17:04:04 +04:00
|
|
|
if (weston_launcher_drm_set_master(&ec->base, ec->drm.fd, 1)) {
|
2012-06-07 20:01:59 +04:00
|
|
|
weston_log("failed to set master: %m\n");
|
2012-01-16 19:52:52 +04:00
|
|
|
wl_display_terminate(compositor->wl_display);
|
|
|
|
}
|
2011-12-02 15:07:27 +04:00
|
|
|
compositor->state = ec->prev_state;
|
2012-01-18 20:48:46 +04:00
|
|
|
drm_compositor_set_modes(ec);
|
Rename wayland-compositor to weston
This rename addresses a few problems around the split between core
Wayland and the wayland-demos repository.
1) Initially, we had one big repository with protocol code, sample
compositor and sample clients. We split that repository to make it
possible to implement the protocol without pulling in the sample/demo
code. At this point, the compositor is more than just a "demo" and
wayland-demos doesn't send the right message. The sample compositor
is a useful, self-contained project in it's own right, and we want to
move away from the "demos" label.
2) Another problem is that the wayland-demos compositor is often
called "the wayland compsitor", but it's really just one possible
compositor. Existing X11 compositors are expected to add Wayland
support and then gradually phase out/modularize the X11 support, for
example. Conversely, it's hard to talk about the wayland-demos
compositor specifically as opposed to, eg, the wayland protocol or a
wayland compositor in general.
We are also renaming the repo to weston, and the compositor
subdirectory to src/, to emphasize that the main "output" is the
compositor.
2012-01-03 19:29:47 +04:00
|
|
|
weston_compositor_damage_all(compositor);
|
2012-05-16 21:45:18 +04:00
|
|
|
wl_list_for_each(seat, &compositor->seat_list, link) {
|
|
|
|
evdev_add_devices(ec->udev, seat);
|
|
|
|
evdev_enable_udev_monitor(ec->udev, seat);
|
2012-04-09 20:14:58 +04:00
|
|
|
}
|
2011-05-06 23:15:37 +04:00
|
|
|
break;
|
|
|
|
case TTY_LEAVE_VT:
|
2012-05-16 21:45:18 +04:00
|
|
|
wl_list_for_each(seat, &compositor->seat_list, link) {
|
|
|
|
evdev_disable_udev_monitor(seat);
|
|
|
|
evdev_remove_devices(seat);
|
2012-04-10 08:08:45 +04:00
|
|
|
}
|
|
|
|
|
2011-05-06 23:15:37 +04:00
|
|
|
compositor->focus = 0;
|
2011-12-02 15:07:27 +04:00
|
|
|
ec->prev_state = compositor->state;
|
Rename wayland-compositor to weston
This rename addresses a few problems around the split between core
Wayland and the wayland-demos repository.
1) Initially, we had one big repository with protocol code, sample
compositor and sample clients. We split that repository to make it
possible to implement the protocol without pulling in the sample/demo
code. At this point, the compositor is more than just a "demo" and
wayland-demos doesn't send the right message. The sample compositor
is a useful, self-contained project in it's own right, and we want to
move away from the "demos" label.
2) Another problem is that the wayland-demos compositor is often
called "the wayland compsitor", but it's really just one possible
compositor. Existing X11 compositors are expected to add Wayland
support and then gradually phase out/modularize the X11 support, for
example. Conversely, it's hard to talk about the wayland-demos
compositor specifically as opposed to, eg, the wayland protocol or a
wayland compositor in general.
We are also renaming the repo to weston, and the compositor
subdirectory to src/, to emphasize that the main "output" is the
compositor.
2012-01-03 19:29:47 +04:00
|
|
|
compositor->state = WESTON_COMPOSITOR_SLEEPING;
|
2011-05-06 23:38:28 +04:00
|
|
|
|
2012-01-18 20:50:31 +04:00
|
|
|
/* If we have a repaint scheduled (either from a
|
|
|
|
* pending pageflip or the idle handler), make sure we
|
|
|
|
* cancel that so we don't try to pageflip when we're
|
|
|
|
* vt switched away. The SLEEPING state will prevent
|
|
|
|
* further attemps at repainting. When we switch
|
|
|
|
* back, we schedule a repaint, which will process
|
|
|
|
* pending frame callbacks. */
|
|
|
|
|
|
|
|
wl_list_for_each(output, &ec->base.output_list, link) {
|
|
|
|
output->repaint_needed = 0;
|
|
|
|
drm_output_set_cursor(output, NULL);
|
|
|
|
}
|
|
|
|
|
2012-02-24 06:45:32 +04:00
|
|
|
drm_output = container_of(ec->base.output_list.next,
|
|
|
|
struct drm_output, base.link);
|
|
|
|
|
|
|
|
wl_list_for_each(sprite, &ec->sprite_list, link)
|
|
|
|
drmModeSetPlane(ec->drm.fd,
|
|
|
|
sprite->plane_id,
|
|
|
|
drm_output->crtc_id, 0, 0,
|
|
|
|
0, 0, 0, 0, 0, 0, 0, 0);
|
|
|
|
|
2012-01-30 17:04:04 +04:00
|
|
|
if (weston_launcher_drm_set_master(&ec->base, ec->drm.fd, 0) < 0)
|
2012-06-07 20:01:59 +04:00
|
|
|
weston_log("failed to drop master: %m\n");
|
2012-01-16 19:52:52 +04:00
|
|
|
|
2011-05-06 23:15:37 +04:00
|
|
|
break;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2012-04-10 08:11:50 +04:00
|
|
|
static void
|
2012-05-30 19:31:58 +04:00
|
|
|
switch_vt_binding(struct wl_seat *seat, uint32_t time, uint32_t key, void *data)
|
2012-04-10 08:11:50 +04:00
|
|
|
{
|
|
|
|
struct drm_compositor *ec = data;
|
|
|
|
|
2012-05-30 19:31:58 +04:00
|
|
|
tty_activate_vt(ec->tty, key - KEY_F1 + 1);
|
2012-04-10 08:11:50 +04:00
|
|
|
}
|
|
|
|
|
2011-07-16 05:28:38 +04:00
|
|
|
static const char default_seat[] = "seat0";
|
|
|
|
|
Rename wayland-compositor to weston
This rename addresses a few problems around the split between core
Wayland and the wayland-demos repository.
1) Initially, we had one big repository with protocol code, sample
compositor and sample clients. We split that repository to make it
possible to implement the protocol without pulling in the sample/demo
code. At this point, the compositor is more than just a "demo" and
wayland-demos doesn't send the right message. The sample compositor
is a useful, self-contained project in it's own right, and we want to
move away from the "demos" label.
2) Another problem is that the wayland-demos compositor is often
called "the wayland compsitor", but it's really just one possible
compositor. Existing X11 compositors are expected to add Wayland
support and then gradually phase out/modularize the X11 support, for
example. Conversely, it's hard to talk about the wayland-demos
compositor specifically as opposed to, eg, the wayland protocol or a
wayland compositor in general.
We are also renaming the repo to weston, and the compositor
subdirectory to src/, to emphasize that the main "output" is the
compositor.
2012-01-03 19:29:47 +04:00
|
|
|
static struct weston_compositor *
|
2011-07-16 05:28:38 +04:00
|
|
|
drm_compositor_create(struct wl_display *display,
|
2012-06-01 19:11:10 +04:00
|
|
|
int connector, const char *seat, int tty,
|
2012-06-01 19:14:02 +04:00
|
|
|
int argc, char *argv[], const char *config_file)
|
2010-06-11 20:56:24 +04:00
|
|
|
{
|
2010-06-14 19:54:00 +04:00
|
|
|
struct drm_compositor *ec;
|
2010-06-11 20:56:24 +04:00
|
|
|
struct udev_enumerate *e;
|
2011-08-30 13:38:26 +04:00
|
|
|
struct udev_list_entry *entry;
|
2011-07-16 05:28:38 +04:00
|
|
|
struct udev_device *device, *drm_device;
|
|
|
|
const char *path, *device_seat;
|
2010-06-11 20:56:24 +04:00
|
|
|
struct wl_event_loop *loop;
|
2012-04-10 08:11:50 +04:00
|
|
|
uint32_t key;
|
2010-06-11 20:56:24 +04:00
|
|
|
|
2012-06-09 00:45:33 +04:00
|
|
|
weston_log("initializing drm backend\n");
|
|
|
|
|
2010-06-14 19:54:00 +04:00
|
|
|
ec = malloc(sizeof *ec);
|
|
|
|
if (ec == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
memset(ec, 0, sizeof *ec);
|
2010-06-11 20:56:24 +04:00
|
|
|
ec->udev = udev_new();
|
|
|
|
if (ec->udev == NULL) {
|
2012-06-07 20:01:59 +04:00
|
|
|
weston_log("failed to initialize udev context\n");
|
2010-06-14 19:54:00 +04:00
|
|
|
return NULL;
|
2010-06-11 20:56:24 +04:00
|
|
|
}
|
|
|
|
|
2012-01-15 23:29:09 +04:00
|
|
|
ec->base.wl_display = display;
|
|
|
|
ec->tty = tty_create(&ec->base, vt_func, tty);
|
|
|
|
if (!ec->tty) {
|
2012-06-07 20:01:59 +04:00
|
|
|
weston_log("failed to initialize tty\n");
|
2012-01-15 23:29:09 +04:00
|
|
|
free(ec);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2010-06-11 20:56:24 +04:00
|
|
|
e = udev_enumerate_new(ec->udev);
|
2010-06-14 19:54:00 +04:00
|
|
|
udev_enumerate_add_match_subsystem(e, "drm");
|
2011-10-07 10:23:22 +04:00
|
|
|
udev_enumerate_add_match_sysname(e, "card[0-9]*");
|
2011-07-16 05:28:38 +04:00
|
|
|
|
2011-08-30 13:38:26 +04:00
|
|
|
udev_enumerate_scan_devices(e);
|
2011-07-16 05:28:38 +04:00
|
|
|
drm_device = NULL;
|
2011-08-30 13:38:26 +04:00
|
|
|
udev_list_entry_foreach(entry, udev_enumerate_get_list_entry(e)) {
|
2010-06-11 20:56:24 +04:00
|
|
|
path = udev_list_entry_get_name(entry);
|
|
|
|
device = udev_device_new_from_syspath(ec->udev, path);
|
2011-08-30 13:38:26 +04:00
|
|
|
device_seat =
|
2011-07-16 05:28:38 +04:00
|
|
|
udev_device_get_property_value(device, "ID_SEAT");
|
|
|
|
if (!device_seat)
|
|
|
|
device_seat = default_seat;
|
|
|
|
if (strcmp(device_seat, seat) == 0) {
|
|
|
|
drm_device = device;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
udev_device_unref(device);
|
2010-06-11 20:56:24 +04:00
|
|
|
}
|
2011-07-16 05:28:38 +04:00
|
|
|
|
|
|
|
if (drm_device == NULL) {
|
2012-06-07 20:01:59 +04:00
|
|
|
weston_log("no drm device found\n");
|
2010-06-14 19:54:00 +04:00
|
|
|
return NULL;
|
|
|
|
}
|
2010-06-11 20:56:24 +04:00
|
|
|
|
2011-07-16 05:28:38 +04:00
|
|
|
if (init_egl(ec, drm_device) < 0) {
|
2012-06-07 20:01:59 +04:00
|
|
|
weston_log("failed to initialize egl\n");
|
2010-06-14 19:54:00 +04:00
|
|
|
return NULL;
|
2010-06-11 20:56:24 +04:00
|
|
|
}
|
2011-01-15 00:20:21 +03:00
|
|
|
|
|
|
|
ec->base.destroy = drm_destroy;
|
2011-04-20 13:02:58 +04:00
|
|
|
|
2011-01-15 00:20:21 +03:00
|
|
|
ec->base.focus = 1;
|
|
|
|
|
Rename wayland-compositor to weston
This rename addresses a few problems around the split between core
Wayland and the wayland-demos repository.
1) Initially, we had one big repository with protocol code, sample
compositor and sample clients. We split that repository to make it
possible to implement the protocol without pulling in the sample/demo
code. At this point, the compositor is more than just a "demo" and
wayland-demos doesn't send the right message. The sample compositor
is a useful, self-contained project in it's own right, and we want to
move away from the "demos" label.
2) Another problem is that the wayland-demos compositor is often
called "the wayland compsitor", but it's really just one possible
compositor. Existing X11 compositors are expected to add Wayland
support and then gradually phase out/modularize the X11 support, for
example. Conversely, it's hard to talk about the wayland-demos
compositor specifically as opposed to, eg, the wayland protocol or a
wayland compositor in general.
We are also renaming the repo to weston, and the compositor
subdirectory to src/, to emphasize that the main "output" is the
compositor.
2012-01-03 19:29:47 +04:00
|
|
|
ec->prev_state = WESTON_COMPOSITOR_ACTIVE;
|
2011-12-02 15:07:27 +04:00
|
|
|
|
2011-04-30 00:14:54 +04:00
|
|
|
/* Can't init base class until we have a current egl context */
|
2012-06-01 19:14:02 +04:00
|
|
|
if (weston_compositor_init(&ec->base, display, argc, argv,
|
|
|
|
config_file) < 0)
|
2011-04-30 00:14:54 +04:00
|
|
|
return NULL;
|
|
|
|
|
2012-04-10 08:11:50 +04:00
|
|
|
for (key = KEY_F1; key < KEY_F9; key++)
|
2012-05-30 19:31:58 +04:00
|
|
|
weston_compositor_add_key_binding(&ec->base, key,
|
|
|
|
MODIFIER_CTRL | MODIFIER_ALT,
|
|
|
|
switch_vt_binding, ec);
|
2012-04-10 08:11:50 +04:00
|
|
|
|
2012-02-23 18:45:49 +04:00
|
|
|
wl_list_init(&ec->sprite_list);
|
|
|
|
create_sprites(ec);
|
|
|
|
|
2012-02-29 21:53:50 +04:00
|
|
|
if (create_outputs(ec, connector, drm_device) < 0) {
|
2012-06-07 20:01:59 +04:00
|
|
|
weston_log("failed to create output for %s\n", path);
|
2010-06-14 19:54:00 +04:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2012-02-29 21:53:50 +04:00
|
|
|
udev_device_unref(drm_device);
|
2011-10-07 10:27:26 +04:00
|
|
|
udev_enumerate_unref(e);
|
|
|
|
path = NULL;
|
|
|
|
|
2011-12-19 03:14:03 +04:00
|
|
|
evdev_input_create(&ec->base, ec->udev, seat);
|
2010-06-11 20:56:24 +04:00
|
|
|
|
2010-06-14 19:54:00 +04:00
|
|
|
loop = wl_display_get_event_loop(ec->base.wl_display);
|
|
|
|
ec->drm_source =
|
2011-03-02 13:14:59 +03:00
|
|
|
wl_event_loop_add_fd(loop, ec->drm.fd,
|
2010-06-14 19:54:00 +04:00
|
|
|
WL_EVENT_READABLE, on_drm_input, ec);
|
2010-06-11 20:56:24 +04:00
|
|
|
|
2011-03-15 17:08:41 +03:00
|
|
|
ec->udev_monitor = udev_monitor_new_from_netlink(ec->udev, "udev");
|
|
|
|
if (ec->udev_monitor == NULL) {
|
2012-06-07 20:01:59 +04:00
|
|
|
weston_log("failed to intialize udev monitor\n");
|
2011-03-15 17:08:41 +03:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
udev_monitor_filter_add_match_subsystem_devtype(ec->udev_monitor,
|
|
|
|
"drm", NULL);
|
|
|
|
ec->udev_drm_source =
|
2011-08-30 13:38:26 +04:00
|
|
|
wl_event_loop_add_fd(loop,
|
|
|
|
udev_monitor_get_fd(ec->udev_monitor),
|
2011-03-15 17:08:41 +03:00
|
|
|
WL_EVENT_READABLE, udev_drm_event, ec);
|
|
|
|
|
|
|
|
if (udev_monitor_enable_receiving(ec->udev_monitor) < 0) {
|
2012-06-07 20:01:59 +04:00
|
|
|
weston_log("failed to enable udev-monitor receiving\n");
|
2011-03-15 17:08:41 +03:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2010-06-14 19:54:00 +04:00
|
|
|
return &ec->base;
|
2010-06-11 20:56:24 +04:00
|
|
|
}
|
2011-05-03 06:09:20 +04:00
|
|
|
|
Rename wayland-compositor to weston
This rename addresses a few problems around the split between core
Wayland and the wayland-demos repository.
1) Initially, we had one big repository with protocol code, sample
compositor and sample clients. We split that repository to make it
possible to implement the protocol without pulling in the sample/demo
code. At this point, the compositor is more than just a "demo" and
wayland-demos doesn't send the right message. The sample compositor
is a useful, self-contained project in it's own right, and we want to
move away from the "demos" label.
2) Another problem is that the wayland-demos compositor is often
called "the wayland compsitor", but it's really just one possible
compositor. Existing X11 compositors are expected to add Wayland
support and then gradually phase out/modularize the X11 support, for
example. Conversely, it's hard to talk about the wayland-demos
compositor specifically as opposed to, eg, the wayland protocol or a
wayland compositor in general.
We are also renaming the repo to weston, and the compositor
subdirectory to src/, to emphasize that the main "output" is the
compositor.
2012-01-03 19:29:47 +04:00
|
|
|
WL_EXPORT struct weston_compositor *
|
2012-06-01 19:14:02 +04:00
|
|
|
backend_init(struct wl_display *display, int argc, char *argv[],
|
|
|
|
const char *config_file)
|
2011-05-03 06:09:20 +04:00
|
|
|
{
|
2012-03-12 05:05:57 +04:00
|
|
|
int connector = 0, tty = 0;
|
|
|
|
const char *seat = default_seat;
|
|
|
|
|
|
|
|
const struct weston_option drm_options[] = {
|
|
|
|
{ WESTON_OPTION_INTEGER, "connector", 0, &connector },
|
|
|
|
{ WESTON_OPTION_STRING, "seat", 0, &seat },
|
|
|
|
{ WESTON_OPTION_INTEGER, "tty", 0, &tty },
|
|
|
|
};
|
|
|
|
|
|
|
|
parse_options(drm_options, ARRAY_LENGTH(drm_options), argc, argv);
|
2011-05-03 06:09:20 +04:00
|
|
|
|
2012-06-01 19:14:02 +04:00
|
|
|
return drm_compositor_create(display, connector, seat, tty, argc, argv,
|
|
|
|
config_file);
|
2011-05-03 06:09:20 +04:00
|
|
|
}
|