/* * Copyright © 2008-2011 Kristian Høgsberg * Copyright © 2011 Intel Corporation * * 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. * * 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. */ #define _GNU_SOURCE #include #include #include #include #include #include #include #include #include #include #include #include #include #include "compositor.h" #include "evdev.h" #include "launcher-util.h" static int option_current_mode = 0; static char *output_name; static char *output_mode; static struct wl_list configured_output_list; enum output_config { OUTPUT_CONFIG_INVALID = 0, OUTPUT_CONFIG_OFF, OUTPUT_CONFIG_PREFERRED, OUTPUT_CONFIG_CURRENT, OUTPUT_CONFIG_MODE, OUTPUT_CONFIG_MODELINE }; struct drm_configured_output { char *name; char *mode; int32_t width, height; drmModeModeInfo crtc_mode; enum output_config config; struct wl_list link; }; struct drm_compositor { struct weston_compositor base; struct udev *udev; struct wl_event_source *drm_source; struct udev_monitor *udev_monitor; struct wl_event_source *udev_drm_source; struct { int id; int fd; } drm; struct gbm_device *gbm; uint32_t *crtcs; int num_crtcs; uint32_t crtc_allocator; uint32_t connector_allocator; struct tty *tty; struct gbm_surface *dummy_surface; EGLSurface dummy_egl_surface; struct wl_list sprite_list; int sprites_are_broken; uint32_t prev_state; }; struct drm_mode { struct weston_mode base; drmModeModeInfo mode_info; }; 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; }; struct drm_output { struct weston_output base; char *name; uint32_t crtc_id; uint32_t connector_id; drmModeCrtcPtr original_crtc; int vblank_pending; int page_flip_pending; struct gbm_surface *surface; struct gbm_bo *cursor_bo[2]; struct weston_plane cursor_plane; struct weston_plane fb_plane; struct weston_surface *cursor_surface; int current_cursor; EGLSurface egl_surface; struct drm_fb *current, *next; struct backlight *backlight; }; /* * 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 weston_plane plane; struct drm_output *output; 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[]; }; struct drm_seat { struct weston_seat base; struct wl_list devices_list; struct udev_monitor *udev_monitor; struct wl_event_source *udev_monitor_source; char *seat_id; }; static void drm_output_set_cursor(struct drm_output *output); static void drm_disable_unused_sprites(struct weston_output *output_base); 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; } 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_stride(bo); handle = gbm_bo_get_handle(bo).u32; ret = drmModeAddFB(compositor->drm.fd, width, height, 24, 32, stride, handle, &fb->fb_id); if (ret) { weston_log("failed to create kms fb: %m\n"); 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)) weston_output_schedule_repaint(&fb->output->base); } static struct weston_plane * drm_output_prepare_scanout_surface(struct weston_output *_output, struct weston_surface *es) { struct drm_output *output = (struct drm_output *) _output; struct drm_compositor *c = (struct drm_compositor *) output->base.compositor; struct gbm_bo *bo; if (es->geometry.x != output->base.x || es->geometry.y != output->base.y || es->geometry.width != output->base.current->width || es->geometry.height != output->base.current->height || es->transform.enabled || es->buffer == NULL) return NULL; bo = gbm_bo_import(c->gbm, GBM_BO_IMPORT_WL_BUFFER, es->buffer, GBM_BO_USE_SCANOUT); /* 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 NULL; } output->next = drm_fb_get_from_bo(bo, output); if (!output->next) { gbm_bo_destroy(bo); return NULL; } 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; wl_signal_add(&output->next->buffer->resource.destroy_signal, &output->next->buffer_destroy_listener); return &output->fb_plane; } 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; struct gbm_bo *bo; if (!eglMakeCurrent(compositor->base.egl_display, output->egl_surface, output->egl_surface, compositor->base.egl_context)) { weston_log("failed to make current\n"); return; } wl_list_for_each_reverse(surface, &compositor->base.surface_list, link) if (surface->plane == &compositor->base.primary_plane) weston_surface_draw(surface, &output->base, damage); wl_signal_emit(&output->base.frame_signal, output); eglSwapBuffers(compositor->base.egl_display, output->egl_surface); bo = gbm_surface_lock_front_buffer(output->surface); if (!bo) { weston_log("failed to lock front buffer: %m\n"); return; } output->next = drm_fb_get_from_bo(bo, output); if (!output->next) { weston_log("failed to get drm_fb for bo\n"); gbm_surface_release_buffer(output->surface, bo); return; } } static void drm_output_repaint(struct weston_output *output_base, pixman_region32_t *damage) { struct drm_output *output = (struct drm_output *) output_base; struct drm_compositor *compositor = (struct drm_compositor *) output->base.compositor; struct drm_sprite *s; struct drm_mode *mode; int ret = 0; if (!output->next) drm_output_render(output, damage); if (!output->next) return; mode = container_of(output->base.current, struct drm_mode, base); if (!output->current) { ret = drmModeSetCrtc(compositor->drm.fd, output->crtc_id, output->next->fb_id, 0, 0, &output->connector_id, 1, &mode->mode_info); if (ret) { weston_log("set mode failed: %m\n"); return; } } if (drmModePageFlip(compositor->drm.fd, output->crtc_id, output->next->fb_id, DRM_MODE_PAGE_FLIP_EVENT, output) < 0) { weston_log("queueing pageflip failed: %m\n"); return; } output->page_flip_pending = 1; drm_output_set_cursor(output); /* * 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) weston_log("setplane failed: %d: %s\n", 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) { weston_log("vblank event request failed: %d: %s\n", ret, strerror(errno)); } s->output = output; output->vblank_pending = 1; } drm_disable_unused_sprites(&output->base); return; } 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; struct drm_output *output = s->output; uint32_t msecs; output->vblank_pending = 0; 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); wl_signal_add(&s->pending_surface->buffer->resource.destroy_signal, &s->destroy_listener); s->surface = s->pending_surface; s->pending_surface = NULL; s->fb_id = s->pending_fb_id; s->pending_fb_id = 0; } if (!output->page_flip_pending) { msecs = sec * 1000 + usec / 1000; weston_output_finish_frame(&output->base, msecs); } } static void page_flip_handler(int fd, unsigned int frame, unsigned int sec, unsigned int usec, void *data) { struct drm_output *output = (struct drm_output *) data; uint32_t msecs; output->page_flip_pending = 0; 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 = output->next; output->next = NULL; if (!output->vblank_pending) { msecs = sec * 1000 + usec / 1000; weston_output_finish_frame(&output->base, msecs); } } static int drm_surface_format_supported(struct drm_sprite *s, uint32_t format) { uint32_t i; 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) { struct weston_matrix *matrix = &es->transform.matrix; int i; if (!es->transform.enabled) return 1; for (i = 0; i < 16; i++) { switch (i) { case 10: case 15: if (matrix->d[i] != 1.0) return 0; break; case 0: case 5: case 12: case 13: break; default: if (matrix->d[i] != 0.0) return 0; break; } } 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) weston_log("failed to disable plane: %d: %s\n", ret, strerror(errno)); drmModeRmFB(c->drm.fd, s->fb_id); if (s->surface) { s->surface = NULL; wl_list_remove(&s->destroy_listener.link); } assert(!s->pending_surface); 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 struct weston_plane * drm_output_prepare_overlay_surface(struct weston_output *output_base, struct weston_surface *es) { 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; wl_fixed_t sx1, sy1, sx2, sy2; if (c->sprites_are_broken) return NULL; if (es->output_mask != (1u << output_base->id)) return NULL; if (es->buffer == NULL) return NULL; if (!drm_surface_transform_supported(es)) return NULL; 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 NULL; bo = gbm_bo_import(c->gbm, GBM_BO_IMPORT_WL_BUFFER, es->buffer, GBM_BO_USE_SCANOUT); if (!bo) return NULL; format = gbm_bo_get_format(bo); handle = gbm_bo_get_handle(bo).s32; stride = gbm_bo_get_stride(bo); gbm_bo_destroy(bo); if (!drm_surface_format_supported(s, format)) return NULL; if (!handle) return NULL; 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) { weston_log("addfb2 failed: %d\n", ret); c->sprites_are_broken = 1; return NULL; } s->pending_fb_id = fb_id; s->pending_surface = es; es->buffer->busy_count++; box = pixman_region32_extents(&es->transform.boundingbox); s->plane.x = box->x1; s->plane.y = box->y1; /* * 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); box = pixman_region32_extents(&src_rect); weston_surface_from_global_fixed(es, wl_fixed_from_int(box->x1), wl_fixed_from_int(box->y1), &sx1, &sy1); weston_surface_from_global_fixed(es, wl_fixed_from_int(box->x2), wl_fixed_from_int(box->y2), &sx2, &sy2); if (sx1 < 0) sx1 = 0; if (sy1 < 0) sy1 = 0; if (sx2 > wl_fixed_from_int(es->geometry.width)) sx2 = wl_fixed_from_int(es->geometry.width); if (sy2 > wl_fixed_from_int(es->geometry.height)) sy2 = wl_fixed_from_int(es->geometry.height); s->src_x = sx1 << 8; s->src_y = sy1 << 8; s->src_w = (sx2 - sx1) << 8; s->src_h = (sy2 - sy1) << 8; pixman_region32_fini(&src_rect); wl_signal_add(&es->buffer->resource.destroy_signal, &s->pending_destroy_listener); return &s->plane; } static struct weston_plane * drm_output_prepare_cursor_surface(struct weston_output *output_base, struct weston_surface *es) { struct drm_output *output = (struct drm_output *) output_base; if (output->cursor_surface) return NULL; if (es->output_mask != (1u << output_base->id)) return NULL; if (es->buffer == NULL || !wl_buffer_is_shm(es->buffer) || es->geometry.width > 64 || es->geometry.height > 64) return NULL; output->cursor_surface = es; return &output->cursor_plane; } static void drm_output_set_cursor(struct drm_output *output) { struct weston_surface *es = output->cursor_surface; struct drm_compositor *c = (struct drm_compositor *) output->base.compositor; EGLint handle, stride; struct gbm_bo *bo; uint32_t buf[64 * 64]; unsigned char *s; int i, x, y; output->cursor_surface = NULL; if (es == NULL) { drmModeSetCursor(c->drm.fd, output->crtc_id, 0, 0, 0); return; } if (es->buffer && pixman_region32_not_empty(&output->cursor_plane.damage)) { pixman_region32_fini(&output->cursor_plane.damage); pixman_region32_init(&output->cursor_plane.damage); output->current_cursor ^= 1; bo = output->cursor_bo[output->current_cursor]; memset(buf, 0, sizeof buf); stride = wl_shm_buffer_get_stride(es->buffer); s = wl_shm_buffer_get_data(es->buffer); for (i = 0; i < es->geometry.height; i++) memcpy(buf + i * 64, s + i * stride, es->geometry.width * 4); if (gbm_bo_write(bo, buf, sizeof buf) < 0) weston_log("failed update cursor: %n\n"); handle = gbm_bo_get_handle(bo).s32; if (drmModeSetCursor(c->drm.fd, output->crtc_id, handle, 64, 64)) weston_log("failed to set cursor: %n\n"); } x = es->geometry.x - output->base.x; y = es->geometry.y - output->base.y; if (output->cursor_plane.x != x || output->cursor_plane.y != y) { if (drmModeMoveCursor(c->drm.fd, output->crtc_id, x, y)) weston_log("failed to move cursor: %m\n"); output->cursor_plane.x = x; output->cursor_plane.y = y; } } static void drm_assign_planes(struct weston_output *output) { struct drm_compositor *c = (struct drm_compositor *) output->compositor; struct weston_surface *es, *next; pixman_region32_t overlap, surface_overlap; struct weston_plane *primary, *next_plane; /* * 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. */ pixman_region32_init(&overlap); primary = &c->base.primary_plane; wl_list_for_each_safe(es, next, &c->base.surface_list, link) { pixman_region32_init(&surface_overlap); pixman_region32_intersect(&surface_overlap, &overlap, &es->transform.boundingbox); next_plane = NULL; if (pixman_region32_not_empty(&surface_overlap)) next_plane = primary; if (next_plane == NULL) next_plane = drm_output_prepare_cursor_surface(output, es); if (next_plane == NULL) next_plane = drm_output_prepare_scanout_surface(output, es); if (next_plane == NULL) next_plane = drm_output_prepare_overlay_surface(output, es); if (next_plane == NULL) next_plane = primary; weston_surface_move_to_plane(es, next_plane); if (next_plane == primary) pixman_region32_union(&overlap, &overlap, &es->transform.boundingbox); pixman_region32_fini(&surface_overlap); } pixman_region32_fini(&overlap); } static void drm_output_destroy(struct weston_output *output_base) { struct drm_output *output = (struct drm_output *) output_base; struct drm_compositor *c = (struct drm_compositor *) output->base.compositor; drmModeCrtcPtr origcrtc = output->original_crtc; if (output->backlight) backlight_destroy(output->backlight); /* Turn off hardware cursor */ drmModeSetCursor(c->drm.fd, output->crtc_id, 0, 0, 0); /* Restore original CRTC state */ drmModeSetCrtc(c->drm.fd, origcrtc->crtc_id, origcrtc->buffer_id, origcrtc->x, origcrtc->y, &output->connector_id, 1, &origcrtc->mode); drmModeFreeCrtc(origcrtc); c->crtc_allocator &= ~(1 << output->crtc_id); c->connector_allocator &= ~(1 << output->connector_id); eglDestroySurface(c->base.egl_display, output->egl_surface); gbm_surface_destroy(output->surface); weston_plane_release(&output->fb_plane); weston_plane_release(&output->cursor_plane); weston_output_destroy(&output->base); wl_list_remove(&output->base.link); free(output->name); free(output); } 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) { weston_log("output is NULL.\n"); return -1; } if (mode == NULL) { weston_log("mode is NULL.\n"); return -1; } ec = (struct drm_compositor *)output_base->compositor; output = (struct drm_output *)output_base; drm_mode = choose_mode (output, mode); if (!drm_mode) { weston_log("%s, invalid resolution:%dx%d\n", __func__, mode->width, mode->height); 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, output->current->fb_id, 0, 0, &output->connector_id, 1, &drm_mode->mode_info); if (ret) { weston_log("failed to set mode (%dx%d) %u Hz\n", drm_mode->base.width, drm_mode->base.height, drm_mode->base.refresh / 1000); 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) { weston_log("failed to create gbm surface\n"); return -1; } egl_surface = eglCreateWindowSurface(ec->base.egl_display, ec->base.egl_config, surface, NULL); if (egl_surface == EGL_NO_SURFACE) { weston_log("failed to create egl surface\n"); goto err; } ret = drmModeSetCrtc(ec->drm.fd, output->crtc_id, output->current->fb_id, 0, 0, &output->connector_id, 1, &drm_mode->mode_info); if (ret) { weston_log("failed to set mode\n"); goto err; } /* reset rendering stuff. */ 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; eglDestroySurface(ec->base.egl_display, output->egl_surface); 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: eglDestroySurface(ec->base.egl_display, egl_surface); gbm_surface_destroy(surface); return -1; } static int 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; evctx.vblank_handler = vblank_handler; drmHandleEvent(fd, &evctx); return 1; } static int init_egl(struct drm_compositor *ec, struct udev_device *device) { EGLint major, minor, n; const char *filename, *sysnum; int fd; static const EGLint context_attribs[] = { EGL_CONTEXT_CLIENT_VERSION, 2, EGL_NONE }; 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 }; sysnum = udev_device_get_sysnum(device); if (sysnum) ec->drm.id = atoi(sysnum); if (!sysnum || ec->drm.id < 0) { weston_log("cannot get device sysnum\n"); return -1; } filename = udev_device_get_devnode(device); fd = open(filename, O_RDWR | O_CLOEXEC); if (fd < 0) { /* Probably permissions error */ weston_log("couldn't open %s, skipping\n", udev_device_get_devnode(device)); return -1; } weston_log("using %s\n", filename); ec->drm.fd = fd; ec->gbm = gbm_create_device(ec->drm.fd); ec->base.egl_display = eglGetDisplay(ec->gbm); if (ec->base.egl_display == NULL) { weston_log("failed to create display\n"); return -1; } if (!eglInitialize(ec->base.egl_display, &major, &minor)) { weston_log("failed to initialize display\n"); return -1; } if (!eglBindAPI(EGL_OPENGL_ES_API)) { weston_log("failed to bind api EGL_OPENGL_ES_API\n"); return -1; } if (!eglChooseConfig(ec->base.egl_display, config_attribs, &ec->base.egl_config, 1, &n) || n != 1) { weston_log("failed to choose config: %d\n", n); return -1; } ec->base.egl_context = eglCreateContext(ec->base.egl_display, ec->base.egl_config, EGL_NO_CONTEXT, context_attribs); if (ec->base.egl_context == NULL) { weston_log("failed to create context\n"); return -1; } ec->dummy_surface = gbm_surface_create(ec->gbm, 10, 10, GBM_FORMAT_XRGB8888, GBM_BO_USE_RENDERING); if (!ec->dummy_surface) { weston_log("failed to create dummy gbm surface\n"); return -1; } ec->dummy_egl_surface = eglCreateWindowSurface(ec->base.egl_display, ec->base.egl_config, ec->dummy_surface, NULL); if (ec->dummy_egl_surface == EGL_NO_SURFACE) { weston_log("failed to create egl surface\n"); return -1; } if (!eglMakeCurrent(ec->base.egl_display, ec->dummy_egl_surface, ec->dummy_egl_surface, ec->base.egl_context)) { weston_log("failed to make context current\n"); return -1; } return 0; } static int drm_output_add_mode(struct drm_output *output, drmModeModeInfo *info) { struct drm_mode *mode; uint64_t refresh; mode = malloc(sizeof *mode); if (mode == NULL) return -1; mode->base.flags = 0; mode->base.width = info->hdisplay; mode->base.height = info->vdisplay; /* 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; mode->mode_info = *info; if (info->type & DRM_MODE_TYPE_PREFERRED) mode->base.flags |= WL_OUTPUT_MODE_PREFERRED; 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; } } static void sprite_handle_buffer_destroy(struct wl_listener *listener, void *data) { struct drm_sprite *sprite = container_of(listener, struct drm_sprite, destroy_listener); struct drm_compositor *compositor = sprite->compositor; sprite->surface = NULL; drmModeRmFB(compositor->drm.fd, sprite->fb_id); sprite->fb_id = 0; } static void sprite_handle_pending_buffer_destroy(struct wl_listener *listener, void *data) { struct drm_sprite *sprite = container_of(listener, struct drm_sprite, pending_destroy_listener); struct drm_compositor *compositor = sprite->compositor; sprite->pending_surface = NULL; drmModeRmFB(compositor->drm.fd, sprite->pending_fb_id); sprite->pending_fb_id = 0; } /* returns a value between 0-255 range, where higher is brighter */ 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); /* convert it on a scale of 0 to 255 */ norm = (brightness * 255)/(max_brightness); return (uint32_t) norm; } /* values accepted are between 0-255 range */ 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; if (value > 255) return; max_brightness = backlight_get_max_brightness(output->backlight); /* get denormalized value */ new_brightness = (value * max_brightness) / 255; 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); } static const char *connector_type_names[] = { "None", "VGA", "DVI", "DVI", "DVI", "Composite", "TV", "LVDS", "CTV", "DIN", "DP", "HDMI", "HDMI", "TV", "eDP", }; static int find_crtc_for_connector(struct drm_compositor *ec, drmModeRes *resources, drmModeConnector *connector) { drmModeEncoder *encoder; uint32_t possible_crtcs; int i, j; for (j = 0; j < connector->count_encoders; j++) { encoder = drmModeGetEncoder(ec->drm.fd, connector->encoders[j]); if (encoder == NULL) { weston_log("Failed to get encoder.\n"); return -1; } possible_crtcs = encoder->possible_crtcs; drmModeFreeEncoder(encoder); for (i = 0; i < resources->count_crtcs; i++) { if (possible_crtcs & (1 << i) && !(ec->crtc_allocator & (1 << resources->crtcs[i]))) return i; } } return -1; } static int create_output_for_connector(struct drm_compositor *ec, drmModeRes *resources, drmModeConnector *connector, int x, int y, struct udev_device *drm_device) { struct drm_output *output; struct drm_mode *drm_mode, *next; struct weston_mode *m, *preferred, *current, *configured; struct drm_configured_output *o = NULL, *temp; drmModeEncoder *encoder; drmModeModeInfo crtc_mode; drmModeCrtc *crtc; int i, ret; char name[32]; const char *type_name; i = find_crtc_for_connector(ec, resources, connector); if (i < 0) { weston_log("No usable crtc/encoder pair for connector.\n"); return -1; } output = malloc(sizeof *output); if (output == NULL) return -1; memset(output, 0, sizeof *output); output->base.subpixel = drm_subpixel_to_wayland(connector->subpixel); output->base.make = "unknown"; output->base.model = "unknown"; wl_list_init(&output->base.mode_list); if (connector->connector_type < ARRAY_LENGTH(connector_type_names)) type_name = connector_type_names[connector->connector_type]; else type_name = "UNKNOWN"; snprintf(name, 32, "%s%d", type_name, connector->connector_type_id); output->name = strdup(name); output->crtc_id = resources->crtcs[i]; ec->crtc_allocator |= (1 << output->crtc_id); output->connector_id = connector->connector_id; ec->connector_allocator |= (1 << output->connector_id); output->original_crtc = drmModeGetCrtc(ec->drm.fd, output->crtc_id); /* Get the current mode on the crtc that's currently driving * this connector. */ encoder = drmModeGetEncoder(ec->drm.fd, connector->encoder_id); memset(&crtc_mode, 0, sizeof crtc_mode); if (encoder != NULL) { crtc = drmModeGetCrtc(ec->drm.fd, encoder->crtc_id); drmModeFreeEncoder(encoder); if (crtc == NULL) goto err_free; if (crtc->mode_valid) crtc_mode = crtc->mode; drmModeFreeCrtc(crtc); } for (i = 0; i < connector->count_modes; i++) { ret = drm_output_add_mode(output, &connector->modes[i]); if (ret) goto err_free; } preferred = NULL; current = NULL; configured = NULL; wl_list_for_each(temp, &configured_output_list, link) { if (strcmp(temp->name, output->name) == 0) { weston_log("%s mode \"%s\" in config\n", temp->name, temp->mode); o = temp; break; } } if (o && strcmp("off", o->mode) == 0) { weston_log("Disabling output %s\n", o->name); drmModeSetCrtc(ec->drm.fd, output->crtc_id, 0, 0, 0, 0, 0, NULL); goto err_free; } wl_list_for_each(drm_mode, &output->base.mode_list, base.link) { if (o && o->width == drm_mode->base.width && o->height == drm_mode->base.height && o->config == OUTPUT_CONFIG_MODE) configured = &drm_mode->base; if (!memcmp(&crtc_mode, &drm_mode->mode_info, sizeof crtc_mode)) current = &drm_mode->base; if (drm_mode->base.flags & WL_OUTPUT_MODE_PREFERRED) preferred = &drm_mode->base; } if (o && o->config == OUTPUT_CONFIG_MODELINE) { ret = drm_output_add_mode(output, &o->crtc_mode); if (ret) goto err_free; configured = container_of(output->base.mode_list.prev, struct weston_mode, link); current = configured; } if (current == NULL && crtc_mode.clock != 0) { ret = drm_output_add_mode(output, &crtc_mode); if (ret) goto err_free; current = container_of(output->base.mode_list.prev, struct weston_mode, link); } if (o && o->config == OUTPUT_CONFIG_CURRENT) configured = current; if (option_current_mode && current) output->base.current = current; else if (configured) output->base.current = configured; else if (preferred) output->base.current = preferred; else if (current) output->base.current = current; if (output->base.current == NULL) { weston_log("no available modes for %s\n", output->name); goto err_free; } output->base.current->flags |= WL_OUTPUT_MODE_CURRENT; 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) { weston_log("failed to create gbm surface\n"); goto err_free; } output->egl_surface = eglCreateWindowSurface(ec->base.egl_display, ec->base.egl_config, output->surface, NULL); if (output->egl_surface == EGL_NO_SURFACE) { weston_log("failed to create egl surface\n"); goto err_surface; } 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); 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); } weston_output_init(&output->base, &ec->base, x, y, connector->mmWidth, connector->mmHeight, WL_OUTPUT_FLIPPED); wl_list_insert(ec->base.output_list.prev, &output->base.link); output->base.origin = output->base.current; output->base.repaint = drm_output_repaint; output->base.destroy = drm_output_destroy; output->base.assign_planes = drm_assign_planes; output->base.set_dpms = drm_set_dpms; output->base.switch_mode = drm_output_switch_mode; weston_plane_init(&output->cursor_plane, 0, 0); weston_plane_init(&output->fb_plane, 0, 0); weston_log("Output %s, (connector %d, crtc %d)\n", output->name, output->connector_id, output->crtc_id); wl_list_for_each(m, &output->base.mode_list, link) weston_log_continue(" mode %dx%d@%.1f%s%s%s\n", m->width, m->height, m->refresh / 1000.0, m->flags & WL_OUTPUT_MODE_PREFERRED ? ", preferred" : "", m->flags & WL_OUTPUT_MODE_CURRENT ? ", current" : "", connector->count_modes == 0 ? ", built-in" : ""); return 0; err_surface: gbm_surface_destroy(output->surface); 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->name); free(output); return -1; } static void create_sprites(struct drm_compositor *ec) { struct drm_sprite *sprite; drmModePlaneRes *plane_res; drmModePlane *plane; uint32_t i; plane_res = drmModeGetPlaneResources(ec->drm.fd); if (!plane_res) { weston_log("failed to get plane resources: %s\n", 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) { weston_log("%s: out of memory\n", __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; sprite->destroy_listener.notify = sprite_handle_buffer_destroy; sprite->pending_destroy_listener.notify = sprite_handle_pending_buffer_destroy; sprite->compositor = ec; sprite->count_formats = plane->count_formats; memcpy(sprite->formats, plane->formats, plane->count_formats * sizeof(plane->formats[0])); drmModeFreePlane(plane); weston_plane_init(&sprite->plane, 0, 0); wl_list_insert(&ec->sprite_list, &sprite->link); } free(plane_res->planes); free(plane_res); } 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); weston_plane_release(&sprite->plane); free(sprite); } } static int create_outputs(struct drm_compositor *ec, uint32_t option_connector, struct udev_device *drm_device) { drmModeConnector *connector; drmModeRes *resources; int i; int x = 0, y = 0; resources = drmModeGetResources(ec->drm.fd); if (!resources) { weston_log("drmModeGetResources failed\n"); return -1; } ec->crtcs = calloc(resources->count_crtcs, sizeof(uint32_t)); if (!ec->crtcs) { drmModeFreeResources(resources); return -1; } ec->num_crtcs = resources->count_crtcs; memcpy(ec->crtcs, resources->crtcs, sizeof(uint32_t) * ec->num_crtcs); for (i = 0; i < resources->count_connectors; i++) { connector = drmModeGetConnector(ec->drm.fd, resources->connectors[i]); if (connector == NULL) continue; if (connector->connection == DRM_MODE_CONNECTED && (option_connector == 0 || connector->connector_id == option_connector)) { if (create_output_for_connector(ec, resources, connector, x, y, drm_device) < 0) { drmModeFreeConnector(connector); continue; } x += container_of(ec->base.output_list.prev, struct weston_output, link)->current->width; } drmModeFreeConnector(connector); } if (wl_list_empty(&ec->base.output_list)) { weston_log("No currently active connector found.\n"); drmModeFreeResources(resources); return -1; } drmModeFreeResources(resources); return 0; } static void update_outputs(struct drm_compositor *ec, struct udev_device *drm_device) { 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) { weston_log("drmModeGetResources failed\n"); return; } /* collect new connects */ for (i = 0; i < resources->count_connectors; i++) { int connector_id = resources->connectors[i]; connector = drmModeGetConnector(ec->drm.fd, connector_id); if (connector == NULL) continue; if (connector->connection != DRM_MODE_CONNECTED) { drmModeFreeConnector(connector); continue; } connected |= (1 << connector_id); if (!(ec->connector_allocator & (1 << connector_id))) { struct weston_output *last = container_of(ec->base.output_list.prev, struct weston_output, link); /* XXX: not yet needed, we die with 0 outputs */ if (!wl_list_empty(&ec->base.output_list)) x = last->x + last->current->width; else x = 0; y = 0; create_output_for_connector(ec, resources, connector, x, y, drm_device); weston_log("connector %d connected\n", connector_id); } 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) { weston_output_move(&output->base, output->base.x - x_offset, output->base.y - y_offset); } if (disconnects & (1 << output->connector_id)) { disconnects &= ~(1 << output->connector_id); weston_log("connector %d disconnected\n", output->connector_id); x_offset += output->base.current->width; drm_output_destroy(&output->base); } } } /* FIXME: handle zero outputs, without terminating */ if (ec->connector_allocator == 0) wl_display_terminate(ec->base.wl_display); } static int udev_event_is_hotplug(struct drm_compositor *ec, struct udev_device *device) { const char *sysnum; const char *val; sysnum = udev_device_get_sysnum(device); if (!sysnum || atoi(sysnum) != ec->drm.id) return 0; val = udev_device_get_property_value(device, "HOTPLUG"); if (!val) return 0; return strcmp(val, "1") == 0; } static int 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); if (udev_event_is_hotplug(ec, event)) update_outputs(ec, event); udev_device_unref(event); return 1; } static void drm_restore(struct weston_compositor *ec) { struct drm_compositor *d = (struct drm_compositor *) ec; if (weston_launcher_drm_set_master(&d->base, d->drm.fd, 0) < 0) weston_log("failed to drop master: %m\n"); tty_reset(d->tty); } static const char default_seat[] = "seat0"; static void device_added(struct udev_device *udev_device, struct drm_seat *master) { struct weston_compositor *c; struct evdev_input_device *device; const char *devnode; const char *device_seat; int fd; device_seat = udev_device_get_property_value(udev_device, "ID_SEAT"); if (!device_seat) device_seat = default_seat; if (strcmp(device_seat, master->seat_id)) return; c = master->base.compositor; devnode = udev_device_get_devnode(udev_device); /* Use non-blocking mode so that we can loop on read on * evdev_input_device_data() until all events on the fd are * read. mtdev_get() also expects this. */ fd = weston_launcher_open(c, devnode, O_RDWR | O_NONBLOCK); if (fd < 0) { weston_log("opening input device '%s' failed.\n", devnode); return; } device = evdev_input_device_create(&master->base, devnode, fd); if (!device) { close(fd); weston_log("not using input device '%s'.\n", devnode); return; } wl_list_insert(master->devices_list.prev, &device->link); } static void evdev_add_devices(struct udev *udev, struct weston_seat *seat_base) { struct drm_seat *seat = (struct drm_seat *) seat_base; struct udev_enumerate *e; struct udev_list_entry *entry; struct udev_device *device; const char *path, *sysname; e = udev_enumerate_new(udev); udev_enumerate_add_match_subsystem(e, "input"); udev_enumerate_scan_devices(e); udev_list_entry_foreach(entry, udev_enumerate_get_list_entry(e)) { path = udev_list_entry_get_name(entry); device = udev_device_new_from_syspath(udev, path); sysname = udev_device_get_sysname(device); if (strncmp("event", sysname, 5) != 0) { udev_device_unref(device); continue; } device_added(device, seat); udev_device_unref(device); } udev_enumerate_unref(e); evdev_notify_keyboard_focus(&seat->base, &seat->devices_list); if (wl_list_empty(&seat->devices_list)) { weston_log( "warning: no input devices on entering Weston. " "Possible causes:\n" "\t- no permissions to read /dev/input/event*\n" "\t- seats misconfigured " "(Weston backend option 'seat', " "udev device property ID_SEAT)\n"); } } static int evdev_udev_handler(int fd, uint32_t mask, void *data) { struct drm_seat *seat = data; struct udev_device *udev_device; struct evdev_input_device *device, *next; const char *action; const char *devnode; udev_device = udev_monitor_receive_device(seat->udev_monitor); if (!udev_device) return 1; action = udev_device_get_action(udev_device); if (!action) goto out; if (strncmp("event", udev_device_get_sysname(udev_device), 5) != 0) goto out; if (!strcmp(action, "add")) { device_added(udev_device, seat); } else if (!strcmp(action, "remove")) { devnode = udev_device_get_devnode(udev_device); wl_list_for_each_safe(device, next, &seat->devices_list, link) if (!strcmp(device->devnode, devnode)) { weston_log("input device %s, %s removed\n", device->devname, device->devnode); evdev_input_device_destroy(device); break; } } out: udev_device_unref(udev_device); return 0; } static int evdev_enable_udev_monitor(struct udev *udev, struct weston_seat *seat_base) { struct drm_seat *master = (struct drm_seat *) seat_base; struct wl_event_loop *loop; struct weston_compositor *c = master->base.compositor; int fd; master->udev_monitor = udev_monitor_new_from_netlink(udev, "udev"); if (!master->udev_monitor) { weston_log("udev: failed to create the udev monitor\n"); return 0; } udev_monitor_filter_add_match_subsystem_devtype(master->udev_monitor, "input", NULL); if (udev_monitor_enable_receiving(master->udev_monitor)) { weston_log("udev: failed to bind the udev monitor\n"); udev_monitor_unref(master->udev_monitor); return 0; } loop = wl_display_get_event_loop(c->wl_display); fd = udev_monitor_get_fd(master->udev_monitor); master->udev_monitor_source = wl_event_loop_add_fd(loop, fd, WL_EVENT_READABLE, evdev_udev_handler, master); if (!master->udev_monitor_source) { udev_monitor_unref(master->udev_monitor); return 0; } return 1; } static void evdev_disable_udev_monitor(struct weston_seat *seat_base) { struct drm_seat *seat = (struct drm_seat *) seat_base; if (!seat->udev_monitor) return; udev_monitor_unref(seat->udev_monitor); seat->udev_monitor = NULL; wl_event_source_remove(seat->udev_monitor_source); seat->udev_monitor_source = NULL; } static void drm_led_update(struct weston_seat *seat_base, enum weston_led leds) { struct drm_seat *seat = (struct drm_seat *) seat_base; evdev_led_update(&seat->devices_list, leds); } static void evdev_input_create(struct weston_compositor *c, struct udev *udev, const char *seat_id) { struct drm_seat *seat; seat = malloc(sizeof *seat); if (seat == NULL) return; memset(seat, 0, sizeof *seat); weston_seat_init(&seat->base, c); seat->base.led_update = drm_led_update; wl_list_init(&seat->devices_list); seat->seat_id = strdup(seat_id); if (!evdev_enable_udev_monitor(udev, &seat->base)) { free(seat->seat_id); free(seat); return; } evdev_add_devices(udev, &seat->base); c->seat = &seat->base; } static void evdev_remove_devices(struct weston_seat *seat_base) { struct drm_seat *seat = (struct drm_seat *) seat_base; struct evdev_input_device *device, *next; wl_list_for_each_safe(device, next, &seat->devices_list, link) evdev_input_device_destroy(device); if (seat->base.seat.keyboard) notify_keyboard_focus_out(&seat->base.seat); } static void evdev_input_destroy(struct weston_seat *seat_base) { struct drm_seat *seat = (struct drm_seat *) seat_base; evdev_remove_devices(seat_base); evdev_disable_udev_monitor(&seat->base); weston_seat_release(seat_base); free(seat->seat_id); free(seat); } static void drm_free_configured_output(struct drm_configured_output *output) { free(output->name); free(output->mode); free(output); } static void drm_destroy(struct weston_compositor *ec) { struct drm_compositor *d = (struct drm_compositor *) ec; struct weston_seat *seat, *next; struct drm_configured_output *o, *n; wl_list_for_each_safe(seat, next, &ec->seat_list, link) evdev_input_destroy(seat); wl_list_for_each_safe(o, n, &configured_output_list, link) drm_free_configured_output(o); wl_event_source_remove(d->udev_drm_source); wl_event_source_remove(d->drm_source); weston_compositor_shutdown(ec); /* Work around crash in egl_dri2.c's dri2_make_current() */ eglMakeCurrent(ec->egl_display, EGL_NO_SURFACE, EGL_NO_SURFACE, EGL_NO_CONTEXT); eglTerminate(ec->egl_display); eglReleaseThread(); gbm_device_destroy(d->gbm); destroy_sprites(d); if (weston_launcher_drm_set_master(&d->base, d->drm.fd, 0) < 0) weston_log("failed to drop master: %m\n"); tty_destroy(d->tty); free(d); } 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, output->current->fb_id, 0, 0, &output->connector_id, 1, &drm_mode->mode_info); if (ret < 0) { weston_log( "failed to set mode %dx%d for output at %d,%d: %m\n", drm_mode->base.width, drm_mode->base.height, output->base.x, output->base.y); } } } static void vt_func(struct weston_compositor *compositor, int event) { struct drm_compositor *ec = (struct drm_compositor *) compositor; struct weston_seat *seat; struct drm_sprite *sprite; struct drm_output *output; switch (event) { case TTY_ENTER_VT: weston_log("entering VT\n"); compositor->focus = 1; if (weston_launcher_drm_set_master(&ec->base, ec->drm.fd, 1)) { weston_log("failed to set master: %m\n"); wl_display_terminate(compositor->wl_display); } compositor->state = ec->prev_state; drm_compositor_set_modes(ec); weston_compositor_damage_all(compositor); wl_list_for_each(seat, &compositor->seat_list, link) { evdev_add_devices(ec->udev, seat); evdev_enable_udev_monitor(ec->udev, seat); } break; case TTY_LEAVE_VT: weston_log("leaving VT\n"); wl_list_for_each(seat, &compositor->seat_list, link) { evdev_disable_udev_monitor(seat); evdev_remove_devices(seat); } compositor->focus = 0; ec->prev_state = compositor->state; compositor->state = WESTON_COMPOSITOR_SLEEPING; /* 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, base.link) { output->base.repaint_needed = 0; drmModeSetCursor(ec->drm.fd, output->crtc_id, 0, 0, 0); } 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, output->crtc_id, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); if (weston_launcher_drm_set_master(&ec->base, ec->drm.fd, 0) < 0) weston_log("failed to drop master: %m\n"); break; }; } static void switch_vt_binding(struct wl_seat *seat, uint32_t time, uint32_t key, void *data) { struct drm_compositor *ec = data; tty_activate_vt(ec->tty, key - KEY_F1 + 1); } static struct weston_compositor * drm_compositor_create(struct wl_display *display, int connector, const char *seat, int tty, int argc, char *argv[], const char *config_file) { struct drm_compositor *ec; struct udev_enumerate *e; struct udev_list_entry *entry; struct udev_device *device, *drm_device; const char *path, *device_seat; struct wl_event_loop *loop; struct weston_seat *weston_seat, *next; uint32_t key; weston_log("initializing drm backend\n"); ec = malloc(sizeof *ec); if (ec == NULL) return NULL; memset(ec, 0, sizeof *ec); if (weston_compositor_init(&ec->base, display, argc, argv, config_file) < 0) { weston_log("weston_compositor_init failed\n"); goto err_base; } ec->udev = udev_new(); if (ec->udev == NULL) { weston_log("failed to initialize udev context\n"); goto err_compositor; } ec->base.wl_display = display; ec->tty = tty_create(&ec->base, vt_func, tty); if (!ec->tty) { weston_log("failed to initialize tty\n"); goto err_udev; } e = udev_enumerate_new(ec->udev); udev_enumerate_add_match_subsystem(e, "drm"); udev_enumerate_add_match_sysname(e, "card[0-9]*"); udev_enumerate_scan_devices(e); drm_device = NULL; udev_list_entry_foreach(entry, udev_enumerate_get_list_entry(e)) { path = udev_list_entry_get_name(entry); device = udev_device_new_from_syspath(ec->udev, path); device_seat = 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); } if (drm_device == NULL) { weston_log("no drm device found\n"); goto err_udev_enum; } if (init_egl(ec, drm_device) < 0) { weston_log("failed to initialize egl\n"); goto err_udev_dev; } ec->base.destroy = drm_destroy; ec->base.restore = drm_restore; ec->base.focus = 1; ec->prev_state = WESTON_COMPOSITOR_ACTIVE; if (weston_compositor_init_gl(&ec->base) < 0) goto err_egl; for (key = KEY_F1; key < KEY_F9; key++) weston_compositor_add_key_binding(&ec->base, key, MODIFIER_CTRL | MODIFIER_ALT, switch_vt_binding, ec); wl_list_init(&ec->sprite_list); create_sprites(ec); if (create_outputs(ec, connector, drm_device) < 0) { weston_log("failed to create output for %s\n", path); goto err_sprite; } path = NULL; evdev_input_create(&ec->base, ec->udev, seat); loop = wl_display_get_event_loop(ec->base.wl_display); ec->drm_source = wl_event_loop_add_fd(loop, ec->drm.fd, WL_EVENT_READABLE, on_drm_input, ec); ec->udev_monitor = udev_monitor_new_from_netlink(ec->udev, "udev"); if (ec->udev_monitor == NULL) { weston_log("failed to intialize udev monitor\n"); goto err_drm_source; } udev_monitor_filter_add_match_subsystem_devtype(ec->udev_monitor, "drm", NULL); ec->udev_drm_source = wl_event_loop_add_fd(loop, udev_monitor_get_fd(ec->udev_monitor), WL_EVENT_READABLE, udev_drm_event, ec); if (udev_monitor_enable_receiving(ec->udev_monitor) < 0) { weston_log("failed to enable udev-monitor receiving\n"); goto err_udev_monitor; } udev_device_unref(drm_device); udev_enumerate_unref(e); return &ec->base; err_udev_monitor: wl_event_source_remove(ec->udev_drm_source); udev_monitor_unref(ec->udev_monitor); err_drm_source: wl_event_source_remove(ec->drm_source); wl_list_for_each_safe(weston_seat, next, &ec->base.seat_list, link) evdev_input_destroy(weston_seat); err_sprite: destroy_sprites(ec); err_egl: eglMakeCurrent(ec->base.egl_display, EGL_NO_SURFACE, EGL_NO_SURFACE, EGL_NO_CONTEXT); eglTerminate(ec->base.egl_display); eglReleaseThread(); gbm_device_destroy(ec->gbm); err_udev_dev: udev_device_unref(drm_device); err_udev_enum: udev_enumerate_unref(e); tty_destroy(ec->tty); err_udev: udev_unref(ec->udev); err_compositor: weston_compositor_shutdown(&ec->base); err_base: free(ec); return NULL; } static int set_sync_flags(drmModeModeInfo *mode, char *hsync, char *vsync) { mode->flags = 0; if (strcmp(hsync, "+hsync") == 0) mode->flags |= DRM_MODE_FLAG_PHSYNC; else if (strcmp(hsync, "-hsync") == 0) mode->flags |= DRM_MODE_FLAG_NHSYNC; else return -1; if (strcmp(vsync, "+vsync") == 0) mode->flags |= DRM_MODE_FLAG_PVSYNC; else if (strcmp(vsync, "-vsync") == 0) mode->flags |= DRM_MODE_FLAG_NVSYNC; else return -1; return 0; } static int check_for_modeline(struct drm_configured_output *output) { drmModeModeInfo mode; char hsync[16]; char vsync[16]; char mode_name[16]; float fclock; mode.type = DRM_MODE_TYPE_USERDEF; mode.hskew = 0; mode.vscan = 0; mode.vrefresh = 0; if (sscanf(output_mode, "%f %hd %hd %hd %hd %hd %hd %hd %hd %s %s", &fclock, &mode.hdisplay, &mode.hsync_start, &mode.hsync_end, &mode.htotal, &mode.vdisplay, &mode.vsync_start, &mode.vsync_end, &mode.vtotal, hsync, vsync) == 11) { if (set_sync_flags(&mode, hsync, vsync)) return -1; sprintf(mode_name, "%dx%d", mode.hdisplay, mode.vdisplay); strcpy(mode.name, mode_name); mode.clock = fclock * 1000; } else return -1; output->crtc_mode = mode; return 0; } static void output_section_done(void *data) { struct drm_configured_output *output; output = malloc(sizeof *output); if (!output || !output_name || !output_mode) { free(output_name); output_name = NULL; free(output_mode); output_mode = NULL; return; } output->config = OUTPUT_CONFIG_INVALID; output->name = output_name; output->mode = output_mode; if (strcmp(output_mode, "off") == 0) output->config = OUTPUT_CONFIG_OFF; else if (strcmp(output_mode, "preferred") == 0) output->config = OUTPUT_CONFIG_PREFERRED; else if (strcmp(output_mode, "current") == 0) output->config = OUTPUT_CONFIG_CURRENT; else if (sscanf(output_mode, "%dx%d", &output->width, &output->height) == 2) output->config = OUTPUT_CONFIG_MODE; else if (check_for_modeline(output) == 0) output->config = OUTPUT_CONFIG_MODELINE; if (output->config != OUTPUT_CONFIG_INVALID) wl_list_insert(&configured_output_list, &output->link); else { weston_log("Invalid mode \"%s\" for output %s\n", output_mode, output_name); drm_free_configured_output(output); } } WL_EXPORT struct weston_compositor * backend_init(struct wl_display *display, int argc, char *argv[], const char *config_file) { 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 }, { WESTON_OPTION_BOOLEAN, "current-mode", 0, &option_current_mode }, }; parse_options(drm_options, ARRAY_LENGTH(drm_options), argc, argv); wl_list_init(&configured_output_list); const struct config_key drm_config_keys[] = { { "name", CONFIG_KEY_STRING, &output_name }, { "mode", CONFIG_KEY_STRING, &output_mode }, }; const struct config_section config_section[] = { { "output", drm_config_keys, ARRAY_LENGTH(drm_config_keys), output_section_done }, }; parse_config_file(config_file, config_section, ARRAY_LENGTH(config_section), NULL); return drm_compositor_create(display, connector, seat, tty, argc, argv, config_file); }