Kristian Høgsberg | fc783d4 | 2010-06-11 12:56:24 -0400 | [diff] [blame] | 1 | /* |
Kristian Høgsberg | 96aa7da | 2011-09-15 15:43:14 -0400 | [diff] [blame] | 2 | * Copyright © 2008-2011 Kristian Høgsberg |
| 3 | * Copyright © 2011 Intel Corporation |
Kristian Høgsberg | fc783d4 | 2010-06-11 12:56:24 -0400 | [diff] [blame] | 4 | * |
Kristian Høgsberg | 96aa7da | 2011-09-15 15:43:14 -0400 | [diff] [blame] | 5 | * Permission to use, copy, modify, distribute, and sell this software and |
| 6 | * its documentation for any purpose is hereby granted without fee, provided |
| 7 | * that the above copyright notice appear in all copies and that both that |
| 8 | * copyright notice and this permission notice appear in supporting |
| 9 | * documentation, and that the name of the copyright holders not be used in |
| 10 | * advertising or publicity pertaining to distribution of the software |
| 11 | * without specific, written prior permission. The copyright holders make |
| 12 | * no representations about the suitability of this software for any |
| 13 | * purpose. It is provided "as is" without express or implied warranty. |
Kristian Høgsberg | fc783d4 | 2010-06-11 12:56:24 -0400 | [diff] [blame] | 14 | * |
Kristian Høgsberg | 96aa7da | 2011-09-15 15:43:14 -0400 | [diff] [blame] | 15 | * THE COPYRIGHT HOLDERS DISCLAIM ALL WARRANTIES WITH REGARD TO THIS |
| 16 | * SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND |
| 17 | * FITNESS, IN NO EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY |
| 18 | * SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER |
| 19 | * RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF |
| 20 | * CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN |
| 21 | * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
Kristian Høgsberg | fc783d4 | 2010-06-11 12:56:24 -0400 | [diff] [blame] | 22 | */ |
| 23 | |
Kristian Høgsberg | 0b9334a | 2011-04-12 11:34:32 -0400 | [diff] [blame] | 24 | #define _GNU_SOURCE |
| 25 | |
Jesse Barnes | 58ef379 | 2012-02-23 09:45:49 -0500 | [diff] [blame] | 26 | #include <errno.h> |
Kristian Høgsberg | fc783d4 | 2010-06-11 12:56:24 -0400 | [diff] [blame] | 27 | #include <stdlib.h> |
| 28 | #include <string.h> |
| 29 | #include <fcntl.h> |
| 30 | #include <unistd.h> |
Kristian Høgsberg | 5d1c0c5 | 2012-04-10 00:11:50 -0400 | [diff] [blame] | 31 | #include <linux/input.h> |
Ander Conselvan de Oliveira | fd1f4c6 | 2012-06-26 17:09:14 +0300 | [diff] [blame] | 32 | #include <assert.h> |
Ander Conselvan de Oliveira | 1d41ad4 | 2013-01-25 15:13:04 +0200 | [diff] [blame] | 33 | #include <sys/mman.h> |
Kristian Høgsberg | fc783d4 | 2010-06-11 12:56:24 -0400 | [diff] [blame] | 34 | |
Benjamin Franzke | c649a92 | 2011-03-02 11:56:04 +0100 | [diff] [blame] | 35 | #include <xf86drm.h> |
| 36 | #include <xf86drmMode.h> |
Jesse Barnes | 58ef379 | 2012-02-23 09:45:49 -0500 | [diff] [blame] | 37 | #include <drm_fourcc.h> |
Benjamin Franzke | c649a92 | 2011-03-02 11:56:04 +0100 | [diff] [blame] | 38 | |
Benjamin Franzke | 060cf80 | 2011-04-30 09:32:11 +0200 | [diff] [blame] | 39 | #include <gbm.h> |
Tiago Vignatti | 8e53c7f | 2012-02-29 19:53:50 +0200 | [diff] [blame] | 40 | #include <libbacklight.h> |
Pekka Paalanen | 3315697 | 2012-08-03 13:30:30 -0400 | [diff] [blame] | 41 | #include <libudev.h> |
Benjamin Franzke | 060cf80 | 2011-04-30 09:32:11 +0200 | [diff] [blame] | 42 | |
Kristian Høgsberg | fc783d4 | 2010-06-11 12:56:24 -0400 | [diff] [blame] | 43 | #include "compositor.h" |
John Kåre Alsaker | 30d2b1f | 2012-11-13 19:10:28 +0100 | [diff] [blame] | 44 | #include "gl-renderer.h" |
Ander Conselvan de Oliveira | 5fb4414 | 2013-01-25 15:13:05 +0200 | [diff] [blame] | 45 | #include "pixman-renderer.h" |
Kristian Høgsberg | 98cfea6 | 2013-02-18 16:15:53 -0500 | [diff] [blame] | 46 | #include "udev-seat.h" |
Benjamin Franzke | bfeda13 | 2012-01-30 14:04:04 +0100 | [diff] [blame] | 47 | #include "launcher-util.h" |
Kristian Høgsberg | fc783d4 | 2010-06-11 12:56:24 -0400 | [diff] [blame] | 48 | |
Kristian Høgsberg | 061c425 | 2012-06-28 11:28:15 -0400 | [diff] [blame] | 49 | static int option_current_mode = 0; |
Scott Moreau | 8ab5d45 | 2012-07-30 19:51:08 -0600 | [diff] [blame] | 50 | static char *output_name; |
| 51 | static char *output_mode; |
Scott Moreau | 1bad5db | 2012-08-18 01:04:05 -0600 | [diff] [blame] | 52 | static char *output_transform; |
Scott Moreau | 8ab5d45 | 2012-07-30 19:51:08 -0600 | [diff] [blame] | 53 | static struct wl_list configured_output_list; |
| 54 | |
| 55 | enum output_config { |
| 56 | OUTPUT_CONFIG_INVALID = 0, |
| 57 | OUTPUT_CONFIG_OFF, |
| 58 | OUTPUT_CONFIG_PREFERRED, |
| 59 | OUTPUT_CONFIG_CURRENT, |
Scott Moreau | 8f37e0b | 2012-07-31 15:30:41 -0600 | [diff] [blame] | 60 | OUTPUT_CONFIG_MODE, |
| 61 | OUTPUT_CONFIG_MODELINE |
Scott Moreau | 8ab5d45 | 2012-07-30 19:51:08 -0600 | [diff] [blame] | 62 | }; |
| 63 | |
| 64 | struct drm_configured_output { |
| 65 | char *name; |
| 66 | char *mode; |
Scott Moreau | 1bad5db | 2012-08-18 01:04:05 -0600 | [diff] [blame] | 67 | uint32_t transform; |
Scott Moreau | 8ab5d45 | 2012-07-30 19:51:08 -0600 | [diff] [blame] | 68 | int32_t width, height; |
Scott Moreau | 8f37e0b | 2012-07-31 15:30:41 -0600 | [diff] [blame] | 69 | drmModeModeInfo crtc_mode; |
Scott Moreau | 8ab5d45 | 2012-07-30 19:51:08 -0600 | [diff] [blame] | 70 | enum output_config config; |
| 71 | struct wl_list link; |
| 72 | }; |
Kristian Høgsberg | 061c425 | 2012-06-28 11:28:15 -0400 | [diff] [blame] | 73 | |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 74 | struct drm_compositor { |
Kristian Høgsberg | 8334bc1 | 2012-01-03 10:29:47 -0500 | [diff] [blame] | 75 | struct weston_compositor base; |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 76 | |
| 77 | struct udev *udev; |
| 78 | struct wl_event_source *drm_source; |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 79 | |
Benjamin Franzke | 9c26ff3 | 2011-03-15 15:08:41 +0100 | [diff] [blame] | 80 | struct udev_monitor *udev_monitor; |
| 81 | struct wl_event_source *udev_drm_source; |
| 82 | |
Benjamin Franzke | 2af7f10 | 2011-03-02 11:14:59 +0100 | [diff] [blame] | 83 | struct { |
David Herrmann | d7488c2 | 2012-03-11 20:05:21 +0100 | [diff] [blame] | 84 | int id; |
Benjamin Franzke | 2af7f10 | 2011-03-02 11:14:59 +0100 | [diff] [blame] | 85 | int fd; |
| 86 | } drm; |
Benjamin Franzke | 060cf80 | 2011-04-30 09:32:11 +0200 | [diff] [blame] | 87 | struct gbm_device *gbm; |
Jesse Barnes | 58ef379 | 2012-02-23 09:45:49 -0500 | [diff] [blame] | 88 | uint32_t *crtcs; |
| 89 | int num_crtcs; |
Marty Jack | 13d9db2 | 2011-02-09 19:01:42 -0500 | [diff] [blame] | 90 | uint32_t crtc_allocator; |
Benjamin Franzke | 9c26ff3 | 2011-03-15 15:08:41 +0100 | [diff] [blame] | 91 | uint32_t connector_allocator; |
Kristian Høgsberg | e4762a6 | 2011-01-14 14:59:13 -0500 | [diff] [blame] | 92 | struct tty *tty; |
Pekka Paalanen | bce2d3f | 2011-12-02 13:07:27 +0200 | [diff] [blame] | 93 | |
Rob Clark | 4339add | 2012-08-09 14:18:28 -0500 | [diff] [blame] | 94 | /* we need these parameters in order to not fail drmModeAddFB2() |
| 95 | * due to out of bounds dimensions, and then mistakenly set |
| 96 | * sprites_are_broken: |
| 97 | */ |
Ander Conselvan de Oliveira | 8d360b4 | 2012-11-09 14:19:05 +0200 | [diff] [blame] | 98 | uint32_t min_width, max_width; |
| 99 | uint32_t min_height, max_height; |
| 100 | int no_addfb2; |
Rob Clark | 4339add | 2012-08-09 14:18:28 -0500 | [diff] [blame] | 101 | |
Jesse Barnes | 58ef379 | 2012-02-23 09:45:49 -0500 | [diff] [blame] | 102 | struct wl_list sprite_list; |
Kristian Høgsberg | 65bec24 | 2012-03-05 19:57:35 -0500 | [diff] [blame] | 103 | int sprites_are_broken; |
Ander Conselvan de Oliveira | da1c908 | 2012-10-31 17:55:46 +0200 | [diff] [blame] | 104 | int sprites_hidden; |
Jesse Barnes | 58ef379 | 2012-02-23 09:45:49 -0500 | [diff] [blame] | 105 | |
Rob Clark | ab5b1e3 | 2012-08-09 13:24:45 -0500 | [diff] [blame] | 106 | int cursors_are_broken; |
| 107 | |
Ander Conselvan de Oliveira | 5fb4414 | 2013-01-25 15:13:05 +0200 | [diff] [blame] | 108 | int use_pixman; |
| 109 | |
Pekka Paalanen | bce2d3f | 2011-12-02 13:07:27 +0200 | [diff] [blame] | 110 | uint32_t prev_state; |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 111 | }; |
| 112 | |
Kristian Høgsberg | 8f0ce05 | 2011-06-21 11:16:58 -0400 | [diff] [blame] | 113 | struct drm_mode { |
Kristian Høgsberg | 8334bc1 | 2012-01-03 10:29:47 -0500 | [diff] [blame] | 114 | struct weston_mode base; |
Kristian Høgsberg | 8f0ce05 | 2011-06-21 11:16:58 -0400 | [diff] [blame] | 115 | drmModeModeInfo mode_info; |
| 116 | }; |
| 117 | |
Ander Conselvan de Oliveira | 555c17d | 2012-05-02 16:42:21 +0300 | [diff] [blame] | 118 | struct drm_output; |
| 119 | |
| 120 | struct drm_fb { |
Ander Conselvan de Oliveira | 555c17d | 2012-05-02 16:42:21 +0300 | [diff] [blame] | 121 | struct drm_output *output; |
Ander Conselvan de Oliveira | 1d41ad4 | 2013-01-25 15:13:04 +0200 | [diff] [blame] | 122 | uint32_t fb_id, stride, handle, size; |
| 123 | int fd; |
Ander Conselvan de Oliveira | 555c17d | 2012-05-02 16:42:21 +0300 | [diff] [blame] | 124 | int is_client_buffer; |
Pekka Paalanen | de685b8 | 2012-12-04 15:58:12 +0200 | [diff] [blame] | 125 | struct weston_buffer_reference buffer_ref; |
Ander Conselvan de Oliveira | 1d41ad4 | 2013-01-25 15:13:04 +0200 | [diff] [blame] | 126 | |
| 127 | /* Used by gbm fbs */ |
| 128 | struct gbm_bo *bo; |
| 129 | |
| 130 | /* Used by dumb fbs */ |
| 131 | void *map; |
Ander Conselvan de Oliveira | 555c17d | 2012-05-02 16:42:21 +0300 | [diff] [blame] | 132 | }; |
| 133 | |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 134 | struct drm_output { |
Kristian Høgsberg | 8334bc1 | 2012-01-03 10:29:47 -0500 | [diff] [blame] | 135 | struct weston_output base; |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 136 | |
Kristian Høgsberg | 2f9ed71 | 2012-07-26 17:57:15 -0400 | [diff] [blame] | 137 | char *name; |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 138 | uint32_t crtc_id; |
Rob Clark | 5ca1a47 | 2012-08-08 20:27:37 -0500 | [diff] [blame] | 139 | int pipe; |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 140 | uint32_t connector_id; |
Matt Roper | 361d2ad | 2011-08-29 13:52:23 -0700 | [diff] [blame] | 141 | drmModeCrtcPtr original_crtc; |
Benjamin Franzke | 1178a3c | 2011-04-10 16:49:52 +0200 | [diff] [blame] | 142 | |
Ander Conselvan de Oliveira | a732696 | 2012-06-26 17:09:13 +0300 | [diff] [blame] | 143 | int vblank_pending; |
| 144 | int page_flip_pending; |
| 145 | |
Kristian Høgsberg | cbcd047 | 2012-03-11 18:27:41 -0400 | [diff] [blame] | 146 | struct gbm_surface *surface; |
Kristian Høgsberg | 8e1f77f | 2012-05-03 11:39:35 -0400 | [diff] [blame] | 147 | struct gbm_bo *cursor_bo[2]; |
Kristian Høgsberg | 65a11e1 | 2012-08-03 11:30:18 -0400 | [diff] [blame] | 148 | struct weston_plane cursor_plane; |
| 149 | struct weston_plane fb_plane; |
Kristian Høgsberg | 5626d34 | 2012-08-03 11:50:05 -0400 | [diff] [blame] | 150 | struct weston_surface *cursor_surface; |
| 151 | int current_cursor; |
Ander Conselvan de Oliveira | 555c17d | 2012-05-02 16:42:21 +0300 | [diff] [blame] | 152 | struct drm_fb *current, *next; |
Tiago Vignatti | 8e53c7f | 2012-02-29 19:53:50 +0200 | [diff] [blame] | 153 | struct backlight *backlight; |
Ander Conselvan de Oliveira | 5fb4414 | 2013-01-25 15:13:05 +0200 | [diff] [blame] | 154 | |
| 155 | struct drm_fb *dumb[2]; |
| 156 | pixman_image_t *image[2]; |
| 157 | int current_image; |
| 158 | pixman_region32_t previous_damage; |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 159 | }; |
| 160 | |
Jesse Barnes | 58ef379 | 2012-02-23 09:45:49 -0500 | [diff] [blame] | 161 | /* |
| 162 | * An output has a primary display plane plus zero or more sprites for |
| 163 | * blending display contents. |
| 164 | */ |
| 165 | struct drm_sprite { |
| 166 | struct wl_list link; |
| 167 | |
Kristian Høgsberg | 65a11e1 | 2012-08-03 11:30:18 -0400 | [diff] [blame] | 168 | struct weston_plane plane; |
Jesse Barnes | 58ef379 | 2012-02-23 09:45:49 -0500 | [diff] [blame] | 169 | |
Ander Conselvan de Oliveira | 8d360b4 | 2012-11-09 14:19:05 +0200 | [diff] [blame] | 170 | struct drm_fb *current, *next; |
Ander Conselvan de Oliveira | a732696 | 2012-06-26 17:09:13 +0300 | [diff] [blame] | 171 | struct drm_output *output; |
Jesse Barnes | 58ef379 | 2012-02-23 09:45:49 -0500 | [diff] [blame] | 172 | struct drm_compositor *compositor; |
| 173 | |
Jesse Barnes | 58ef379 | 2012-02-23 09:45:49 -0500 | [diff] [blame] | 174 | uint32_t possible_crtcs; |
| 175 | uint32_t plane_id; |
| 176 | uint32_t count_formats; |
| 177 | |
| 178 | int32_t src_x, src_y; |
| 179 | uint32_t src_w, src_h; |
| 180 | uint32_t dest_x, dest_y; |
| 181 | uint32_t dest_w, dest_h; |
| 182 | |
| 183 | uint32_t formats[]; |
| 184 | }; |
| 185 | |
Kristian Høgsberg | 98cfea6 | 2013-02-18 16:15:53 -0500 | [diff] [blame] | 186 | static const char default_seat[] = "seat0"; |
Pekka Paalanen | 3315697 | 2012-08-03 13:30:30 -0400 | [diff] [blame] | 187 | |
Kristian Høgsberg | 5626d34 | 2012-08-03 11:50:05 -0400 | [diff] [blame] | 188 | static void |
| 189 | drm_output_set_cursor(struct drm_output *output); |
Kristian Høgsberg | 5626d34 | 2012-08-03 11:50:05 -0400 | [diff] [blame] | 190 | |
Jesse Barnes | 58ef379 | 2012-02-23 09:45:49 -0500 | [diff] [blame] | 191 | static int |
Jesse Barnes | 58ef379 | 2012-02-23 09:45:49 -0500 | [diff] [blame] | 192 | drm_sprite_crtc_supported(struct weston_output *output_base, uint32_t supported) |
| 193 | { |
| 194 | struct weston_compositor *ec = output_base->compositor; |
| 195 | struct drm_compositor *c =(struct drm_compositor *) ec; |
| 196 | struct drm_output *output = (struct drm_output *) output_base; |
| 197 | int crtc; |
| 198 | |
| 199 | for (crtc = 0; crtc < c->num_crtcs; crtc++) { |
| 200 | if (c->crtcs[crtc] != output->crtc_id) |
| 201 | continue; |
| 202 | |
| 203 | if (supported & (1 << crtc)) |
| 204 | return -1; |
| 205 | } |
| 206 | |
| 207 | return 0; |
| 208 | } |
| 209 | |
Ander Conselvan de Oliveira | 555c17d | 2012-05-02 16:42:21 +0300 | [diff] [blame] | 210 | static void |
| 211 | drm_fb_destroy_callback(struct gbm_bo *bo, void *data) |
| 212 | { |
| 213 | struct drm_fb *fb = data; |
| 214 | struct gbm_device *gbm = gbm_bo_get_device(bo); |
| 215 | |
| 216 | if (fb->fb_id) |
| 217 | drmModeRmFB(gbm_device_get_fd(gbm), fb->fb_id); |
| 218 | |
Pekka Paalanen | de685b8 | 2012-12-04 15:58:12 +0200 | [diff] [blame] | 219 | weston_buffer_reference(&fb->buffer_ref, NULL); |
Ander Conselvan de Oliveira | 555c17d | 2012-05-02 16:42:21 +0300 | [diff] [blame] | 220 | |
| 221 | free(data); |
| 222 | } |
| 223 | |
| 224 | static struct drm_fb * |
Ander Conselvan de Oliveira | 1d41ad4 | 2013-01-25 15:13:04 +0200 | [diff] [blame] | 225 | drm_fb_create_dumb(struct drm_compositor *ec, unsigned width, unsigned height) |
| 226 | { |
| 227 | struct drm_fb *fb; |
| 228 | int ret; |
| 229 | |
| 230 | struct drm_mode_create_dumb create_arg; |
| 231 | struct drm_mode_destroy_dumb destroy_arg; |
| 232 | struct drm_mode_map_dumb map_arg; |
| 233 | |
| 234 | fb = calloc(1, sizeof *fb); |
| 235 | if (!fb) |
| 236 | return NULL; |
| 237 | |
| 238 | create_arg.bpp = 32; |
| 239 | create_arg.width = width; |
| 240 | create_arg.height = height; |
| 241 | |
| 242 | ret = drmIoctl(ec->drm.fd, DRM_IOCTL_MODE_CREATE_DUMB, &create_arg); |
| 243 | if (ret) |
| 244 | goto err_fb; |
| 245 | |
| 246 | fb->handle = create_arg.handle; |
| 247 | fb->stride = create_arg.pitch; |
| 248 | fb->size = create_arg.size; |
| 249 | fb->fd = ec->drm.fd; |
| 250 | |
| 251 | ret = drmModeAddFB(ec->drm.fd, width, height, 24, 32, |
| 252 | fb->stride, fb->handle, &fb->fb_id); |
| 253 | if (ret) |
| 254 | goto err_bo; |
| 255 | |
| 256 | memset(&map_arg, 0, sizeof(map_arg)); |
| 257 | map_arg.handle = fb->handle; |
| 258 | drmIoctl(fb->fd, DRM_IOCTL_MODE_MAP_DUMB, &map_arg); |
| 259 | |
| 260 | if (ret) |
| 261 | goto err_add_fb; |
| 262 | |
| 263 | fb->map = mmap(0, fb->size, PROT_WRITE, |
| 264 | MAP_SHARED, ec->drm.fd, map_arg.offset); |
| 265 | if (fb->map == MAP_FAILED) |
| 266 | goto err_add_fb; |
| 267 | |
| 268 | return fb; |
| 269 | |
| 270 | err_add_fb: |
| 271 | drmModeRmFB(ec->drm.fd, fb->fb_id); |
| 272 | err_bo: |
| 273 | memset(&destroy_arg, 0, sizeof(destroy_arg)); |
| 274 | destroy_arg.handle = create_arg.handle; |
| 275 | drmIoctl(ec->drm.fd, DRM_IOCTL_MODE_DESTROY_DUMB, &destroy_arg); |
| 276 | err_fb: |
| 277 | free(fb); |
| 278 | return NULL; |
| 279 | } |
| 280 | |
| 281 | static void |
| 282 | drm_fb_destroy_dumb(struct drm_fb *fb) |
| 283 | { |
| 284 | struct drm_mode_destroy_dumb destroy_arg; |
| 285 | |
| 286 | if (!fb->map) |
| 287 | return; |
| 288 | |
| 289 | if (fb->fb_id) |
| 290 | drmModeRmFB(fb->fd, fb->fb_id); |
| 291 | |
| 292 | weston_buffer_reference(&fb->buffer_ref, NULL); |
| 293 | |
| 294 | munmap(fb->map, fb->size); |
| 295 | |
| 296 | memset(&destroy_arg, 0, sizeof(destroy_arg)); |
| 297 | destroy_arg.handle = fb->handle; |
| 298 | drmIoctl(fb->fd, DRM_IOCTL_MODE_DESTROY_DUMB, &destroy_arg); |
| 299 | |
| 300 | free(fb); |
| 301 | } |
| 302 | |
| 303 | static struct drm_fb * |
Kristian Høgsberg | a2f84cc | 2012-12-07 12:37:58 -0500 | [diff] [blame] | 304 | drm_fb_get_from_bo(struct gbm_bo *bo, |
| 305 | struct drm_compositor *compositor, uint32_t format) |
Ander Conselvan de Oliveira | 555c17d | 2012-05-02 16:42:21 +0300 | [diff] [blame] | 306 | { |
| 307 | struct drm_fb *fb = gbm_bo_get_user_data(bo); |
Ander Conselvan de Oliveira | 1d41ad4 | 2013-01-25 15:13:04 +0200 | [diff] [blame] | 308 | uint32_t width, height; |
Ander Conselvan de Oliveira | 8d360b4 | 2012-11-09 14:19:05 +0200 | [diff] [blame] | 309 | uint32_t handles[4], pitches[4], offsets[4]; |
Ander Conselvan de Oliveira | 555c17d | 2012-05-02 16:42:21 +0300 | [diff] [blame] | 310 | int ret; |
| 311 | |
| 312 | if (fb) |
| 313 | return fb; |
| 314 | |
Ander Conselvan de Oliveira | 1d41ad4 | 2013-01-25 15:13:04 +0200 | [diff] [blame] | 315 | fb = calloc(1, sizeof *fb); |
| 316 | if (!fb) |
| 317 | return NULL; |
Ander Conselvan de Oliveira | 555c17d | 2012-05-02 16:42:21 +0300 | [diff] [blame] | 318 | |
| 319 | fb->bo = bo; |
Ander Conselvan de Oliveira | 555c17d | 2012-05-02 16:42:21 +0300 | [diff] [blame] | 320 | |
| 321 | width = gbm_bo_get_width(bo); |
| 322 | height = gbm_bo_get_height(bo); |
Ander Conselvan de Oliveira | 1d41ad4 | 2013-01-25 15:13:04 +0200 | [diff] [blame] | 323 | fb->stride = gbm_bo_get_stride(bo); |
| 324 | fb->handle = gbm_bo_get_handle(bo).u32; |
| 325 | fb->size = fb->stride * height; |
| 326 | fb->fd = compositor->drm.fd; |
Ander Conselvan de Oliveira | 555c17d | 2012-05-02 16:42:21 +0300 | [diff] [blame] | 327 | |
Ander Conselvan de Oliveira | 8d360b4 | 2012-11-09 14:19:05 +0200 | [diff] [blame] | 328 | if (compositor->min_width > width || width > compositor->max_width || |
| 329 | compositor->min_height > height || |
| 330 | height > compositor->max_height) { |
| 331 | weston_log("bo geometry out of bounds\n"); |
| 332 | goto err_free; |
| 333 | } |
| 334 | |
| 335 | ret = -1; |
| 336 | |
Ander Conselvan de Oliveira | 8d360b4 | 2012-11-09 14:19:05 +0200 | [diff] [blame] | 337 | if (format && !compositor->no_addfb2) { |
Ander Conselvan de Oliveira | 1d41ad4 | 2013-01-25 15:13:04 +0200 | [diff] [blame] | 338 | handles[0] = fb->handle; |
| 339 | pitches[0] = fb->stride; |
Ander Conselvan de Oliveira | 8d360b4 | 2012-11-09 14:19:05 +0200 | [diff] [blame] | 340 | offsets[0] = 0; |
| 341 | |
| 342 | ret = drmModeAddFB2(compositor->drm.fd, width, height, |
| 343 | format, handles, pitches, offsets, |
| 344 | &fb->fb_id, 0); |
| 345 | if (ret) { |
| 346 | weston_log("addfb2 failed: %m\n"); |
| 347 | compositor->no_addfb2 = 1; |
| 348 | compositor->sprites_are_broken = 1; |
| 349 | } |
| 350 | } |
| 351 | |
| 352 | if (ret) |
| 353 | ret = drmModeAddFB(compositor->drm.fd, width, height, 24, 32, |
Ander Conselvan de Oliveira | 1d41ad4 | 2013-01-25 15:13:04 +0200 | [diff] [blame] | 354 | fb->stride, fb->handle, &fb->fb_id); |
Ander Conselvan de Oliveira | 8d360b4 | 2012-11-09 14:19:05 +0200 | [diff] [blame] | 355 | |
Ander Conselvan de Oliveira | 555c17d | 2012-05-02 16:42:21 +0300 | [diff] [blame] | 356 | if (ret) { |
Martin Minarik | 6d11836 | 2012-06-07 18:01:59 +0200 | [diff] [blame] | 357 | weston_log("failed to create kms fb: %m\n"); |
Ander Conselvan de Oliveira | 8d360b4 | 2012-11-09 14:19:05 +0200 | [diff] [blame] | 358 | goto err_free; |
Ander Conselvan de Oliveira | 555c17d | 2012-05-02 16:42:21 +0300 | [diff] [blame] | 359 | } |
| 360 | |
| 361 | gbm_bo_set_user_data(bo, fb, drm_fb_destroy_callback); |
| 362 | |
| 363 | return fb; |
Ander Conselvan de Oliveira | 8d360b4 | 2012-11-09 14:19:05 +0200 | [diff] [blame] | 364 | |
| 365 | err_free: |
| 366 | free(fb); |
| 367 | return NULL; |
Ander Conselvan de Oliveira | 555c17d | 2012-05-02 16:42:21 +0300 | [diff] [blame] | 368 | } |
| 369 | |
| 370 | static void |
Ander Conselvan de Oliveira | 8d360b4 | 2012-11-09 14:19:05 +0200 | [diff] [blame] | 371 | drm_fb_set_buffer(struct drm_fb *fb, struct wl_buffer *buffer) |
| 372 | { |
Pekka Paalanen | de685b8 | 2012-12-04 15:58:12 +0200 | [diff] [blame] | 373 | assert(fb->buffer_ref.buffer == NULL); |
Ander Conselvan de Oliveira | 8d360b4 | 2012-11-09 14:19:05 +0200 | [diff] [blame] | 374 | |
| 375 | fb->is_client_buffer = 1; |
Ander Conselvan de Oliveira | 8d360b4 | 2012-11-09 14:19:05 +0200 | [diff] [blame] | 376 | |
Pekka Paalanen | de685b8 | 2012-12-04 15:58:12 +0200 | [diff] [blame] | 377 | weston_buffer_reference(&fb->buffer_ref, buffer); |
Ander Conselvan de Oliveira | 8d360b4 | 2012-11-09 14:19:05 +0200 | [diff] [blame] | 378 | } |
| 379 | |
Ander Conselvan de Oliveira | 526d461 | 2013-01-25 15:13:03 +0200 | [diff] [blame] | 380 | static void |
| 381 | drm_output_release_fb(struct drm_output *output, struct drm_fb *fb) |
| 382 | { |
| 383 | if (!fb) |
| 384 | return; |
| 385 | |
Ander Conselvan de Oliveira | 5fb4414 | 2013-01-25 15:13:05 +0200 | [diff] [blame] | 386 | if (fb->map && |
| 387 | (fb != output->dumb[0] && fb != output->dumb[1])) { |
Ander Conselvan de Oliveira | 1d41ad4 | 2013-01-25 15:13:04 +0200 | [diff] [blame] | 388 | drm_fb_destroy_dumb(fb); |
| 389 | } else if (fb->bo) { |
Ander Conselvan de Oliveira | 526d461 | 2013-01-25 15:13:03 +0200 | [diff] [blame] | 390 | if (fb->is_client_buffer) |
| 391 | gbm_bo_destroy(fb->bo); |
| 392 | else |
| 393 | gbm_surface_release_buffer(output->surface, |
| 394 | output->current->bo); |
| 395 | } |
| 396 | } |
| 397 | |
Kristian Høgsberg | a2f84cc | 2012-12-07 12:37:58 -0500 | [diff] [blame] | 398 | static uint32_t |
Ander Conselvan de Oliveira | e920941 | 2012-11-30 17:34:22 +0200 | [diff] [blame] | 399 | drm_output_check_scanout_format(struct drm_output *output, |
| 400 | struct weston_surface *es, struct gbm_bo *bo) |
| 401 | { |
Ander Conselvan de Oliveira | e920941 | 2012-11-30 17:34:22 +0200 | [diff] [blame] | 402 | uint32_t format; |
| 403 | pixman_region32_t r; |
| 404 | |
| 405 | format = gbm_bo_get_format(bo); |
| 406 | |
Kristian Høgsberg | a2f84cc | 2012-12-07 12:37:58 -0500 | [diff] [blame] | 407 | switch (format) { |
| 408 | case GBM_FORMAT_XRGB8888: |
| 409 | return format; |
| 410 | case GBM_FORMAT_ARGB8888: |
Ander Conselvan de Oliveira | e920941 | 2012-11-30 17:34:22 +0200 | [diff] [blame] | 411 | /* We can only scanout an ARGB buffer if the surface's |
| 412 | * opaque region covers the whole output */ |
| 413 | pixman_region32_init(&r); |
| 414 | pixman_region32_subtract(&r, &output->base.region, |
| 415 | &es->opaque); |
| 416 | |
| 417 | if (!pixman_region32_not_empty(&r)) |
Kristian Høgsberg | a2f84cc | 2012-12-07 12:37:58 -0500 | [diff] [blame] | 418 | format = GBM_FORMAT_XRGB8888; |
| 419 | else |
| 420 | format = 0; |
Ander Conselvan de Oliveira | e920941 | 2012-11-30 17:34:22 +0200 | [diff] [blame] | 421 | |
| 422 | pixman_region32_fini(&r); |
Ander Conselvan de Oliveira | e920941 | 2012-11-30 17:34:22 +0200 | [diff] [blame] | 423 | |
Kristian Høgsberg | a2f84cc | 2012-12-07 12:37:58 -0500 | [diff] [blame] | 424 | return format; |
| 425 | default: |
| 426 | return 0; |
| 427 | } |
Ander Conselvan de Oliveira | e920941 | 2012-11-30 17:34:22 +0200 | [diff] [blame] | 428 | } |
| 429 | |
Kristian Høgsberg | 65a11e1 | 2012-08-03 11:30:18 -0400 | [diff] [blame] | 430 | static struct weston_plane * |
Kristian Høgsberg | 6143f7d | 2012-07-14 00:31:32 -0400 | [diff] [blame] | 431 | drm_output_prepare_scanout_surface(struct weston_output *_output, |
| 432 | struct weston_surface *es) |
Kristian Høgsberg | 5f5e42e | 2012-01-25 23:59:42 -0500 | [diff] [blame] | 433 | { |
Kristian Høgsberg | 6143f7d | 2012-07-14 00:31:32 -0400 | [diff] [blame] | 434 | struct drm_output *output = (struct drm_output *) _output; |
Kristian Høgsberg | 5f5e42e | 2012-01-25 23:59:42 -0500 | [diff] [blame] | 435 | struct drm_compositor *c = |
| 436 | (struct drm_compositor *) output->base.compositor; |
Pekka Paalanen | de685b8 | 2012-12-04 15:58:12 +0200 | [diff] [blame] | 437 | struct wl_buffer *buffer = es->buffer_ref.buffer; |
Ander Conselvan de Oliveira | 555c17d | 2012-05-02 16:42:21 +0300 | [diff] [blame] | 438 | struct gbm_bo *bo; |
Kristian Høgsberg | a2f84cc | 2012-12-07 12:37:58 -0500 | [diff] [blame] | 439 | uint32_t format; |
Kristian Høgsberg | 5f5e42e | 2012-01-25 23:59:42 -0500 | [diff] [blame] | 440 | |
Kristian Høgsberg | 101cb65 | 2012-02-17 10:45:16 -0500 | [diff] [blame] | 441 | if (es->geometry.x != output->base.x || |
Pekka Paalanen | ba3cf95 | 2012-01-25 16:22:05 +0200 | [diff] [blame] | 442 | es->geometry.y != output->base.y || |
Ander Conselvan de Oliveira | 5fb4414 | 2013-01-25 15:13:05 +0200 | [diff] [blame] | 443 | buffer == NULL || c->gbm == NULL || |
Pekka Paalanen | de685b8 | 2012-12-04 15:58:12 +0200 | [diff] [blame] | 444 | buffer->width != output->base.current->width || |
| 445 | buffer->height != output->base.current->height || |
Ander Conselvan de Oliveira | 2908a3d | 2012-11-27 17:03:43 +0200 | [diff] [blame] | 446 | output->base.transform != es->buffer_transform || |
| 447 | es->transform.enabled) |
Kristian Høgsberg | 65a11e1 | 2012-08-03 11:30:18 -0400 | [diff] [blame] | 448 | return NULL; |
Kristian Høgsberg | 5f5e42e | 2012-01-25 23:59:42 -0500 | [diff] [blame] | 449 | |
Kristian Høgsberg | 2763a2e | 2012-07-13 22:54:43 -0400 | [diff] [blame] | 450 | bo = gbm_bo_import(c->gbm, GBM_BO_IMPORT_WL_BUFFER, |
Pekka Paalanen | de685b8 | 2012-12-04 15:58:12 +0200 | [diff] [blame] | 451 | buffer, GBM_BO_USE_SCANOUT); |
Kristian Høgsberg | 5f5e42e | 2012-01-25 23:59:42 -0500 | [diff] [blame] | 452 | |
Rob Bradford | 9b10187 | 2012-09-14 23:25:41 +0100 | [diff] [blame] | 453 | /* Unable to use the buffer for scanout */ |
| 454 | if (!bo) |
| 455 | return NULL; |
| 456 | |
Kristian Høgsberg | a2f84cc | 2012-12-07 12:37:58 -0500 | [diff] [blame] | 457 | format = drm_output_check_scanout_format(output, es, bo); |
| 458 | if (format == 0) { |
Ander Conselvan de Oliveira | a64b15d | 2012-05-02 16:42:22 +0300 | [diff] [blame] | 459 | gbm_bo_destroy(bo); |
Kristian Høgsberg | 65a11e1 | 2012-08-03 11:30:18 -0400 | [diff] [blame] | 460 | return NULL; |
Ander Conselvan de Oliveira | a64b15d | 2012-05-02 16:42:22 +0300 | [diff] [blame] | 461 | } |
| 462 | |
Kristian Høgsberg | a2f84cc | 2012-12-07 12:37:58 -0500 | [diff] [blame] | 463 | output->next = drm_fb_get_from_bo(bo, c, format); |
Ander Conselvan de Oliveira | 555c17d | 2012-05-02 16:42:21 +0300 | [diff] [blame] | 464 | if (!output->next) { |
| 465 | gbm_bo_destroy(bo); |
Kristian Høgsberg | 65a11e1 | 2012-08-03 11:30:18 -0400 | [diff] [blame] | 466 | return NULL; |
Ander Conselvan de Oliveira | 555c17d | 2012-05-02 16:42:21 +0300 | [diff] [blame] | 467 | } |
Kristian Høgsberg | 5f5e42e | 2012-01-25 23:59:42 -0500 | [diff] [blame] | 468 | |
Pekka Paalanen | de685b8 | 2012-12-04 15:58:12 +0200 | [diff] [blame] | 469 | drm_fb_set_buffer(output->next, buffer); |
Kristian Høgsberg | 5f5e42e | 2012-01-25 23:59:42 -0500 | [diff] [blame] | 470 | |
Kristian Høgsberg | 65a11e1 | 2012-08-03 11:30:18 -0400 | [diff] [blame] | 471 | return &output->fb_plane; |
Kristian Høgsberg | 5f5e42e | 2012-01-25 23:59:42 -0500 | [diff] [blame] | 472 | } |
| 473 | |
Kristian Høgsberg | 06cf6b0 | 2012-01-25 23:47:45 -0500 | [diff] [blame] | 474 | static void |
Ander Conselvan de Oliveira | 5fb4414 | 2013-01-25 15:13:05 +0200 | [diff] [blame] | 475 | drm_output_render_gl(struct drm_output *output, pixman_region32_t *damage) |
Kristian Høgsberg | cbcd047 | 2012-03-11 18:27:41 -0400 | [diff] [blame] | 476 | { |
Ander Conselvan de Oliveira | 8d360b4 | 2012-11-09 14:19:05 +0200 | [diff] [blame] | 477 | struct drm_compositor *c = |
| 478 | (struct drm_compositor *) output->base.compositor; |
Ander Conselvan de Oliveira | 555c17d | 2012-05-02 16:42:21 +0300 | [diff] [blame] | 479 | struct gbm_bo *bo; |
Kristian Høgsberg | cbcd047 | 2012-03-11 18:27:41 -0400 | [diff] [blame] | 480 | |
Ander Conselvan de Oliveira | 8d360b4 | 2012-11-09 14:19:05 +0200 | [diff] [blame] | 481 | c->base.renderer->repaint_output(&output->base, damage); |
Kristian Høgsberg | cbcd047 | 2012-03-11 18:27:41 -0400 | [diff] [blame] | 482 | |
Ander Conselvan de Oliveira | 555c17d | 2012-05-02 16:42:21 +0300 | [diff] [blame] | 483 | bo = gbm_surface_lock_front_buffer(output->surface); |
| 484 | if (!bo) { |
Martin Minarik | 6d11836 | 2012-06-07 18:01:59 +0200 | [diff] [blame] | 485 | weston_log("failed to lock front buffer: %m\n"); |
Kristian Høgsberg | cbcd047 | 2012-03-11 18:27:41 -0400 | [diff] [blame] | 486 | return; |
| 487 | } |
Ander Conselvan de Oliveira | 555c17d | 2012-05-02 16:42:21 +0300 | [diff] [blame] | 488 | |
Kristian Høgsberg | a2f84cc | 2012-12-07 12:37:58 -0500 | [diff] [blame] | 489 | output->next = drm_fb_get_from_bo(bo, c, GBM_FORMAT_XRGB8888); |
Ander Conselvan de Oliveira | 555c17d | 2012-05-02 16:42:21 +0300 | [diff] [blame] | 490 | if (!output->next) { |
Martin Minarik | 6d11836 | 2012-06-07 18:01:59 +0200 | [diff] [blame] | 491 | weston_log("failed to get drm_fb for bo\n"); |
Ander Conselvan de Oliveira | 555c17d | 2012-05-02 16:42:21 +0300 | [diff] [blame] | 492 | gbm_surface_release_buffer(output->surface, bo); |
| 493 | return; |
| 494 | } |
Kristian Høgsberg | cbcd047 | 2012-03-11 18:27:41 -0400 | [diff] [blame] | 495 | } |
| 496 | |
| 497 | static void |
Ander Conselvan de Oliveira | 5fb4414 | 2013-01-25 15:13:05 +0200 | [diff] [blame] | 498 | drm_output_render_pixman(struct drm_output *output, pixman_region32_t *damage) |
| 499 | { |
| 500 | struct weston_compositor *ec = output->base.compositor; |
| 501 | pixman_region32_t total_damage, previous_damage; |
| 502 | |
| 503 | pixman_region32_init(&total_damage); |
| 504 | pixman_region32_init(&previous_damage); |
| 505 | |
| 506 | pixman_region32_copy(&previous_damage, damage); |
| 507 | |
| 508 | pixman_region32_union(&total_damage, damage, &output->previous_damage); |
| 509 | pixman_region32_copy(&output->previous_damage, &previous_damage); |
| 510 | |
| 511 | output->current_image ^= 1; |
| 512 | |
| 513 | output->next = output->dumb[output->current_image]; |
| 514 | pixman_renderer_output_set_buffer(&output->base, |
| 515 | output->image[output->current_image]); |
| 516 | |
| 517 | ec->renderer->repaint_output(&output->base, &total_damage); |
| 518 | |
| 519 | pixman_region32_fini(&total_damage); |
| 520 | pixman_region32_fini(&previous_damage); |
| 521 | } |
| 522 | |
| 523 | static void |
| 524 | drm_output_render(struct drm_output *output, pixman_region32_t *damage) |
| 525 | { |
| 526 | struct drm_compositor *c = |
| 527 | (struct drm_compositor *) output->base.compositor; |
| 528 | |
| 529 | if (c->use_pixman) |
| 530 | drm_output_render_pixman(output, damage); |
| 531 | else |
| 532 | drm_output_render_gl(output, damage); |
| 533 | |
| 534 | pixman_region32_subtract(&c->base.primary_plane.damage, |
| 535 | &c->base.primary_plane.damage, damage); |
| 536 | } |
| 537 | |
| 538 | static void |
Kristian Høgsberg | 6ddcdae | 2012-02-28 22:31:58 -0500 | [diff] [blame] | 539 | drm_output_repaint(struct weston_output *output_base, |
Kristian Høgsberg | d7c1726 | 2012-09-05 21:54:15 -0400 | [diff] [blame] | 540 | pixman_region32_t *damage) |
Benjamin Franzke | eefc36c | 2011-03-11 16:39:20 +0100 | [diff] [blame] | 541 | { |
| 542 | struct drm_output *output = (struct drm_output *) output_base; |
Kristian Høgsberg | 06cf6b0 | 2012-01-25 23:47:45 -0500 | [diff] [blame] | 543 | struct drm_compositor *compositor = |
| 544 | (struct drm_compositor *) output->base.compositor; |
Jesse Barnes | 58ef379 | 2012-02-23 09:45:49 -0500 | [diff] [blame] | 545 | struct drm_sprite *s; |
Kristian Høgsberg | cbcd047 | 2012-03-11 18:27:41 -0400 | [diff] [blame] | 546 | struct drm_mode *mode; |
Jesse Barnes | 58ef379 | 2012-02-23 09:45:49 -0500 | [diff] [blame] | 547 | int ret = 0; |
Benjamin Franzke | eefc36c | 2011-03-11 16:39:20 +0100 | [diff] [blame] | 548 | |
Ander Conselvan de Oliveira | 555c17d | 2012-05-02 16:42:21 +0300 | [diff] [blame] | 549 | if (!output->next) |
Kristian Høgsberg | d7c1726 | 2012-09-05 21:54:15 -0400 | [diff] [blame] | 550 | drm_output_render(output, damage); |
Ander Conselvan de Oliveira | 555c17d | 2012-05-02 16:42:21 +0300 | [diff] [blame] | 551 | if (!output->next) |
Kristian Høgsberg | cbcd047 | 2012-03-11 18:27:41 -0400 | [diff] [blame] | 552 | return; |
Benjamin Franzke | eefc36c | 2011-03-11 16:39:20 +0100 | [diff] [blame] | 553 | |
Kristian Høgsberg | cbcd047 | 2012-03-11 18:27:41 -0400 | [diff] [blame] | 554 | mode = container_of(output->base.current, struct drm_mode, base); |
Ander Conselvan de Oliveira | 555c17d | 2012-05-02 16:42:21 +0300 | [diff] [blame] | 555 | if (!output->current) { |
Kristian Høgsberg | cbcd047 | 2012-03-11 18:27:41 -0400 | [diff] [blame] | 556 | ret = drmModeSetCrtc(compositor->drm.fd, output->crtc_id, |
Ander Conselvan de Oliveira | 555c17d | 2012-05-02 16:42:21 +0300 | [diff] [blame] | 557 | output->next->fb_id, 0, 0, |
Kristian Høgsberg | cbcd047 | 2012-03-11 18:27:41 -0400 | [diff] [blame] | 558 | &output->connector_id, 1, |
| 559 | &mode->mode_info); |
| 560 | if (ret) { |
Martin Minarik | 6d11836 | 2012-06-07 18:01:59 +0200 | [diff] [blame] | 561 | weston_log("set mode failed: %m\n"); |
Kristian Høgsberg | cbcd047 | 2012-03-11 18:27:41 -0400 | [diff] [blame] | 562 | return; |
| 563 | } |
Benjamin Franzke | 1178a3c | 2011-04-10 16:49:52 +0200 | [diff] [blame] | 564 | } |
| 565 | |
Kristian Høgsberg | 06cf6b0 | 2012-01-25 23:47:45 -0500 | [diff] [blame] | 566 | if (drmModePageFlip(compositor->drm.fd, output->crtc_id, |
Ander Conselvan de Oliveira | 555c17d | 2012-05-02 16:42:21 +0300 | [diff] [blame] | 567 | output->next->fb_id, |
Kristian Høgsberg | 54f14c3 | 2012-01-18 11:47:41 -0500 | [diff] [blame] | 568 | DRM_MODE_PAGE_FLIP_EVENT, output) < 0) { |
Martin Minarik | 6d11836 | 2012-06-07 18:01:59 +0200 | [diff] [blame] | 569 | weston_log("queueing pageflip failed: %m\n"); |
Kristian Høgsberg | 06cf6b0 | 2012-01-25 23:47:45 -0500 | [diff] [blame] | 570 | return; |
Kristian Høgsberg | 54f14c3 | 2012-01-18 11:47:41 -0500 | [diff] [blame] | 571 | } |
Benjamin Franzke | ec4d342 | 2011-03-14 12:07:26 +0100 | [diff] [blame] | 572 | |
Ander Conselvan de Oliveira | a732696 | 2012-06-26 17:09:13 +0300 | [diff] [blame] | 573 | output->page_flip_pending = 1; |
| 574 | |
Kristian Høgsberg | 5626d34 | 2012-08-03 11:50:05 -0400 | [diff] [blame] | 575 | drm_output_set_cursor(output); |
| 576 | |
Jesse Barnes | 58ef379 | 2012-02-23 09:45:49 -0500 | [diff] [blame] | 577 | /* |
| 578 | * Now, update all the sprite surfaces |
| 579 | */ |
| 580 | wl_list_for_each(s, &compositor->sprite_list, link) { |
Ander Conselvan de Oliveira | 8d360b4 | 2012-11-09 14:19:05 +0200 | [diff] [blame] | 581 | uint32_t flags = 0, fb_id = 0; |
Jesse Barnes | 58ef379 | 2012-02-23 09:45:49 -0500 | [diff] [blame] | 582 | drmVBlank vbl = { |
| 583 | .request.type = DRM_VBLANK_RELATIVE | DRM_VBLANK_EVENT, |
| 584 | .request.sequence = 1, |
| 585 | }; |
| 586 | |
Ander Conselvan de Oliveira | 8d360b4 | 2012-11-09 14:19:05 +0200 | [diff] [blame] | 587 | if ((!s->current && !s->next) || |
Ander Conselvan de Oliveira | 2f7a30b | 2012-11-09 14:19:03 +0200 | [diff] [blame] | 588 | !drm_sprite_crtc_supported(output_base, s->possible_crtcs)) |
Jesse Barnes | 58ef379 | 2012-02-23 09:45:49 -0500 | [diff] [blame] | 589 | continue; |
| 590 | |
Ander Conselvan de Oliveira | 8d360b4 | 2012-11-09 14:19:05 +0200 | [diff] [blame] | 591 | if (s->next && !compositor->sprites_hidden) |
| 592 | fb_id = s->next->fb_id; |
| 593 | |
Jesse Barnes | 58ef379 | 2012-02-23 09:45:49 -0500 | [diff] [blame] | 594 | ret = drmModeSetPlane(compositor->drm.fd, s->plane_id, |
Ander Conselvan de Oliveira | 8d360b4 | 2012-11-09 14:19:05 +0200 | [diff] [blame] | 595 | output->crtc_id, fb_id, flags, |
Jesse Barnes | 58ef379 | 2012-02-23 09:45:49 -0500 | [diff] [blame] | 596 | s->dest_x, s->dest_y, |
| 597 | s->dest_w, s->dest_h, |
| 598 | s->src_x, s->src_y, |
| 599 | s->src_w, s->src_h); |
| 600 | if (ret) |
Martin Minarik | 6d11836 | 2012-06-07 18:01:59 +0200 | [diff] [blame] | 601 | weston_log("setplane failed: %d: %s\n", |
Jesse Barnes | 58ef379 | 2012-02-23 09:45:49 -0500 | [diff] [blame] | 602 | ret, strerror(errno)); |
| 603 | |
Rob Clark | 5ca1a47 | 2012-08-08 20:27:37 -0500 | [diff] [blame] | 604 | if (output->pipe > 0) |
| 605 | vbl.request.type |= DRM_VBLANK_SECONDARY; |
| 606 | |
Jesse Barnes | 58ef379 | 2012-02-23 09:45:49 -0500 | [diff] [blame] | 607 | /* |
| 608 | * Queue a vblank signal so we know when the surface |
| 609 | * becomes active on the display or has been replaced. |
| 610 | */ |
| 611 | vbl.request.signal = (unsigned long)s; |
| 612 | ret = drmWaitVBlank(compositor->drm.fd, &vbl); |
| 613 | if (ret) { |
Martin Minarik | 6d11836 | 2012-06-07 18:01:59 +0200 | [diff] [blame] | 614 | weston_log("vblank event request failed: %d: %s\n", |
Jesse Barnes | 58ef379 | 2012-02-23 09:45:49 -0500 | [diff] [blame] | 615 | ret, strerror(errno)); |
| 616 | } |
Ander Conselvan de Oliveira | a732696 | 2012-06-26 17:09:13 +0300 | [diff] [blame] | 617 | |
| 618 | s->output = output; |
| 619 | output->vblank_pending = 1; |
Jesse Barnes | 58ef379 | 2012-02-23 09:45:49 -0500 | [diff] [blame] | 620 | } |
| 621 | |
Kristian Høgsberg | 06cf6b0 | 2012-01-25 23:47:45 -0500 | [diff] [blame] | 622 | return; |
Kristian Høgsberg | fc783d4 | 2010-06-11 12:56:24 -0400 | [diff] [blame] | 623 | } |
| 624 | |
| 625 | static void |
Jonas Ådahl | e5a1225 | 2013-04-05 23:07:11 +0200 | [diff] [blame^] | 626 | drm_output_start_repaint_loop(struct weston_output *output_base) |
| 627 | { |
| 628 | struct drm_output *output = (struct drm_output *) output_base; |
| 629 | struct drm_compositor *compositor = (struct drm_compositor *) |
| 630 | output_base->compositor; |
| 631 | uint32_t fb_id; |
| 632 | |
| 633 | if (output->current) |
| 634 | fb_id = output->current->fb_id; |
| 635 | else |
| 636 | fb_id = output->original_crtc->buffer_id; |
| 637 | |
| 638 | if (drmModePageFlip(compositor->drm.fd, output->crtc_id, fb_id, |
| 639 | DRM_MODE_PAGE_FLIP_EVENT, output) < 0) { |
| 640 | weston_log("queueing pageflip failed: %m\n"); |
| 641 | return; |
| 642 | } |
| 643 | } |
| 644 | |
| 645 | static void |
Jesse Barnes | 58ef379 | 2012-02-23 09:45:49 -0500 | [diff] [blame] | 646 | vblank_handler(int fd, unsigned int frame, unsigned int sec, unsigned int usec, |
| 647 | void *data) |
| 648 | { |
| 649 | struct drm_sprite *s = (struct drm_sprite *)data; |
Ander Conselvan de Oliveira | a732696 | 2012-06-26 17:09:13 +0300 | [diff] [blame] | 650 | struct drm_output *output = s->output; |
| 651 | uint32_t msecs; |
| 652 | |
| 653 | output->vblank_pending = 0; |
Jesse Barnes | 58ef379 | 2012-02-23 09:45:49 -0500 | [diff] [blame] | 654 | |
Ander Conselvan de Oliveira | 526d461 | 2013-01-25 15:13:03 +0200 | [diff] [blame] | 655 | drm_output_release_fb(output, s->current); |
Ander Conselvan de Oliveira | 8d360b4 | 2012-11-09 14:19:05 +0200 | [diff] [blame] | 656 | s->current = s->next; |
| 657 | s->next = NULL; |
Ander Conselvan de Oliveira | a732696 | 2012-06-26 17:09:13 +0300 | [diff] [blame] | 658 | |
| 659 | if (!output->page_flip_pending) { |
| 660 | msecs = sec * 1000 + usec / 1000; |
| 661 | weston_output_finish_frame(&output->base, msecs); |
| 662 | } |
Jesse Barnes | 58ef379 | 2012-02-23 09:45:49 -0500 | [diff] [blame] | 663 | } |
| 664 | |
| 665 | static void |
Kristian Høgsberg | fc783d4 | 2010-06-11 12:56:24 -0400 | [diff] [blame] | 666 | page_flip_handler(int fd, unsigned int frame, |
| 667 | unsigned int sec, unsigned int usec, void *data) |
| 668 | { |
Benjamin Franzke | 1178a3c | 2011-04-10 16:49:52 +0200 | [diff] [blame] | 669 | struct drm_output *output = (struct drm_output *) data; |
Kristian Høgsberg | fc783d4 | 2010-06-11 12:56:24 -0400 | [diff] [blame] | 670 | uint32_t msecs; |
| 671 | |
Jonas Ådahl | e5a1225 | 2013-04-05 23:07:11 +0200 | [diff] [blame^] | 672 | /* We don't set page_flip_pending on start_repaint_loop, in that case |
| 673 | * we just want to page flip to the current buffer to get an accurate |
| 674 | * timestamp */ |
| 675 | if (output->page_flip_pending) { |
| 676 | drm_output_release_fb(output, output->current); |
| 677 | output->current = output->next; |
| 678 | output->next = NULL; |
| 679 | } |
Ander Conselvan de Oliveira | a732696 | 2012-06-26 17:09:13 +0300 | [diff] [blame] | 680 | |
Jonas Ådahl | e5a1225 | 2013-04-05 23:07:11 +0200 | [diff] [blame^] | 681 | output->page_flip_pending = 0; |
Kristian Høgsberg | cbcd047 | 2012-03-11 18:27:41 -0400 | [diff] [blame] | 682 | |
Ander Conselvan de Oliveira | a732696 | 2012-06-26 17:09:13 +0300 | [diff] [blame] | 683 | if (!output->vblank_pending) { |
| 684 | msecs = sec * 1000 + usec / 1000; |
| 685 | weston_output_finish_frame(&output->base, msecs); |
| 686 | } |
Benjamin Franzke | 1178a3c | 2011-04-10 16:49:52 +0200 | [diff] [blame] | 687 | } |
| 688 | |
Kristian Høgsberg | a2f84cc | 2012-12-07 12:37:58 -0500 | [diff] [blame] | 689 | static uint32_t |
| 690 | drm_output_check_sprite_format(struct drm_sprite *s, |
| 691 | struct weston_surface *es, struct gbm_bo *bo) |
Jesse Barnes | 58ef379 | 2012-02-23 09:45:49 -0500 | [diff] [blame] | 692 | { |
Kristian Høgsberg | a2f84cc | 2012-12-07 12:37:58 -0500 | [diff] [blame] | 693 | uint32_t i, format; |
| 694 | |
| 695 | format = gbm_bo_get_format(bo); |
| 696 | |
| 697 | if (format == GBM_FORMAT_ARGB8888) { |
| 698 | pixman_region32_t r; |
| 699 | |
Kristian Høgsberg | 63093a3 | 2013-03-01 14:29:16 -0500 | [diff] [blame] | 700 | pixman_region32_init_rect(&r, 0, 0, |
| 701 | es->geometry.width, |
| 702 | es->geometry.height); |
| 703 | pixman_region32_subtract(&r, &r, &es->opaque); |
Kristian Høgsberg | a2f84cc | 2012-12-07 12:37:58 -0500 | [diff] [blame] | 704 | |
| 705 | if (!pixman_region32_not_empty(&r)) |
| 706 | format = GBM_FORMAT_XRGB8888; |
| 707 | |
| 708 | pixman_region32_fini(&r); |
| 709 | } |
Jesse Barnes | 58ef379 | 2012-02-23 09:45:49 -0500 | [diff] [blame] | 710 | |
| 711 | for (i = 0; i < s->count_formats; i++) |
| 712 | if (s->formats[i] == format) |
Kristian Høgsberg | a2f84cc | 2012-12-07 12:37:58 -0500 | [diff] [blame] | 713 | return format; |
Jesse Barnes | 58ef379 | 2012-02-23 09:45:49 -0500 | [diff] [blame] | 714 | |
| 715 | return 0; |
| 716 | } |
| 717 | |
| 718 | static int |
| 719 | drm_surface_transform_supported(struct weston_surface *es) |
| 720 | { |
Kristian Høgsberg | d92c09c | 2013-01-29 16:56:15 -0500 | [diff] [blame] | 721 | return !es->transform.enabled || |
| 722 | (es->transform.matrix.type < WESTON_MATRIX_TRANSFORM_ROTATE); |
Jesse Barnes | 58ef379 | 2012-02-23 09:45:49 -0500 | [diff] [blame] | 723 | } |
| 724 | |
Kristian Høgsberg | 65a11e1 | 2012-08-03 11:30:18 -0400 | [diff] [blame] | 725 | static struct weston_plane * |
Jesse Barnes | 58ef379 | 2012-02-23 09:45:49 -0500 | [diff] [blame] | 726 | drm_output_prepare_overlay_surface(struct weston_output *output_base, |
Kristian Høgsberg | 6143f7d | 2012-07-14 00:31:32 -0400 | [diff] [blame] | 727 | struct weston_surface *es) |
Jesse Barnes | 58ef379 | 2012-02-23 09:45:49 -0500 | [diff] [blame] | 728 | { |
| 729 | struct weston_compositor *ec = output_base->compositor; |
| 730 | struct drm_compositor *c =(struct drm_compositor *) ec; |
| 731 | struct drm_sprite *s; |
| 732 | int found = 0; |
Jesse Barnes | 58ef379 | 2012-02-23 09:45:49 -0500 | [diff] [blame] | 733 | struct gbm_bo *bo; |
Jesse Barnes | 58ef379 | 2012-02-23 09:45:49 -0500 | [diff] [blame] | 734 | pixman_region32_t dest_rect, src_rect; |
Ander Conselvan de Oliveira | 409eebf | 2012-12-05 15:14:04 +0200 | [diff] [blame] | 735 | pixman_box32_t *box, tbox; |
Jesse Barnes | 58ef379 | 2012-02-23 09:45:49 -0500 | [diff] [blame] | 736 | uint32_t format; |
Kristian Høgsberg | 3b00bae | 2012-07-13 15:25:07 -0400 | [diff] [blame] | 737 | wl_fixed_t sx1, sy1, sx2, sy2; |
Jesse Barnes | 58ef379 | 2012-02-23 09:45:49 -0500 | [diff] [blame] | 738 | |
Ander Conselvan de Oliveira | 5fb4414 | 2013-01-25 15:13:05 +0200 | [diff] [blame] | 739 | if (c->gbm == NULL) |
| 740 | return NULL; |
| 741 | |
Ander Conselvan de Oliveira | 409eebf | 2012-12-05 15:14:04 +0200 | [diff] [blame] | 742 | if (es->buffer_transform != output_base->transform) |
Ander Conselvan de Oliveira | 2908a3d | 2012-11-27 17:03:43 +0200 | [diff] [blame] | 743 | return NULL; |
| 744 | |
Kristian Høgsberg | 65bec24 | 2012-03-05 19:57:35 -0500 | [diff] [blame] | 745 | if (c->sprites_are_broken) |
Kristian Høgsberg | 65a11e1 | 2012-08-03 11:30:18 -0400 | [diff] [blame] | 746 | return NULL; |
Kristian Høgsberg | 65bec24 | 2012-03-05 19:57:35 -0500 | [diff] [blame] | 747 | |
Ander Conselvan de Oliveira | d450b19 | 2012-06-26 17:09:12 +0300 | [diff] [blame] | 748 | if (es->output_mask != (1u << output_base->id)) |
Kristian Høgsberg | 65a11e1 | 2012-08-03 11:30:18 -0400 | [diff] [blame] | 749 | return NULL; |
Ander Conselvan de Oliveira | d450b19 | 2012-06-26 17:09:12 +0300 | [diff] [blame] | 750 | |
Pekka Paalanen | de685b8 | 2012-12-04 15:58:12 +0200 | [diff] [blame] | 751 | if (es->buffer_ref.buffer == NULL) |
Kristian Høgsberg | 65a11e1 | 2012-08-03 11:30:18 -0400 | [diff] [blame] | 752 | return NULL; |
Jesse Barnes | 58ef379 | 2012-02-23 09:45:49 -0500 | [diff] [blame] | 753 | |
Ville Syrjälä | 5a84f31 | 2012-11-16 11:48:46 +0200 | [diff] [blame] | 754 | if (es->alpha != 1.0f) |
| 755 | return NULL; |
| 756 | |
Pekka Paalanen | de685b8 | 2012-12-04 15:58:12 +0200 | [diff] [blame] | 757 | if (wl_buffer_is_shm(es->buffer_ref.buffer)) |
Rob Clark | 702ffae | 2012-08-09 14:18:27 -0500 | [diff] [blame] | 758 | return NULL; |
| 759 | |
Jesse Barnes | 58ef379 | 2012-02-23 09:45:49 -0500 | [diff] [blame] | 760 | if (!drm_surface_transform_supported(es)) |
Kristian Høgsberg | 65a11e1 | 2012-08-03 11:30:18 -0400 | [diff] [blame] | 761 | return NULL; |
Jesse Barnes | 58ef379 | 2012-02-23 09:45:49 -0500 | [diff] [blame] | 762 | |
Jesse Barnes | 58ef379 | 2012-02-23 09:45:49 -0500 | [diff] [blame] | 763 | wl_list_for_each(s, &c->sprite_list, link) { |
| 764 | if (!drm_sprite_crtc_supported(output_base, s->possible_crtcs)) |
| 765 | continue; |
| 766 | |
Ander Conselvan de Oliveira | 8d360b4 | 2012-11-09 14:19:05 +0200 | [diff] [blame] | 767 | if (!s->next) { |
Jesse Barnes | 58ef379 | 2012-02-23 09:45:49 -0500 | [diff] [blame] | 768 | found = 1; |
| 769 | break; |
| 770 | } |
| 771 | } |
| 772 | |
| 773 | /* No sprites available */ |
| 774 | if (!found) |
Kristian Høgsberg | 65a11e1 | 2012-08-03 11:30:18 -0400 | [diff] [blame] | 775 | return NULL; |
Jesse Barnes | 58ef379 | 2012-02-23 09:45:49 -0500 | [diff] [blame] | 776 | |
Kristian Høgsberg | 2763a2e | 2012-07-13 22:54:43 -0400 | [diff] [blame] | 777 | bo = gbm_bo_import(c->gbm, GBM_BO_IMPORT_WL_BUFFER, |
Pekka Paalanen | de685b8 | 2012-12-04 15:58:12 +0200 | [diff] [blame] | 778 | es->buffer_ref.buffer, GBM_BO_USE_SCANOUT); |
Kristian Høgsberg | 2763a2e | 2012-07-13 22:54:43 -0400 | [diff] [blame] | 779 | if (!bo) |
Kristian Høgsberg | 65a11e1 | 2012-08-03 11:30:18 -0400 | [diff] [blame] | 780 | return NULL; |
Kristian Høgsberg | 2763a2e | 2012-07-13 22:54:43 -0400 | [diff] [blame] | 781 | |
Kristian Høgsberg | a2f84cc | 2012-12-07 12:37:58 -0500 | [diff] [blame] | 782 | format = drm_output_check_sprite_format(s, es, bo); |
| 783 | if (format == 0) { |
Ander Conselvan de Oliveira | 8d360b4 | 2012-11-09 14:19:05 +0200 | [diff] [blame] | 784 | gbm_bo_destroy(bo); |
Kristian Høgsberg | 65a11e1 | 2012-08-03 11:30:18 -0400 | [diff] [blame] | 785 | return NULL; |
Jesse Barnes | 58ef379 | 2012-02-23 09:45:49 -0500 | [diff] [blame] | 786 | } |
| 787 | |
Ander Conselvan de Oliveira | ca5c6ae | 2012-12-07 13:18:11 +0200 | [diff] [blame] | 788 | s->next = drm_fb_get_from_bo(bo, c, format); |
Ander Conselvan de Oliveira | 8d360b4 | 2012-11-09 14:19:05 +0200 | [diff] [blame] | 789 | if (!s->next) { |
| 790 | gbm_bo_destroy(bo); |
| 791 | return NULL; |
| 792 | } |
| 793 | |
Pekka Paalanen | de685b8 | 2012-12-04 15:58:12 +0200 | [diff] [blame] | 794 | drm_fb_set_buffer(s->next, es->buffer_ref.buffer); |
Jesse Barnes | 58ef379 | 2012-02-23 09:45:49 -0500 | [diff] [blame] | 795 | |
Kristian Høgsberg | 65a11e1 | 2012-08-03 11:30:18 -0400 | [diff] [blame] | 796 | box = pixman_region32_extents(&es->transform.boundingbox); |
| 797 | s->plane.x = box->x1; |
| 798 | s->plane.y = box->y1; |
| 799 | |
Jesse Barnes | 58ef379 | 2012-02-23 09:45:49 -0500 | [diff] [blame] | 800 | /* |
| 801 | * Calculate the source & dest rects properly based on actual |
Martin Olsson | 3b132e3 | 2012-09-29 15:13:56 +0200 | [diff] [blame] | 802 | * position (note the caller has called weston_surface_update_transform() |
Jesse Barnes | 58ef379 | 2012-02-23 09:45:49 -0500 | [diff] [blame] | 803 | * for us already). |
| 804 | */ |
| 805 | pixman_region32_init(&dest_rect); |
| 806 | pixman_region32_intersect(&dest_rect, &es->transform.boundingbox, |
| 807 | &output_base->region); |
| 808 | pixman_region32_translate(&dest_rect, -output_base->x, -output_base->y); |
| 809 | box = pixman_region32_extents(&dest_rect); |
Ander Conselvan de Oliveira | 409eebf | 2012-12-05 15:14:04 +0200 | [diff] [blame] | 810 | tbox = weston_transformed_rect(output_base->width, |
| 811 | output_base->height, |
| 812 | output_base->transform, *box); |
| 813 | s->dest_x = tbox.x1; |
| 814 | s->dest_y = tbox.y1; |
| 815 | s->dest_w = tbox.x2 - tbox.x1; |
| 816 | s->dest_h = tbox.y2 - tbox.y1; |
Jesse Barnes | 58ef379 | 2012-02-23 09:45:49 -0500 | [diff] [blame] | 817 | pixman_region32_fini(&dest_rect); |
| 818 | |
| 819 | pixman_region32_init(&src_rect); |
| 820 | pixman_region32_intersect(&src_rect, &es->transform.boundingbox, |
| 821 | &output_base->region); |
Jesse Barnes | 58ef379 | 2012-02-23 09:45:49 -0500 | [diff] [blame] | 822 | box = pixman_region32_extents(&src_rect); |
Kristian Høgsberg | 3b00bae | 2012-07-13 15:25:07 -0400 | [diff] [blame] | 823 | |
| 824 | weston_surface_from_global_fixed(es, |
| 825 | wl_fixed_from_int(box->x1), |
| 826 | wl_fixed_from_int(box->y1), |
| 827 | &sx1, &sy1); |
| 828 | weston_surface_from_global_fixed(es, |
| 829 | wl_fixed_from_int(box->x2), |
| 830 | wl_fixed_from_int(box->y2), |
| 831 | &sx2, &sy2); |
| 832 | |
| 833 | if (sx1 < 0) |
| 834 | sx1 = 0; |
| 835 | if (sy1 < 0) |
| 836 | sy1 = 0; |
| 837 | if (sx2 > wl_fixed_from_int(es->geometry.width)) |
| 838 | sx2 = wl_fixed_from_int(es->geometry.width); |
| 839 | if (sy2 > wl_fixed_from_int(es->geometry.height)) |
| 840 | sy2 = wl_fixed_from_int(es->geometry.height); |
| 841 | |
Ander Conselvan de Oliveira | 409eebf | 2012-12-05 15:14:04 +0200 | [diff] [blame] | 842 | tbox.x1 = sx1; |
| 843 | tbox.y1 = sy1; |
| 844 | tbox.x2 = sx2; |
| 845 | tbox.y2 = sy2; |
| 846 | |
| 847 | tbox = weston_transformed_rect(wl_fixed_from_int(es->geometry.width), |
| 848 | wl_fixed_from_int(es->geometry.height), |
| 849 | es->buffer_transform, tbox); |
| 850 | |
| 851 | s->src_x = tbox.x1 << 8; |
| 852 | s->src_y = tbox.y1 << 8; |
| 853 | s->src_w = (tbox.x2 - tbox.x1) << 8; |
| 854 | s->src_h = (tbox.y2 - tbox.y1) << 8; |
Jesse Barnes | 58ef379 | 2012-02-23 09:45:49 -0500 | [diff] [blame] | 855 | pixman_region32_fini(&src_rect); |
| 856 | |
Kristian Høgsberg | 65a11e1 | 2012-08-03 11:30:18 -0400 | [diff] [blame] | 857 | return &s->plane; |
Jesse Barnes | 58ef379 | 2012-02-23 09:45:49 -0500 | [diff] [blame] | 858 | } |
| 859 | |
Kristian Høgsberg | 65a11e1 | 2012-08-03 11:30:18 -0400 | [diff] [blame] | 860 | static struct weston_plane * |
Kristian Høgsberg | 5626d34 | 2012-08-03 11:50:05 -0400 | [diff] [blame] | 861 | drm_output_prepare_cursor_surface(struct weston_output *output_base, |
| 862 | struct weston_surface *es) |
Kristian Høgsberg | d8bf90c | 2012-02-23 23:03:14 -0500 | [diff] [blame] | 863 | { |
Kristian Høgsberg | 8a01580 | 2012-08-09 17:19:23 -0400 | [diff] [blame] | 864 | struct drm_compositor *c = |
| 865 | (struct drm_compositor *) output_base->compositor; |
Kristian Høgsberg | a6edab3 | 2012-07-14 01:06:28 -0400 | [diff] [blame] | 866 | struct drm_output *output = (struct drm_output *) output_base; |
Kristian Høgsberg | 5626d34 | 2012-08-03 11:50:05 -0400 | [diff] [blame] | 867 | |
Ander Conselvan de Oliveira | 5fb4414 | 2013-01-25 15:13:05 +0200 | [diff] [blame] | 868 | if (c->gbm == NULL) |
| 869 | return NULL; |
Ander Conselvan de Oliveira | 2908a3d | 2012-11-27 17:03:43 +0200 | [diff] [blame] | 870 | if (output->base.transform != WL_OUTPUT_TRANSFORM_NORMAL) |
| 871 | return NULL; |
Kristian Høgsberg | 5626d34 | 2012-08-03 11:50:05 -0400 | [diff] [blame] | 872 | if (output->cursor_surface) |
| 873 | return NULL; |
| 874 | if (es->output_mask != (1u << output_base->id)) |
| 875 | return NULL; |
Rob Clark | ab5b1e3 | 2012-08-09 13:24:45 -0500 | [diff] [blame] | 876 | if (c->cursors_are_broken) |
Kristian Høgsberg | 8a01580 | 2012-08-09 17:19:23 -0400 | [diff] [blame] | 877 | return NULL; |
Pekka Paalanen | de685b8 | 2012-12-04 15:58:12 +0200 | [diff] [blame] | 878 | if (es->buffer_ref.buffer == NULL || |
| 879 | !wl_buffer_is_shm(es->buffer_ref.buffer) || |
Kristian Høgsberg | 5626d34 | 2012-08-03 11:50:05 -0400 | [diff] [blame] | 880 | es->geometry.width > 64 || es->geometry.height > 64) |
| 881 | return NULL; |
| 882 | |
| 883 | output->cursor_surface = es; |
| 884 | |
| 885 | return &output->cursor_plane; |
| 886 | } |
| 887 | |
| 888 | static void |
| 889 | drm_output_set_cursor(struct drm_output *output) |
| 890 | { |
| 891 | struct weston_surface *es = output->cursor_surface; |
Kristian Høgsberg | a6edab3 | 2012-07-14 01:06:28 -0400 | [diff] [blame] | 892 | struct drm_compositor *c = |
| 893 | (struct drm_compositor *) output->base.compositor; |
| 894 | EGLint handle, stride; |
| 895 | struct gbm_bo *bo; |
| 896 | uint32_t buf[64 * 64]; |
| 897 | unsigned char *s; |
Kristian Høgsberg | 24e4275 | 2012-07-18 12:08:37 -0400 | [diff] [blame] | 898 | int i, x, y; |
Kristian Høgsberg | d8bf90c | 2012-02-23 23:03:14 -0500 | [diff] [blame] | 899 | |
Kristian Høgsberg | 79af73e | 2012-08-03 15:45:23 -0400 | [diff] [blame] | 900 | output->cursor_surface = NULL; |
Kristian Høgsberg | 5626d34 | 2012-08-03 11:50:05 -0400 | [diff] [blame] | 901 | if (es == NULL) { |
| 902 | drmModeSetCursor(c->drm.fd, output->crtc_id, 0, 0, 0); |
| 903 | return; |
| 904 | } |
Kristian Høgsberg | d8bf90c | 2012-02-23 23:03:14 -0500 | [diff] [blame] | 905 | |
Pekka Paalanen | de685b8 | 2012-12-04 15:58:12 +0200 | [diff] [blame] | 906 | if (es->buffer_ref.buffer && |
| 907 | pixman_region32_not_empty(&output->cursor_plane.damage)) { |
Kristian Høgsberg | 5626d34 | 2012-08-03 11:50:05 -0400 | [diff] [blame] | 908 | pixman_region32_fini(&output->cursor_plane.damage); |
| 909 | pixman_region32_init(&output->cursor_plane.damage); |
Kristian Høgsberg | 1f5de35 | 2012-07-18 12:09:58 -0400 | [diff] [blame] | 910 | output->current_cursor ^= 1; |
| 911 | bo = output->cursor_bo[output->current_cursor]; |
| 912 | memset(buf, 0, sizeof buf); |
Pekka Paalanen | de685b8 | 2012-12-04 15:58:12 +0200 | [diff] [blame] | 913 | stride = wl_shm_buffer_get_stride(es->buffer_ref.buffer); |
| 914 | s = wl_shm_buffer_get_data(es->buffer_ref.buffer); |
Kristian Høgsberg | 1f5de35 | 2012-07-18 12:09:58 -0400 | [diff] [blame] | 915 | for (i = 0; i < es->geometry.height; i++) |
| 916 | memcpy(buf + i * 64, s + i * stride, |
| 917 | es->geometry.width * 4); |
Kristian Høgsberg | d8bf90c | 2012-02-23 23:03:14 -0500 | [diff] [blame] | 918 | |
Kristian Høgsberg | 1f5de35 | 2012-07-18 12:09:58 -0400 | [diff] [blame] | 919 | if (gbm_bo_write(bo, buf, sizeof buf) < 0) |
Pekka Paalanen | ae29da2 | 2012-08-06 14:57:05 +0300 | [diff] [blame] | 920 | weston_log("failed update cursor: %m\n"); |
Kristian Høgsberg | a6edab3 | 2012-07-14 01:06:28 -0400 | [diff] [blame] | 921 | |
Kristian Høgsberg | 1f5de35 | 2012-07-18 12:09:58 -0400 | [diff] [blame] | 922 | handle = gbm_bo_get_handle(bo).s32; |
| 923 | if (drmModeSetCursor(c->drm.fd, |
Rob Clark | ab5b1e3 | 2012-08-09 13:24:45 -0500 | [diff] [blame] | 924 | output->crtc_id, handle, 64, 64)) { |
Pekka Paalanen | ae29da2 | 2012-08-06 14:57:05 +0300 | [diff] [blame] | 925 | weston_log("failed to set cursor: %m\n"); |
Rob Clark | ab5b1e3 | 2012-08-09 13:24:45 -0500 | [diff] [blame] | 926 | c->cursors_are_broken = 1; |
| 927 | } |
Kristian Høgsberg | a6edab3 | 2012-07-14 01:06:28 -0400 | [diff] [blame] | 928 | } |
| 929 | |
Kristian Høgsberg | 24e4275 | 2012-07-18 12:08:37 -0400 | [diff] [blame] | 930 | x = es->geometry.x - output->base.x; |
| 931 | y = es->geometry.y - output->base.y; |
Kristian Høgsberg | 65a11e1 | 2012-08-03 11:30:18 -0400 | [diff] [blame] | 932 | if (output->cursor_plane.x != x || output->cursor_plane.y != y) { |
Rob Clark | ab5b1e3 | 2012-08-09 13:24:45 -0500 | [diff] [blame] | 933 | if (drmModeMoveCursor(c->drm.fd, output->crtc_id, x, y)) { |
Kristian Høgsberg | 24e4275 | 2012-07-18 12:08:37 -0400 | [diff] [blame] | 934 | weston_log("failed to move cursor: %m\n"); |
Rob Clark | ab5b1e3 | 2012-08-09 13:24:45 -0500 | [diff] [blame] | 935 | c->cursors_are_broken = 1; |
| 936 | } |
| 937 | |
Kristian Høgsberg | 65a11e1 | 2012-08-03 11:30:18 -0400 | [diff] [blame] | 938 | output->cursor_plane.x = x; |
| 939 | output->cursor_plane.y = y; |
Kristian Høgsberg | a6edab3 | 2012-07-14 01:06:28 -0400 | [diff] [blame] | 940 | } |
Kristian Høgsberg | d8bf90c | 2012-02-23 23:03:14 -0500 | [diff] [blame] | 941 | } |
| 942 | |
Jesse Barnes | 58ef379 | 2012-02-23 09:45:49 -0500 | [diff] [blame] | 943 | static void |
| 944 | drm_assign_planes(struct weston_output *output) |
| 945 | { |
Kristian Høgsberg | a6edab3 | 2012-07-14 01:06:28 -0400 | [diff] [blame] | 946 | struct drm_compositor *c = |
| 947 | (struct drm_compositor *) output->compositor; |
Kristian Høgsberg | 8e1f77f | 2012-05-03 11:39:35 -0400 | [diff] [blame] | 948 | struct weston_surface *es, *next; |
Jesse Barnes | 58ef379 | 2012-02-23 09:45:49 -0500 | [diff] [blame] | 949 | pixman_region32_t overlap, surface_overlap; |
Kristian Høgsberg | 65a11e1 | 2012-08-03 11:30:18 -0400 | [diff] [blame] | 950 | struct weston_plane *primary, *next_plane; |
Jesse Barnes | 58ef379 | 2012-02-23 09:45:49 -0500 | [diff] [blame] | 951 | |
| 952 | /* |
| 953 | * Find a surface for each sprite in the output using some heuristics: |
| 954 | * 1) size |
| 955 | * 2) frequency of update |
| 956 | * 3) opacity (though some hw might support alpha blending) |
| 957 | * 4) clipping (this can be fixed with color keys) |
| 958 | * |
| 959 | * The idea is to save on blitting since this should save power. |
| 960 | * If we can get a large video surface on the sprite for example, |
| 961 | * the main display surface may not need to update at all, and |
| 962 | * the client buffer can be used directly for the sprite surface |
| 963 | * as we do for flipping full screen surfaces. |
| 964 | */ |
| 965 | pixman_region32_init(&overlap); |
Kristian Høgsberg | 65a11e1 | 2012-08-03 11:30:18 -0400 | [diff] [blame] | 966 | primary = &c->base.primary_plane; |
Kristian Høgsberg | a6edab3 | 2012-07-14 01:06:28 -0400 | [diff] [blame] | 967 | wl_list_for_each_safe(es, next, &c->base.surface_list, link) { |
Pekka Paalanen | ccfeae2 | 2012-12-04 15:58:14 +0200 | [diff] [blame] | 968 | /* test whether this buffer can ever go into a plane: |
| 969 | * non-shm, or small enough to be a cursor |
| 970 | */ |
| 971 | if ((es->buffer_ref.buffer && |
| 972 | !wl_buffer_is_shm(es->buffer_ref.buffer)) || |
| 973 | (es->geometry.width <= 64 && es->geometry.height <= 64)) |
| 974 | es->keep_buffer = 1; |
| 975 | else |
| 976 | es->keep_buffer = 0; |
| 977 | |
Jesse Barnes | 58ef379 | 2012-02-23 09:45:49 -0500 | [diff] [blame] | 978 | pixman_region32_init(&surface_overlap); |
| 979 | pixman_region32_intersect(&surface_overlap, &overlap, |
| 980 | &es->transform.boundingbox); |
| 981 | |
Kristian Høgsberg | 65a11e1 | 2012-08-03 11:30:18 -0400 | [diff] [blame] | 982 | next_plane = NULL; |
Kristian Høgsberg | 6143f7d | 2012-07-14 00:31:32 -0400 | [diff] [blame] | 983 | if (pixman_region32_not_empty(&surface_overlap)) |
Kristian Høgsberg | 65a11e1 | 2012-08-03 11:30:18 -0400 | [diff] [blame] | 984 | next_plane = primary; |
| 985 | if (next_plane == NULL) |
Kristian Høgsberg | 5626d34 | 2012-08-03 11:50:05 -0400 | [diff] [blame] | 986 | next_plane = drm_output_prepare_cursor_surface(output, es); |
Kristian Høgsberg | 65a11e1 | 2012-08-03 11:30:18 -0400 | [diff] [blame] | 987 | if (next_plane == NULL) |
| 988 | next_plane = drm_output_prepare_scanout_surface(output, es); |
| 989 | if (next_plane == NULL) |
| 990 | next_plane = drm_output_prepare_overlay_surface(output, es); |
| 991 | if (next_plane == NULL) |
| 992 | next_plane = primary; |
| 993 | weston_surface_move_to_plane(es, next_plane); |
| 994 | if (next_plane == primary) |
Jesse Barnes | 58ef379 | 2012-02-23 09:45:49 -0500 | [diff] [blame] | 995 | pixman_region32_union(&overlap, &overlap, |
| 996 | &es->transform.boundingbox); |
Kristian Høgsberg | 6143f7d | 2012-07-14 00:31:32 -0400 | [diff] [blame] | 997 | |
Jesse Barnes | 58ef379 | 2012-02-23 09:45:49 -0500 | [diff] [blame] | 998 | pixman_region32_fini(&surface_overlap); |
| 999 | } |
| 1000 | pixman_region32_fini(&overlap); |
Jesse Barnes | 58ef379 | 2012-02-23 09:45:49 -0500 | [diff] [blame] | 1001 | } |
| 1002 | |
Matt Roper | 361d2ad | 2011-08-29 13:52:23 -0700 | [diff] [blame] | 1003 | static void |
Ander Conselvan de Oliveira | 5fb4414 | 2013-01-25 15:13:05 +0200 | [diff] [blame] | 1004 | drm_output_fini_pixman(struct drm_output *output); |
| 1005 | |
| 1006 | static void |
Kristian Høgsberg | 8334bc1 | 2012-01-03 10:29:47 -0500 | [diff] [blame] | 1007 | drm_output_destroy(struct weston_output *output_base) |
Matt Roper | 361d2ad | 2011-08-29 13:52:23 -0700 | [diff] [blame] | 1008 | { |
| 1009 | struct drm_output *output = (struct drm_output *) output_base; |
| 1010 | struct drm_compositor *c = |
Benjamin Franzke | 117483d | 2011-08-30 11:38:26 +0200 | [diff] [blame] | 1011 | (struct drm_compositor *) output->base.compositor; |
Matt Roper | 361d2ad | 2011-08-29 13:52:23 -0700 | [diff] [blame] | 1012 | drmModeCrtcPtr origcrtc = output->original_crtc; |
Matt Roper | 361d2ad | 2011-08-29 13:52:23 -0700 | [diff] [blame] | 1013 | |
Tiago Vignatti | 8e53c7f | 2012-02-29 19:53:50 +0200 | [diff] [blame] | 1014 | if (output->backlight) |
| 1015 | backlight_destroy(output->backlight); |
| 1016 | |
Matt Roper | 361d2ad | 2011-08-29 13:52:23 -0700 | [diff] [blame] | 1017 | /* Turn off hardware cursor */ |
Kristian Høgsberg | a6edab3 | 2012-07-14 01:06:28 -0400 | [diff] [blame] | 1018 | drmModeSetCursor(c->drm.fd, output->crtc_id, 0, 0, 0); |
Matt Roper | 361d2ad | 2011-08-29 13:52:23 -0700 | [diff] [blame] | 1019 | |
| 1020 | /* Restore original CRTC state */ |
| 1021 | drmModeSetCrtc(c->drm.fd, origcrtc->crtc_id, origcrtc->buffer_id, |
Benjamin Franzke | 117483d | 2011-08-30 11:38:26 +0200 | [diff] [blame] | 1022 | origcrtc->x, origcrtc->y, |
| 1023 | &output->connector_id, 1, &origcrtc->mode); |
Matt Roper | 361d2ad | 2011-08-29 13:52:23 -0700 | [diff] [blame] | 1024 | drmModeFreeCrtc(origcrtc); |
| 1025 | |
Benjamin Franzke | 48c4ea2 | 2011-08-30 11:44:56 +0200 | [diff] [blame] | 1026 | c->crtc_allocator &= ~(1 << output->crtc_id); |
| 1027 | c->connector_allocator &= ~(1 << output->connector_id); |
| 1028 | |
Ander Conselvan de Oliveira | 5fb4414 | 2013-01-25 15:13:05 +0200 | [diff] [blame] | 1029 | if (c->use_pixman) { |
| 1030 | drm_output_fini_pixman(output); |
| 1031 | } else { |
| 1032 | gl_renderer_output_destroy(output_base); |
| 1033 | gbm_surface_destroy(output->surface); |
| 1034 | } |
Kristian Høgsberg | cbcd047 | 2012-03-11 18:27:41 -0400 | [diff] [blame] | 1035 | |
Kristian Høgsberg | 65a11e1 | 2012-08-03 11:30:18 -0400 | [diff] [blame] | 1036 | weston_plane_release(&output->fb_plane); |
| 1037 | weston_plane_release(&output->cursor_plane); |
| 1038 | |
Kristian Høgsberg | 8334bc1 | 2012-01-03 10:29:47 -0500 | [diff] [blame] | 1039 | weston_output_destroy(&output->base); |
Benjamin Franzke | 48c4ea2 | 2011-08-30 11:44:56 +0200 | [diff] [blame] | 1040 | wl_list_remove(&output->base.link); |
| 1041 | |
Kristian Høgsberg | 148ef01 | 2012-07-26 23:03:57 -0400 | [diff] [blame] | 1042 | free(output->name); |
Matt Roper | 361d2ad | 2011-08-29 13:52:23 -0700 | [diff] [blame] | 1043 | free(output); |
| 1044 | } |
| 1045 | |
Alex Wu | b7b8bda | 2012-04-17 17:20:48 +0800 | [diff] [blame] | 1046 | static struct drm_mode * |
| 1047 | choose_mode (struct drm_output *output, struct weston_mode *target_mode) |
| 1048 | { |
| 1049 | struct drm_mode *tmp_mode = NULL, *mode; |
| 1050 | |
| 1051 | if (output->base.current->width == target_mode->width && |
| 1052 | output->base.current->height == target_mode->height && |
| 1053 | (output->base.current->refresh == target_mode->refresh || |
| 1054 | target_mode->refresh == 0)) |
| 1055 | return (struct drm_mode *)output->base.current; |
| 1056 | |
| 1057 | wl_list_for_each(mode, &output->base.mode_list, base.link) { |
| 1058 | if (mode->mode_info.hdisplay == target_mode->width && |
| 1059 | mode->mode_info.vdisplay == target_mode->height) { |
| 1060 | if (mode->mode_info.vrefresh == target_mode->refresh || |
| 1061 | target_mode->refresh == 0) { |
| 1062 | return mode; |
| 1063 | } else if (!tmp_mode) |
| 1064 | tmp_mode = mode; |
| 1065 | } |
| 1066 | } |
| 1067 | |
| 1068 | return tmp_mode; |
| 1069 | } |
| 1070 | |
| 1071 | static int |
Ander Conselvan de Oliveira | 6c01c9c | 2012-12-14 13:37:30 -0200 | [diff] [blame] | 1072 | drm_output_init_egl(struct drm_output *output, struct drm_compositor *ec); |
Ander Conselvan de Oliveira | 5fb4414 | 2013-01-25 15:13:05 +0200 | [diff] [blame] | 1073 | static int |
| 1074 | drm_output_init_pixman(struct drm_output *output, struct drm_compositor *c); |
Ander Conselvan de Oliveira | 6c01c9c | 2012-12-14 13:37:30 -0200 | [diff] [blame] | 1075 | |
| 1076 | static int |
Alex Wu | b7b8bda | 2012-04-17 17:20:48 +0800 | [diff] [blame] | 1077 | drm_output_switch_mode(struct weston_output *output_base, struct weston_mode *mode) |
| 1078 | { |
| 1079 | struct drm_output *output; |
| 1080 | struct drm_mode *drm_mode; |
Alex Wu | b7b8bda | 2012-04-17 17:20:48 +0800 | [diff] [blame] | 1081 | struct drm_compositor *ec; |
Alex Wu | b7b8bda | 2012-04-17 17:20:48 +0800 | [diff] [blame] | 1082 | |
| 1083 | if (output_base == NULL) { |
Martin Minarik | 6d11836 | 2012-06-07 18:01:59 +0200 | [diff] [blame] | 1084 | weston_log("output is NULL.\n"); |
Alex Wu | b7b8bda | 2012-04-17 17:20:48 +0800 | [diff] [blame] | 1085 | return -1; |
| 1086 | } |
| 1087 | |
| 1088 | if (mode == NULL) { |
Martin Minarik | 6d11836 | 2012-06-07 18:01:59 +0200 | [diff] [blame] | 1089 | weston_log("mode is NULL.\n"); |
Alex Wu | b7b8bda | 2012-04-17 17:20:48 +0800 | [diff] [blame] | 1090 | return -1; |
| 1091 | } |
| 1092 | |
| 1093 | ec = (struct drm_compositor *)output_base->compositor; |
| 1094 | output = (struct drm_output *)output_base; |
| 1095 | drm_mode = choose_mode (output, mode); |
| 1096 | |
| 1097 | if (!drm_mode) { |
Martin Minarik | 6d11836 | 2012-06-07 18:01:59 +0200 | [diff] [blame] | 1098 | weston_log("%s, invalid resolution:%dx%d\n", __func__, mode->width, mode->height); |
Alex Wu | b7b8bda | 2012-04-17 17:20:48 +0800 | [diff] [blame] | 1099 | return -1; |
Ander Conselvan de Oliveira | 6c01c9c | 2012-12-14 13:37:30 -0200 | [diff] [blame] | 1100 | } |
| 1101 | |
| 1102 | if (&drm_mode->base == output->base.current) |
Alex Wu | b7b8bda | 2012-04-17 17:20:48 +0800 | [diff] [blame] | 1103 | return 0; |
Alex Wu | b7b8bda | 2012-04-17 17:20:48 +0800 | [diff] [blame] | 1104 | |
Ander Conselvan de Oliveira | 6c01c9c | 2012-12-14 13:37:30 -0200 | [diff] [blame] | 1105 | output->base.current->flags = 0; |
Alex Wu | b7b8bda | 2012-04-17 17:20:48 +0800 | [diff] [blame] | 1106 | |
Ander Conselvan de Oliveira | 6c01c9c | 2012-12-14 13:37:30 -0200 | [diff] [blame] | 1107 | output->base.current = &drm_mode->base; |
| 1108 | output->base.current->flags = |
Alex Wu | b7b8bda | 2012-04-17 17:20:48 +0800 | [diff] [blame] | 1109 | WL_OUTPUT_MODE_CURRENT | WL_OUTPUT_MODE_PREFERRED; |
| 1110 | |
Alex Wu | b7b8bda | 2012-04-17 17:20:48 +0800 | [diff] [blame] | 1111 | /* reset rendering stuff. */ |
Ander Conselvan de Oliveira | 526d461 | 2013-01-25 15:13:03 +0200 | [diff] [blame] | 1112 | drm_output_release_fb(output, output->current); |
| 1113 | drm_output_release_fb(output, output->next); |
| 1114 | output->current = output->next = NULL; |
Alex Wu | b7b8bda | 2012-04-17 17:20:48 +0800 | [diff] [blame] | 1115 | |
Ander Conselvan de Oliveira | 5fb4414 | 2013-01-25 15:13:05 +0200 | [diff] [blame] | 1116 | if (ec->use_pixman) { |
| 1117 | drm_output_fini_pixman(output); |
| 1118 | if (drm_output_init_pixman(output, ec) < 0) { |
| 1119 | weston_log("failed to init output pixman state with " |
| 1120 | "new mode\n"); |
| 1121 | return -1; |
| 1122 | } |
| 1123 | } else { |
| 1124 | gl_renderer_output_destroy(&output->base); |
| 1125 | gbm_surface_destroy(output->surface); |
Alex Wu | b7b8bda | 2012-04-17 17:20:48 +0800 | [diff] [blame] | 1126 | |
Ander Conselvan de Oliveira | 5fb4414 | 2013-01-25 15:13:05 +0200 | [diff] [blame] | 1127 | if (drm_output_init_egl(output, ec) < 0) { |
| 1128 | weston_log("failed to init output egl state with " |
| 1129 | "new mode"); |
| 1130 | return -1; |
| 1131 | } |
Ander Conselvan de Oliveira | 6c01c9c | 2012-12-14 13:37:30 -0200 | [diff] [blame] | 1132 | } |
| 1133 | |
Alex Wu | b7b8bda | 2012-04-17 17:20:48 +0800 | [diff] [blame] | 1134 | return 0; |
Alex Wu | b7b8bda | 2012-04-17 17:20:48 +0800 | [diff] [blame] | 1135 | } |
| 1136 | |
Kristian Høgsberg | b186847 | 2011-04-22 12:27:57 -0400 | [diff] [blame] | 1137 | static int |
Kristian Høgsberg | fc783d4 | 2010-06-11 12:56:24 -0400 | [diff] [blame] | 1138 | on_drm_input(int fd, uint32_t mask, void *data) |
| 1139 | { |
| 1140 | drmEventContext evctx; |
| 1141 | |
| 1142 | memset(&evctx, 0, sizeof evctx); |
| 1143 | evctx.version = DRM_EVENT_CONTEXT_VERSION; |
| 1144 | evctx.page_flip_handler = page_flip_handler; |
Jesse Barnes | 58ef379 | 2012-02-23 09:45:49 -0500 | [diff] [blame] | 1145 | evctx.vblank_handler = vblank_handler; |
Kristian Høgsberg | fc783d4 | 2010-06-11 12:56:24 -0400 | [diff] [blame] | 1146 | drmHandleEvent(fd, &evctx); |
Kristian Høgsberg | b186847 | 2011-04-22 12:27:57 -0400 | [diff] [blame] | 1147 | |
| 1148 | return 1; |
Kristian Høgsberg | fc783d4 | 2010-06-11 12:56:24 -0400 | [diff] [blame] | 1149 | } |
| 1150 | |
| 1151 | static int |
Ander Conselvan de Oliveira | 2292917 | 2013-01-25 15:13:02 +0200 | [diff] [blame] | 1152 | init_drm(struct drm_compositor *ec, struct udev_device *device) |
Kristian Høgsberg | fc783d4 | 2010-06-11 12:56:24 -0400 | [diff] [blame] | 1153 | { |
Kristian Høgsberg | b5ef591 | 2012-03-28 22:53:49 -0400 | [diff] [blame] | 1154 | const char *filename, *sysnum; |
Kristian Høgsberg | 5fcd0aa | 2010-08-09 14:43:33 -0400 | [diff] [blame] | 1155 | int fd; |
Kristian Høgsberg | cbcd047 | 2012-03-11 18:27:41 -0400 | [diff] [blame] | 1156 | |
Kristian Høgsberg | b71302e | 2012-05-10 12:28:35 -0400 | [diff] [blame] | 1157 | sysnum = udev_device_get_sysnum(device); |
| 1158 | if (sysnum) |
| 1159 | ec->drm.id = atoi(sysnum); |
| 1160 | if (!sysnum || ec->drm.id < 0) { |
Martin Minarik | 6d11836 | 2012-06-07 18:01:59 +0200 | [diff] [blame] | 1161 | weston_log("cannot get device sysnum\n"); |
Kristian Høgsberg | b71302e | 2012-05-10 12:28:35 -0400 | [diff] [blame] | 1162 | return -1; |
| 1163 | } |
| 1164 | |
Kristian Høgsberg | 5fcd0aa | 2010-08-09 14:43:33 -0400 | [diff] [blame] | 1165 | filename = udev_device_get_devnode(device); |
David Herrmann | 63ff706 | 2011-11-05 18:46:01 +0100 | [diff] [blame] | 1166 | fd = open(filename, O_RDWR | O_CLOEXEC); |
Kristian Høgsberg | 5fcd0aa | 2010-08-09 14:43:33 -0400 | [diff] [blame] | 1167 | if (fd < 0) { |
Kristian Høgsberg | fc783d4 | 2010-06-11 12:56:24 -0400 | [diff] [blame] | 1168 | /* Probably permissions error */ |
Martin Minarik | 6d11836 | 2012-06-07 18:01:59 +0200 | [diff] [blame] | 1169 | weston_log("couldn't open %s, skipping\n", |
Kristian Høgsberg | fc783d4 | 2010-06-11 12:56:24 -0400 | [diff] [blame] | 1170 | udev_device_get_devnode(device)); |
| 1171 | return -1; |
| 1172 | } |
| 1173 | |
Kristian Høgsberg | fc9c5e0 | 2012-06-08 16:45:33 -0400 | [diff] [blame] | 1174 | weston_log("using %s\n", filename); |
| 1175 | |
Benjamin Franzke | 2af7f10 | 2011-03-02 11:14:59 +0100 | [diff] [blame] | 1176 | ec->drm.fd = fd; |
Ander Conselvan de Oliveira | 2292917 | 2013-01-25 15:13:02 +0200 | [diff] [blame] | 1177 | |
Ander Conselvan de Oliveira | 1d41ad4 | 2013-01-25 15:13:04 +0200 | [diff] [blame] | 1178 | |
Ander Conselvan de Oliveira | 2292917 | 2013-01-25 15:13:02 +0200 | [diff] [blame] | 1179 | return 0; |
| 1180 | } |
| 1181 | |
| 1182 | static int |
| 1183 | init_egl(struct drm_compositor *ec) |
| 1184 | { |
Benjamin Franzke | 060cf80 | 2011-04-30 09:32:11 +0200 | [diff] [blame] | 1185 | ec->gbm = gbm_create_device(ec->drm.fd); |
Kristian Høgsberg | fc783d4 | 2010-06-11 12:56:24 -0400 | [diff] [blame] | 1186 | |
John Kåre Alsaker | ef591aa | 2013-03-02 12:27:39 +0100 | [diff] [blame] | 1187 | if (!ec->gbm) |
| 1188 | return -1; |
| 1189 | |
John Kåre Alsaker | 779b52a | 2012-11-13 19:10:29 +0100 | [diff] [blame] | 1190 | if (gl_renderer_create(&ec->base, ec->gbm, gl_renderer_opaque_attribs, |
John Kåre Alsaker | 1b7ad16 | 2012-11-13 19:10:19 +0100 | [diff] [blame] | 1191 | NULL) < 0) { |
| 1192 | gbm_device_destroy(ec->gbm); |
Kristian Høgsberg | cbcd047 | 2012-03-11 18:27:41 -0400 | [diff] [blame] | 1193 | return -1; |
| 1194 | } |
| 1195 | |
Kristian Høgsberg | fc783d4 | 2010-06-11 12:56:24 -0400 | [diff] [blame] | 1196 | return 0; |
| 1197 | } |
| 1198 | |
Ander Conselvan de Oliveira | 5fb4414 | 2013-01-25 15:13:05 +0200 | [diff] [blame] | 1199 | static int |
| 1200 | init_pixman(struct drm_compositor *ec) |
| 1201 | { |
| 1202 | return pixman_renderer_init(&ec->base); |
| 1203 | } |
| 1204 | |
Ander Conselvan de Oliveira | 42c4646 | 2012-08-09 16:45:00 +0300 | [diff] [blame] | 1205 | static struct drm_mode * |
Kristian Høgsberg | 8f0ce05 | 2011-06-21 11:16:58 -0400 | [diff] [blame] | 1206 | drm_output_add_mode(struct drm_output *output, drmModeModeInfo *info) |
| 1207 | { |
| 1208 | struct drm_mode *mode; |
Kristian Høgsberg | c4621b0 | 2012-05-10 12:23:53 -0400 | [diff] [blame] | 1209 | uint64_t refresh; |
Kristian Høgsberg | 8f0ce05 | 2011-06-21 11:16:58 -0400 | [diff] [blame] | 1210 | |
| 1211 | mode = malloc(sizeof *mode); |
| 1212 | if (mode == NULL) |
Ander Conselvan de Oliveira | 42c4646 | 2012-08-09 16:45:00 +0300 | [diff] [blame] | 1213 | return NULL; |
Kristian Høgsberg | 8f0ce05 | 2011-06-21 11:16:58 -0400 | [diff] [blame] | 1214 | |
| 1215 | mode->base.flags = 0; |
| 1216 | mode->base.width = info->hdisplay; |
| 1217 | mode->base.height = info->vdisplay; |
Kristian Høgsberg | c4621b0 | 2012-05-10 12:23:53 -0400 | [diff] [blame] | 1218 | |
| 1219 | /* Calculate higher precision (mHz) refresh rate */ |
| 1220 | refresh = (info->clock * 1000000LL / info->htotal + |
| 1221 | info->vtotal / 2) / info->vtotal; |
| 1222 | |
| 1223 | if (info->flags & DRM_MODE_FLAG_INTERLACE) |
| 1224 | refresh *= 2; |
| 1225 | if (info->flags & DRM_MODE_FLAG_DBLSCAN) |
| 1226 | refresh /= 2; |
| 1227 | if (info->vscan > 1) |
| 1228 | refresh /= info->vscan; |
| 1229 | |
| 1230 | mode->base.refresh = refresh; |
Kristian Høgsberg | 8f0ce05 | 2011-06-21 11:16:58 -0400 | [diff] [blame] | 1231 | mode->mode_info = *info; |
Kristian Høgsberg | 061c425 | 2012-06-28 11:28:15 -0400 | [diff] [blame] | 1232 | |
| 1233 | if (info->type & DRM_MODE_TYPE_PREFERRED) |
| 1234 | mode->base.flags |= WL_OUTPUT_MODE_PREFERRED; |
| 1235 | |
Kristian Høgsberg | 8f0ce05 | 2011-06-21 11:16:58 -0400 | [diff] [blame] | 1236 | wl_list_insert(output->base.mode_list.prev, &mode->base.link); |
| 1237 | |
Ander Conselvan de Oliveira | 42c4646 | 2012-08-09 16:45:00 +0300 | [diff] [blame] | 1238 | return mode; |
Kristian Høgsberg | 8f0ce05 | 2011-06-21 11:16:58 -0400 | [diff] [blame] | 1239 | } |
| 1240 | |
| 1241 | static int |
| 1242 | drm_subpixel_to_wayland(int drm_value) |
| 1243 | { |
| 1244 | switch (drm_value) { |
| 1245 | default: |
| 1246 | case DRM_MODE_SUBPIXEL_UNKNOWN: |
| 1247 | return WL_OUTPUT_SUBPIXEL_UNKNOWN; |
| 1248 | case DRM_MODE_SUBPIXEL_NONE: |
| 1249 | return WL_OUTPUT_SUBPIXEL_NONE; |
| 1250 | case DRM_MODE_SUBPIXEL_HORIZONTAL_RGB: |
| 1251 | return WL_OUTPUT_SUBPIXEL_HORIZONTAL_RGB; |
| 1252 | case DRM_MODE_SUBPIXEL_HORIZONTAL_BGR: |
| 1253 | return WL_OUTPUT_SUBPIXEL_HORIZONTAL_BGR; |
| 1254 | case DRM_MODE_SUBPIXEL_VERTICAL_RGB: |
| 1255 | return WL_OUTPUT_SUBPIXEL_VERTICAL_RGB; |
| 1256 | case DRM_MODE_SUBPIXEL_VERTICAL_BGR: |
| 1257 | return WL_OUTPUT_SUBPIXEL_VERTICAL_BGR; |
| 1258 | } |
| 1259 | } |
| 1260 | |
Tiago Vignatti | 5ab91ad | 2012-03-12 19:40:09 -0300 | [diff] [blame] | 1261 | /* returns a value between 0-255 range, where higher is brighter */ |
Tiago Vignatti | 8e53c7f | 2012-02-29 19:53:50 +0200 | [diff] [blame] | 1262 | static uint32_t |
| 1263 | drm_get_backlight(struct drm_output *output) |
| 1264 | { |
| 1265 | long brightness, max_brightness, norm; |
| 1266 | |
| 1267 | brightness = backlight_get_brightness(output->backlight); |
| 1268 | max_brightness = backlight_get_max_brightness(output->backlight); |
| 1269 | |
Tiago Vignatti | 5ab91ad | 2012-03-12 19:40:09 -0300 | [diff] [blame] | 1270 | /* convert it on a scale of 0 to 255 */ |
| 1271 | norm = (brightness * 255)/(max_brightness); |
Tiago Vignatti | 8e53c7f | 2012-02-29 19:53:50 +0200 | [diff] [blame] | 1272 | |
| 1273 | return (uint32_t) norm; |
| 1274 | } |
| 1275 | |
Tiago Vignatti | 5ab91ad | 2012-03-12 19:40:09 -0300 | [diff] [blame] | 1276 | /* values accepted are between 0-255 range */ |
Tiago Vignatti | 8e53c7f | 2012-02-29 19:53:50 +0200 | [diff] [blame] | 1277 | static void |
| 1278 | drm_set_backlight(struct weston_output *output_base, uint32_t value) |
| 1279 | { |
| 1280 | struct drm_output *output = (struct drm_output *) output_base; |
| 1281 | long max_brightness, new_brightness; |
| 1282 | |
| 1283 | if (!output->backlight) |
| 1284 | return; |
| 1285 | |
Kristian Høgsberg | 875ab9e | 2012-03-30 11:52:39 -0400 | [diff] [blame] | 1286 | if (value > 255) |
Tiago Vignatti | 8e53c7f | 2012-02-29 19:53:50 +0200 | [diff] [blame] | 1287 | return; |
| 1288 | |
| 1289 | max_brightness = backlight_get_max_brightness(output->backlight); |
| 1290 | |
| 1291 | /* get denormalized value */ |
Tiago Vignatti | 5ab91ad | 2012-03-12 19:40:09 -0300 | [diff] [blame] | 1292 | new_brightness = (value * max_brightness) / 255; |
Tiago Vignatti | 8e53c7f | 2012-02-29 19:53:50 +0200 | [diff] [blame] | 1293 | |
| 1294 | backlight_set_brightness(output->backlight, new_brightness); |
| 1295 | } |
| 1296 | |
| 1297 | static drmModePropertyPtr |
| 1298 | drm_get_prop(int fd, drmModeConnectorPtr connector, const char *name) |
| 1299 | { |
| 1300 | drmModePropertyPtr props; |
| 1301 | int i; |
| 1302 | |
| 1303 | for (i = 0; i < connector->count_props; i++) { |
| 1304 | props = drmModeGetProperty(fd, connector->props[i]); |
| 1305 | if (!props) |
| 1306 | continue; |
| 1307 | |
| 1308 | if (!strcmp(props->name, name)) |
| 1309 | return props; |
| 1310 | |
| 1311 | drmModeFreeProperty(props); |
| 1312 | } |
| 1313 | |
| 1314 | return NULL; |
| 1315 | } |
| 1316 | |
| 1317 | static void |
| 1318 | drm_set_dpms(struct weston_output *output_base, enum dpms_enum level) |
| 1319 | { |
| 1320 | struct drm_output *output = (struct drm_output *) output_base; |
| 1321 | struct weston_compositor *ec = output_base->compositor; |
| 1322 | struct drm_compositor *c = (struct drm_compositor *) ec; |
| 1323 | drmModeConnectorPtr connector; |
| 1324 | drmModePropertyPtr prop; |
| 1325 | |
| 1326 | connector = drmModeGetConnector(c->drm.fd, output->connector_id); |
| 1327 | if (!connector) |
| 1328 | return; |
| 1329 | |
| 1330 | prop = drm_get_prop(c->drm.fd, connector, "DPMS"); |
| 1331 | if (!prop) { |
| 1332 | drmModeFreeConnector(connector); |
| 1333 | return; |
| 1334 | } |
| 1335 | |
| 1336 | drmModeConnectorSetProperty(c->drm.fd, connector->connector_id, |
| 1337 | prop->prop_id, level); |
| 1338 | drmModeFreeProperty(prop); |
| 1339 | drmModeFreeConnector(connector); |
| 1340 | } |
| 1341 | |
Kristian Høgsberg | 2f9ed71 | 2012-07-26 17:57:15 -0400 | [diff] [blame] | 1342 | static const char *connector_type_names[] = { |
| 1343 | "None", |
| 1344 | "VGA", |
| 1345 | "DVI", |
| 1346 | "DVI", |
| 1347 | "DVI", |
| 1348 | "Composite", |
| 1349 | "TV", |
| 1350 | "LVDS", |
| 1351 | "CTV", |
| 1352 | "DIN", |
| 1353 | "DP", |
| 1354 | "HDMI", |
| 1355 | "HDMI", |
| 1356 | "TV", |
| 1357 | "eDP", |
| 1358 | }; |
| 1359 | |
Kristian Høgsberg | fc783d4 | 2010-06-11 12:56:24 -0400 | [diff] [blame] | 1360 | static int |
Kristian Høgsberg | 9ca3846 | 2012-07-26 22:44:55 -0400 | [diff] [blame] | 1361 | find_crtc_for_connector(struct drm_compositor *ec, |
| 1362 | drmModeRes *resources, drmModeConnector *connector) |
| 1363 | { |
| 1364 | drmModeEncoder *encoder; |
| 1365 | uint32_t possible_crtcs; |
| 1366 | int i, j; |
| 1367 | |
| 1368 | for (j = 0; j < connector->count_encoders; j++) { |
| 1369 | encoder = drmModeGetEncoder(ec->drm.fd, connector->encoders[j]); |
| 1370 | if (encoder == NULL) { |
| 1371 | weston_log("Failed to get encoder.\n"); |
| 1372 | return -1; |
| 1373 | } |
| 1374 | possible_crtcs = encoder->possible_crtcs; |
| 1375 | drmModeFreeEncoder(encoder); |
| 1376 | |
| 1377 | for (i = 0; i < resources->count_crtcs; i++) { |
| 1378 | if (possible_crtcs & (1 << i) && |
| 1379 | !(ec->crtc_allocator & (1 << resources->crtcs[i]))) |
| 1380 | return i; |
| 1381 | } |
| 1382 | } |
| 1383 | |
| 1384 | return -1; |
| 1385 | } |
| 1386 | |
Ander Conselvan de Oliveira | 475cf15 | 2012-12-14 13:37:29 -0200 | [diff] [blame] | 1387 | /* Init output state that depends on gl or gbm */ |
| 1388 | static int |
| 1389 | drm_output_init_egl(struct drm_output *output, struct drm_compositor *ec) |
| 1390 | { |
Ander Conselvan de Oliveira | 6c01c9c | 2012-12-14 13:37:30 -0200 | [diff] [blame] | 1391 | int i, flags; |
| 1392 | |
Ander Conselvan de Oliveira | 475cf15 | 2012-12-14 13:37:29 -0200 | [diff] [blame] | 1393 | output->surface = gbm_surface_create(ec->gbm, |
| 1394 | output->base.current->width, |
| 1395 | output->base.current->height, |
| 1396 | GBM_FORMAT_XRGB8888, |
| 1397 | GBM_BO_USE_SCANOUT | |
| 1398 | GBM_BO_USE_RENDERING); |
| 1399 | if (!output->surface) { |
| 1400 | weston_log("failed to create gbm surface\n"); |
| 1401 | return -1; |
| 1402 | } |
| 1403 | |
| 1404 | if (gl_renderer_output_create(&output->base, output->surface) < 0) { |
Ander Conselvan de Oliveira | 6c01c9c | 2012-12-14 13:37:30 -0200 | [diff] [blame] | 1405 | weston_log("failed to create gl renderer output state\n"); |
Ander Conselvan de Oliveira | 475cf15 | 2012-12-14 13:37:29 -0200 | [diff] [blame] | 1406 | gbm_surface_destroy(output->surface); |
| 1407 | return -1; |
| 1408 | } |
| 1409 | |
Ander Conselvan de Oliveira | 6c01c9c | 2012-12-14 13:37:30 -0200 | [diff] [blame] | 1410 | flags = GBM_BO_USE_CURSOR_64X64 | GBM_BO_USE_WRITE; |
| 1411 | |
| 1412 | for (i = 0; i < 2; i++) { |
| 1413 | if (output->cursor_bo[i]) |
| 1414 | continue; |
| 1415 | |
| 1416 | output->cursor_bo[i] = |
| 1417 | gbm_bo_create(ec->gbm, 64, 64, GBM_FORMAT_ARGB8888, |
| 1418 | flags); |
| 1419 | } |
| 1420 | |
Ander Conselvan de Oliveira | 475cf15 | 2012-12-14 13:37:29 -0200 | [diff] [blame] | 1421 | if (output->cursor_bo[0] == NULL || output->cursor_bo[1] == NULL) { |
| 1422 | weston_log("cursor buffers unavailable, using gl cursors\n"); |
| 1423 | ec->cursors_are_broken = 1; |
| 1424 | } |
| 1425 | |
| 1426 | return 0; |
| 1427 | } |
| 1428 | |
Kristian Høgsberg | 9ca3846 | 2012-07-26 22:44:55 -0400 | [diff] [blame] | 1429 | static int |
Ander Conselvan de Oliveira | 5fb4414 | 2013-01-25 15:13:05 +0200 | [diff] [blame] | 1430 | drm_output_init_pixman(struct drm_output *output, struct drm_compositor *c) |
| 1431 | { |
| 1432 | int w = output->base.current->width; |
| 1433 | int h = output->base.current->height; |
| 1434 | unsigned int i; |
| 1435 | |
| 1436 | /* FIXME error checking */ |
| 1437 | |
| 1438 | for (i = 0; i < ARRAY_LENGTH(output->dumb); i++) { |
| 1439 | output->dumb[i] = drm_fb_create_dumb(c, w, h); |
| 1440 | if (!output->dumb[i]) |
| 1441 | goto err; |
| 1442 | |
| 1443 | output->image[i] = |
| 1444 | pixman_image_create_bits(PIXMAN_x8r8g8b8, w, h, |
| 1445 | output->dumb[i]->map, |
| 1446 | output->dumb[i]->stride); |
| 1447 | if (!output->image[i]) |
| 1448 | goto err; |
| 1449 | } |
| 1450 | |
| 1451 | if (pixman_renderer_output_create(&output->base) < 0) |
| 1452 | goto err; |
| 1453 | |
| 1454 | pixman_region32_init_rect(&output->previous_damage, |
| 1455 | output->base.x, output->base.y, w, h); |
| 1456 | |
| 1457 | return 0; |
| 1458 | |
| 1459 | err: |
| 1460 | for (i = 0; i < ARRAY_LENGTH(output->dumb); i++) { |
| 1461 | if (output->dumb[i]) |
| 1462 | drm_fb_destroy_dumb(output->dumb[i]); |
| 1463 | if (output->image[i]) |
| 1464 | pixman_image_unref(output->image[i]); |
| 1465 | |
| 1466 | output->dumb[i] = NULL; |
| 1467 | output->image[i] = NULL; |
| 1468 | } |
| 1469 | |
| 1470 | return -1; |
| 1471 | } |
| 1472 | |
| 1473 | static void |
| 1474 | drm_output_fini_pixman(struct drm_output *output) |
| 1475 | { |
| 1476 | unsigned int i; |
| 1477 | |
| 1478 | pixman_renderer_output_destroy(&output->base); |
| 1479 | pixman_region32_fini(&output->previous_damage); |
| 1480 | |
| 1481 | for (i = 0; i < ARRAY_LENGTH(output->dumb); i++) { |
| 1482 | drm_fb_destroy_dumb(output->dumb[i]); |
| 1483 | pixman_image_unref(output->image[i]); |
| 1484 | output->dumb[i] = NULL; |
| 1485 | output->image[i] = NULL; |
| 1486 | } |
| 1487 | } |
| 1488 | |
| 1489 | static int |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 1490 | create_output_for_connector(struct drm_compositor *ec, |
Kristian Høgsberg | fc783d4 | 2010-06-11 12:56:24 -0400 | [diff] [blame] | 1491 | drmModeRes *resources, |
Benjamin Franzke | eefc36c | 2011-03-11 16:39:20 +0100 | [diff] [blame] | 1492 | drmModeConnector *connector, |
Tiago Vignatti | 8e53c7f | 2012-02-29 19:53:50 +0200 | [diff] [blame] | 1493 | int x, int y, struct udev_device *drm_device) |
Kristian Høgsberg | fc783d4 | 2010-06-11 12:56:24 -0400 | [diff] [blame] | 1494 | { |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 1495 | struct drm_output *output; |
Ander Conselvan de Oliveira | 42c4646 | 2012-08-09 16:45:00 +0300 | [diff] [blame] | 1496 | struct drm_mode *drm_mode, *next, *preferred, *current, *configured; |
| 1497 | struct weston_mode *m; |
Scott Moreau | 8ab5d45 | 2012-07-30 19:51:08 -0600 | [diff] [blame] | 1498 | struct drm_configured_output *o = NULL, *temp; |
Kristian Høgsberg | fc783d4 | 2010-06-11 12:56:24 -0400 | [diff] [blame] | 1499 | drmModeEncoder *encoder; |
Kristian Høgsberg | 061c425 | 2012-06-28 11:28:15 -0400 | [diff] [blame] | 1500 | drmModeModeInfo crtc_mode; |
| 1501 | drmModeCrtc *crtc; |
Ander Conselvan de Oliveira | 42c4646 | 2012-08-09 16:45:00 +0300 | [diff] [blame] | 1502 | int i; |
Kristian Høgsberg | 2f9ed71 | 2012-07-26 17:57:15 -0400 | [diff] [blame] | 1503 | char name[32]; |
| 1504 | const char *type_name; |
Kristian Høgsberg | fc783d4 | 2010-06-11 12:56:24 -0400 | [diff] [blame] | 1505 | |
Kristian Høgsberg | 9ca3846 | 2012-07-26 22:44:55 -0400 | [diff] [blame] | 1506 | i = find_crtc_for_connector(ec, resources, connector); |
| 1507 | if (i < 0) { |
| 1508 | weston_log("No usable crtc/encoder pair for connector.\n"); |
Kristian Høgsberg | fc783d4 | 2010-06-11 12:56:24 -0400 | [diff] [blame] | 1509 | return -1; |
| 1510 | } |
| 1511 | |
Kristian Høgsberg | 8f0ce05 | 2011-06-21 11:16:58 -0400 | [diff] [blame] | 1512 | output = malloc(sizeof *output); |
Kristian Høgsberg | 9ca3846 | 2012-07-26 22:44:55 -0400 | [diff] [blame] | 1513 | if (output == NULL) |
Kristian Høgsberg | 8f0ce05 | 2011-06-21 11:16:58 -0400 | [diff] [blame] | 1514 | return -1; |
| 1515 | |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 1516 | memset(output, 0, sizeof *output); |
Kristian Høgsberg | 8f0ce05 | 2011-06-21 11:16:58 -0400 | [diff] [blame] | 1517 | output->base.subpixel = drm_subpixel_to_wayland(connector->subpixel); |
| 1518 | output->base.make = "unknown"; |
| 1519 | output->base.model = "unknown"; |
| 1520 | wl_list_init(&output->base.mode_list); |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 1521 | |
Kristian Høgsberg | 2f9ed71 | 2012-07-26 17:57:15 -0400 | [diff] [blame] | 1522 | if (connector->connector_type < ARRAY_LENGTH(connector_type_names)) |
| 1523 | type_name = connector_type_names[connector->connector_type]; |
| 1524 | else |
| 1525 | type_name = "UNKNOWN"; |
| 1526 | snprintf(name, 32, "%s%d", type_name, connector->connector_type_id); |
| 1527 | output->name = strdup(name); |
| 1528 | |
Kristian Høgsberg | fc783d4 | 2010-06-11 12:56:24 -0400 | [diff] [blame] | 1529 | output->crtc_id = resources->crtcs[i]; |
Rob Clark | 5ca1a47 | 2012-08-08 20:27:37 -0500 | [diff] [blame] | 1530 | output->pipe = i; |
Benjamin Franzke | 9c26ff3 | 2011-03-15 15:08:41 +0100 | [diff] [blame] | 1531 | ec->crtc_allocator |= (1 << output->crtc_id); |
Kristian Høgsberg | fc783d4 | 2010-06-11 12:56:24 -0400 | [diff] [blame] | 1532 | output->connector_id = connector->connector_id; |
Benjamin Franzke | 9c26ff3 | 2011-03-15 15:08:41 +0100 | [diff] [blame] | 1533 | ec->connector_allocator |= (1 << output->connector_id); |
Kristian Høgsberg | 8f0ce05 | 2011-06-21 11:16:58 -0400 | [diff] [blame] | 1534 | |
Matt Roper | 361d2ad | 2011-08-29 13:52:23 -0700 | [diff] [blame] | 1535 | output->original_crtc = drmModeGetCrtc(ec->drm.fd, output->crtc_id); |
| 1536 | |
Kristian Høgsberg | 061c425 | 2012-06-28 11:28:15 -0400 | [diff] [blame] | 1537 | /* Get the current mode on the crtc that's currently driving |
| 1538 | * this connector. */ |
| 1539 | encoder = drmModeGetEncoder(ec->drm.fd, connector->encoder_id); |
Wang Quanxian | acb805a | 2012-07-30 18:09:46 -0400 | [diff] [blame] | 1540 | memset(&crtc_mode, 0, sizeof crtc_mode); |
| 1541 | if (encoder != NULL) { |
| 1542 | crtc = drmModeGetCrtc(ec->drm.fd, encoder->crtc_id); |
| 1543 | drmModeFreeEncoder(encoder); |
| 1544 | if (crtc == NULL) |
| 1545 | goto err_free; |
| 1546 | if (crtc->mode_valid) |
| 1547 | crtc_mode = crtc->mode; |
| 1548 | drmModeFreeCrtc(crtc); |
| 1549 | } |
Kristian Høgsberg | 061c425 | 2012-06-28 11:28:15 -0400 | [diff] [blame] | 1550 | |
David Herrmann | 0f0d54e | 2011-12-08 17:05:45 +0100 | [diff] [blame] | 1551 | for (i = 0; i < connector->count_modes; i++) { |
Ander Conselvan de Oliveira | 42c4646 | 2012-08-09 16:45:00 +0300 | [diff] [blame] | 1552 | drm_mode = drm_output_add_mode(output, &connector->modes[i]); |
| 1553 | if (!drm_mode) |
David Herrmann | 0f0d54e | 2011-12-08 17:05:45 +0100 | [diff] [blame] | 1554 | goto err_free; |
| 1555 | } |
| 1556 | |
Kristian Høgsberg | 061c425 | 2012-06-28 11:28:15 -0400 | [diff] [blame] | 1557 | preferred = NULL; |
| 1558 | current = NULL; |
Scott Moreau | 8ab5d45 | 2012-07-30 19:51:08 -0600 | [diff] [blame] | 1559 | configured = NULL; |
| 1560 | |
| 1561 | wl_list_for_each(temp, &configured_output_list, link) { |
| 1562 | if (strcmp(temp->name, output->name) == 0) { |
Scott Moreau | 1bad5db | 2012-08-18 01:04:05 -0600 | [diff] [blame] | 1563 | if (temp->mode) |
| 1564 | weston_log("%s mode \"%s\" in config\n", |
Scott Moreau | 8ab5d45 | 2012-07-30 19:51:08 -0600 | [diff] [blame] | 1565 | temp->name, temp->mode); |
| 1566 | o = temp; |
| 1567 | break; |
| 1568 | } |
| 1569 | } |
| 1570 | |
Ander Conselvan de Oliveira | dc79e6d | 2012-08-09 16:45:01 +0300 | [diff] [blame] | 1571 | if (o && o->config == OUTPUT_CONFIG_OFF) { |
Scott Moreau | 8ab5d45 | 2012-07-30 19:51:08 -0600 | [diff] [blame] | 1572 | weston_log("Disabling output %s\n", o->name); |
| 1573 | |
| 1574 | drmModeSetCrtc(ec->drm.fd, output->crtc_id, |
| 1575 | 0, 0, 0, 0, 0, NULL); |
| 1576 | goto err_free; |
| 1577 | } |
| 1578 | |
Kristian Høgsberg | 061c425 | 2012-06-28 11:28:15 -0400 | [diff] [blame] | 1579 | wl_list_for_each(drm_mode, &output->base.mode_list, base.link) { |
Scott Moreau | 1bad5db | 2012-08-18 01:04:05 -0600 | [diff] [blame] | 1580 | if (o && o->config == OUTPUT_CONFIG_MODE && |
| 1581 | o->width == drm_mode->base.width && |
| 1582 | o->height == drm_mode->base.height) |
Ander Conselvan de Oliveira | 42c4646 | 2012-08-09 16:45:00 +0300 | [diff] [blame] | 1583 | configured = drm_mode; |
Wang Quanxian | acb805a | 2012-07-30 18:09:46 -0400 | [diff] [blame] | 1584 | if (!memcmp(&crtc_mode, &drm_mode->mode_info, sizeof crtc_mode)) |
Ander Conselvan de Oliveira | 42c4646 | 2012-08-09 16:45:00 +0300 | [diff] [blame] | 1585 | current = drm_mode; |
Kristian Høgsberg | 061c425 | 2012-06-28 11:28:15 -0400 | [diff] [blame] | 1586 | if (drm_mode->base.flags & WL_OUTPUT_MODE_PREFERRED) |
Ander Conselvan de Oliveira | 42c4646 | 2012-08-09 16:45:00 +0300 | [diff] [blame] | 1587 | preferred = drm_mode; |
David Herrmann | 0f0d54e | 2011-12-08 17:05:45 +0100 | [diff] [blame] | 1588 | } |
Kristian Høgsberg | 8f0ce05 | 2011-06-21 11:16:58 -0400 | [diff] [blame] | 1589 | |
Scott Moreau | 8f37e0b | 2012-07-31 15:30:41 -0600 | [diff] [blame] | 1590 | if (o && o->config == OUTPUT_CONFIG_MODELINE) { |
Ander Conselvan de Oliveira | 42c4646 | 2012-08-09 16:45:00 +0300 | [diff] [blame] | 1591 | configured = drm_output_add_mode(output, &o->crtc_mode); |
| 1592 | if (!configured) |
Scott Moreau | 8f37e0b | 2012-07-31 15:30:41 -0600 | [diff] [blame] | 1593 | goto err_free; |
Scott Moreau | 8f37e0b | 2012-07-31 15:30:41 -0600 | [diff] [blame] | 1594 | current = configured; |
| 1595 | } |
| 1596 | |
Wang Quanxian | acb805a | 2012-07-30 18:09:46 -0400 | [diff] [blame] | 1597 | if (current == NULL && crtc_mode.clock != 0) { |
Ander Conselvan de Oliveira | 42c4646 | 2012-08-09 16:45:00 +0300 | [diff] [blame] | 1598 | current = drm_output_add_mode(output, &crtc_mode); |
| 1599 | if (!current) |
Kristian Høgsberg | 061c425 | 2012-06-28 11:28:15 -0400 | [diff] [blame] | 1600 | goto err_free; |
Kristian Høgsberg | 061c425 | 2012-06-28 11:28:15 -0400 | [diff] [blame] | 1601 | } |
| 1602 | |
Scott Moreau | 8ab5d45 | 2012-07-30 19:51:08 -0600 | [diff] [blame] | 1603 | if (o && o->config == OUTPUT_CONFIG_CURRENT) |
| 1604 | configured = current; |
| 1605 | |
Wang Quanxian | acb805a | 2012-07-30 18:09:46 -0400 | [diff] [blame] | 1606 | if (option_current_mode && current) |
Ander Conselvan de Oliveira | 42c4646 | 2012-08-09 16:45:00 +0300 | [diff] [blame] | 1607 | output->base.current = ¤t->base; |
Scott Moreau | 8ab5d45 | 2012-07-30 19:51:08 -0600 | [diff] [blame] | 1608 | else if (configured) |
Ander Conselvan de Oliveira | 42c4646 | 2012-08-09 16:45:00 +0300 | [diff] [blame] | 1609 | output->base.current = &configured->base; |
Wang Quanxian | acb805a | 2012-07-30 18:09:46 -0400 | [diff] [blame] | 1610 | else if (preferred) |
Ander Conselvan de Oliveira | 42c4646 | 2012-08-09 16:45:00 +0300 | [diff] [blame] | 1611 | output->base.current = &preferred->base; |
Wang Quanxian | acb805a | 2012-07-30 18:09:46 -0400 | [diff] [blame] | 1612 | else if (current) |
Ander Conselvan de Oliveira | 42c4646 | 2012-08-09 16:45:00 +0300 | [diff] [blame] | 1613 | output->base.current = ¤t->base; |
Wang Quanxian | acb805a | 2012-07-30 18:09:46 -0400 | [diff] [blame] | 1614 | |
| 1615 | if (output->base.current == NULL) { |
| 1616 | weston_log("no available modes for %s\n", output->name); |
| 1617 | goto err_free; |
Kristian Høgsberg | 061c425 | 2012-06-28 11:28:15 -0400 | [diff] [blame] | 1618 | } |
Kristian Høgsberg | 8f0ce05 | 2011-06-21 11:16:58 -0400 | [diff] [blame] | 1619 | |
Wang Quanxian | acb805a | 2012-07-30 18:09:46 -0400 | [diff] [blame] | 1620 | output->base.current->flags |= WL_OUTPUT_MODE_CURRENT; |
| 1621 | |
John Kåre Alsaker | 9465927 | 2012-11-13 19:10:18 +0100 | [diff] [blame] | 1622 | weston_output_init(&output->base, &ec->base, x, y, |
| 1623 | connector->mmWidth, connector->mmHeight, |
| 1624 | o ? o->transform : WL_OUTPUT_TRANSFORM_NORMAL); |
| 1625 | |
Ander Conselvan de Oliveira | 5fb4414 | 2013-01-25 15:13:05 +0200 | [diff] [blame] | 1626 | if (ec->use_pixman) { |
| 1627 | if (drm_output_init_pixman(output, ec) < 0) { |
| 1628 | weston_log("Failed to init output pixman state\n"); |
| 1629 | goto err_output; |
| 1630 | } |
| 1631 | } else if (drm_output_init_egl(output, ec) < 0) { |
Ander Conselvan de Oliveira | 475cf15 | 2012-12-14 13:37:29 -0200 | [diff] [blame] | 1632 | weston_log("Failed to init output gl state\n"); |
John Kåre Alsaker | 9465927 | 2012-11-13 19:10:18 +0100 | [diff] [blame] | 1633 | goto err_output; |
Kristian Høgsberg | 1d1e0a5 | 2012-10-21 13:29:26 -0400 | [diff] [blame] | 1634 | } |
Kristian Høgsberg | 8e1f77f | 2012-05-03 11:39:35 -0400 | [diff] [blame] | 1635 | |
Tiago Vignatti | 8e53c7f | 2012-02-29 19:53:50 +0200 | [diff] [blame] | 1636 | output->backlight = backlight_init(drm_device, |
| 1637 | connector->connector_type); |
| 1638 | if (output->backlight) { |
| 1639 | output->base.set_backlight = drm_set_backlight; |
| 1640 | output->base.backlight_current = drm_get_backlight(output); |
| 1641 | } |
| 1642 | |
Kristian Høgsberg | a4b7e20 | 2011-10-24 13:26:32 -0400 | [diff] [blame] | 1643 | wl_list_insert(ec->base.output_list.prev, &output->base.link); |
| 1644 | |
Alex Wu | bd3354b | 2012-04-17 17:20:49 +0800 | [diff] [blame] | 1645 | output->base.origin = output->base.current; |
Jonas Ådahl | e5a1225 | 2013-04-05 23:07:11 +0200 | [diff] [blame^] | 1646 | output->base.start_repaint_loop = drm_output_start_repaint_loop; |
Kristian Høgsberg | 68c479a | 2012-01-25 23:32:28 -0500 | [diff] [blame] | 1647 | output->base.repaint = drm_output_repaint; |
Matt Roper | 361d2ad | 2011-08-29 13:52:23 -0700 | [diff] [blame] | 1648 | output->base.destroy = drm_output_destroy; |
Jesse Barnes | 58ef379 | 2012-02-23 09:45:49 -0500 | [diff] [blame] | 1649 | output->base.assign_planes = drm_assign_planes; |
Tiago Vignatti | 8e53c7f | 2012-02-29 19:53:50 +0200 | [diff] [blame] | 1650 | output->base.set_dpms = drm_set_dpms; |
Alex Wu | b7b8bda | 2012-04-17 17:20:48 +0800 | [diff] [blame] | 1651 | output->base.switch_mode = drm_output_switch_mode; |
Benjamin Franzke | eefc36c | 2011-03-11 16:39:20 +0100 | [diff] [blame] | 1652 | |
Kristian Høgsberg | 65a11e1 | 2012-08-03 11:30:18 -0400 | [diff] [blame] | 1653 | weston_plane_init(&output->cursor_plane, 0, 0); |
| 1654 | weston_plane_init(&output->fb_plane, 0, 0); |
| 1655 | |
Ander Conselvan de Oliveira | 8ad1982 | 2013-03-05 17:30:27 +0200 | [diff] [blame] | 1656 | weston_compositor_stack_plane(&ec->base, &output->cursor_plane, NULL); |
| 1657 | weston_compositor_stack_plane(&ec->base, &output->fb_plane, |
| 1658 | &ec->base.primary_plane); |
| 1659 | |
Kristian Høgsberg | 2f9ed71 | 2012-07-26 17:57:15 -0400 | [diff] [blame] | 1660 | weston_log("Output %s, (connector %d, crtc %d)\n", |
| 1661 | output->name, output->connector_id, output->crtc_id); |
Kristian Høgsberg | 061c425 | 2012-06-28 11:28:15 -0400 | [diff] [blame] | 1662 | wl_list_for_each(m, &output->base.mode_list, link) |
| 1663 | weston_log_continue(" mode %dx%d@%.1f%s%s%s\n", |
| 1664 | m->width, m->height, m->refresh / 1000.0, |
| 1665 | m->flags & WL_OUTPUT_MODE_PREFERRED ? |
| 1666 | ", preferred" : "", |
| 1667 | m->flags & WL_OUTPUT_MODE_CURRENT ? |
| 1668 | ", current" : "", |
| 1669 | connector->count_modes == 0 ? |
| 1670 | ", built-in" : ""); |
Kristian Høgsberg | fc9c5e0 | 2012-06-08 16:45:33 -0400 | [diff] [blame] | 1671 | |
Kristian Høgsberg | fc783d4 | 2010-06-11 12:56:24 -0400 | [diff] [blame] | 1672 | return 0; |
David Herrmann | 0f0d54e | 2011-12-08 17:05:45 +0100 | [diff] [blame] | 1673 | |
John Kåre Alsaker | 9465927 | 2012-11-13 19:10:18 +0100 | [diff] [blame] | 1674 | err_output: |
| 1675 | weston_output_destroy(&output->base); |
David Herrmann | 0f0d54e | 2011-12-08 17:05:45 +0100 | [diff] [blame] | 1676 | err_free: |
| 1677 | wl_list_for_each_safe(drm_mode, next, &output->base.mode_list, |
| 1678 | base.link) { |
| 1679 | wl_list_remove(&drm_mode->base.link); |
| 1680 | free(drm_mode); |
| 1681 | } |
| 1682 | |
| 1683 | drmModeFreeCrtc(output->original_crtc); |
| 1684 | ec->crtc_allocator &= ~(1 << output->crtc_id); |
| 1685 | ec->connector_allocator &= ~(1 << output->connector_id); |
Kristian Høgsberg | 148ef01 | 2012-07-26 23:03:57 -0400 | [diff] [blame] | 1686 | free(output->name); |
David Herrmann | 0f0d54e | 2011-12-08 17:05:45 +0100 | [diff] [blame] | 1687 | free(output); |
Kristian Høgsberg | cbcd047 | 2012-03-11 18:27:41 -0400 | [diff] [blame] | 1688 | |
David Herrmann | 0f0d54e | 2011-12-08 17:05:45 +0100 | [diff] [blame] | 1689 | return -1; |
Kristian Høgsberg | fc783d4 | 2010-06-11 12:56:24 -0400 | [diff] [blame] | 1690 | } |
| 1691 | |
Jesse Barnes | 58ef379 | 2012-02-23 09:45:49 -0500 | [diff] [blame] | 1692 | static void |
| 1693 | create_sprites(struct drm_compositor *ec) |
| 1694 | { |
| 1695 | struct drm_sprite *sprite; |
| 1696 | drmModePlaneRes *plane_res; |
| 1697 | drmModePlane *plane; |
Kristian Høgsberg | 875ab9e | 2012-03-30 11:52:39 -0400 | [diff] [blame] | 1698 | uint32_t i; |
Jesse Barnes | 58ef379 | 2012-02-23 09:45:49 -0500 | [diff] [blame] | 1699 | |
| 1700 | plane_res = drmModeGetPlaneResources(ec->drm.fd); |
| 1701 | if (!plane_res) { |
Martin Minarik | 6d11836 | 2012-06-07 18:01:59 +0200 | [diff] [blame] | 1702 | weston_log("failed to get plane resources: %s\n", |
Jesse Barnes | 58ef379 | 2012-02-23 09:45:49 -0500 | [diff] [blame] | 1703 | strerror(errno)); |
| 1704 | return; |
| 1705 | } |
| 1706 | |
| 1707 | for (i = 0; i < plane_res->count_planes; i++) { |
| 1708 | plane = drmModeGetPlane(ec->drm.fd, plane_res->planes[i]); |
| 1709 | if (!plane) |
| 1710 | continue; |
| 1711 | |
| 1712 | sprite = malloc(sizeof(*sprite) + ((sizeof(uint32_t)) * |
| 1713 | plane->count_formats)); |
| 1714 | if (!sprite) { |
Martin Minarik | 6d11836 | 2012-06-07 18:01:59 +0200 | [diff] [blame] | 1715 | weston_log("%s: out of memory\n", |
Jesse Barnes | 58ef379 | 2012-02-23 09:45:49 -0500 | [diff] [blame] | 1716 | __func__); |
| 1717 | free(plane); |
| 1718 | continue; |
| 1719 | } |
| 1720 | |
| 1721 | memset(sprite, 0, sizeof *sprite); |
| 1722 | |
| 1723 | sprite->possible_crtcs = plane->possible_crtcs; |
| 1724 | sprite->plane_id = plane->plane_id; |
Ander Conselvan de Oliveira | 8d360b4 | 2012-11-09 14:19:05 +0200 | [diff] [blame] | 1725 | sprite->current = NULL; |
| 1726 | sprite->next = NULL; |
Jesse Barnes | 58ef379 | 2012-02-23 09:45:49 -0500 | [diff] [blame] | 1727 | sprite->compositor = ec; |
| 1728 | sprite->count_formats = plane->count_formats; |
| 1729 | memcpy(sprite->formats, plane->formats, |
Rob Clark | 8efbc8e | 2012-03-11 19:48:44 -0500 | [diff] [blame] | 1730 | plane->count_formats * sizeof(plane->formats[0])); |
Jesse Barnes | 58ef379 | 2012-02-23 09:45:49 -0500 | [diff] [blame] | 1731 | drmModeFreePlane(plane); |
Kristian Høgsberg | 65a11e1 | 2012-08-03 11:30:18 -0400 | [diff] [blame] | 1732 | weston_plane_init(&sprite->plane, 0, 0); |
Ander Conselvan de Oliveira | 8ad1982 | 2013-03-05 17:30:27 +0200 | [diff] [blame] | 1733 | weston_compositor_stack_plane(&ec->base, &sprite->plane, |
| 1734 | &ec->base.primary_plane); |
Jesse Barnes | 58ef379 | 2012-02-23 09:45:49 -0500 | [diff] [blame] | 1735 | |
| 1736 | wl_list_insert(&ec->sprite_list, &sprite->link); |
| 1737 | } |
| 1738 | |
| 1739 | free(plane_res->planes); |
| 1740 | free(plane_res); |
| 1741 | } |
| 1742 | |
Kristian Høgsberg | 85fd327 | 2012-02-23 21:45:32 -0500 | [diff] [blame] | 1743 | static void |
| 1744 | destroy_sprites(struct drm_compositor *compositor) |
| 1745 | { |
| 1746 | struct drm_sprite *sprite, *next; |
| 1747 | struct drm_output *output; |
| 1748 | |
| 1749 | output = container_of(compositor->base.output_list.next, |
| 1750 | struct drm_output, base.link); |
| 1751 | |
| 1752 | wl_list_for_each_safe(sprite, next, &compositor->sprite_list, link) { |
| 1753 | drmModeSetPlane(compositor->drm.fd, |
| 1754 | sprite->plane_id, |
| 1755 | output->crtc_id, 0, 0, |
| 1756 | 0, 0, 0, 0, 0, 0, 0, 0); |
Ander Conselvan de Oliveira | 526d461 | 2013-01-25 15:13:03 +0200 | [diff] [blame] | 1757 | drm_output_release_fb(output, sprite->current); |
| 1758 | drm_output_release_fb(output, sprite->next); |
Kristian Høgsberg | 65a11e1 | 2012-08-03 11:30:18 -0400 | [diff] [blame] | 1759 | weston_plane_release(&sprite->plane); |
Kristian Høgsberg | 85fd327 | 2012-02-23 21:45:32 -0500 | [diff] [blame] | 1760 | free(sprite); |
| 1761 | } |
| 1762 | } |
Jesse Barnes | 58ef379 | 2012-02-23 09:45:49 -0500 | [diff] [blame] | 1763 | |
Kristian Høgsberg | fc783d4 | 2010-06-11 12:56:24 -0400 | [diff] [blame] | 1764 | static int |
Kristian Høgsberg | 875ab9e | 2012-03-30 11:52:39 -0400 | [diff] [blame] | 1765 | create_outputs(struct drm_compositor *ec, uint32_t option_connector, |
Tiago Vignatti | 8e53c7f | 2012-02-29 19:53:50 +0200 | [diff] [blame] | 1766 | struct udev_device *drm_device) |
Kristian Høgsberg | fc783d4 | 2010-06-11 12:56:24 -0400 | [diff] [blame] | 1767 | { |
| 1768 | drmModeConnector *connector; |
| 1769 | drmModeRes *resources; |
| 1770 | int i; |
Benjamin Franzke | eefc36c | 2011-03-11 16:39:20 +0100 | [diff] [blame] | 1771 | int x = 0, y = 0; |
Kristian Høgsberg | fc783d4 | 2010-06-11 12:56:24 -0400 | [diff] [blame] | 1772 | |
Benjamin Franzke | 2af7f10 | 2011-03-02 11:14:59 +0100 | [diff] [blame] | 1773 | resources = drmModeGetResources(ec->drm.fd); |
Kristian Høgsberg | fc783d4 | 2010-06-11 12:56:24 -0400 | [diff] [blame] | 1774 | if (!resources) { |
Martin Minarik | 6d11836 | 2012-06-07 18:01:59 +0200 | [diff] [blame] | 1775 | weston_log("drmModeGetResources failed\n"); |
Kristian Høgsberg | fc783d4 | 2010-06-11 12:56:24 -0400 | [diff] [blame] | 1776 | return -1; |
| 1777 | } |
| 1778 | |
Jesse Barnes | 58ef379 | 2012-02-23 09:45:49 -0500 | [diff] [blame] | 1779 | ec->crtcs = calloc(resources->count_crtcs, sizeof(uint32_t)); |
Christopher Michael | eb866cd | 2012-03-07 14:55:21 -0500 | [diff] [blame] | 1780 | if (!ec->crtcs) { |
| 1781 | drmModeFreeResources(resources); |
Jesse Barnes | 58ef379 | 2012-02-23 09:45:49 -0500 | [diff] [blame] | 1782 | return -1; |
Christopher Michael | eb866cd | 2012-03-07 14:55:21 -0500 | [diff] [blame] | 1783 | } |
Jesse Barnes | 58ef379 | 2012-02-23 09:45:49 -0500 | [diff] [blame] | 1784 | |
Rob Clark | 4339add | 2012-08-09 14:18:28 -0500 | [diff] [blame] | 1785 | ec->min_width = resources->min_width; |
| 1786 | ec->max_width = resources->max_width; |
| 1787 | ec->min_height = resources->min_height; |
| 1788 | ec->max_height = resources->max_height; |
| 1789 | |
Jesse Barnes | 58ef379 | 2012-02-23 09:45:49 -0500 | [diff] [blame] | 1790 | ec->num_crtcs = resources->count_crtcs; |
| 1791 | memcpy(ec->crtcs, resources->crtcs, sizeof(uint32_t) * ec->num_crtcs); |
| 1792 | |
Kristian Høgsberg | fc783d4 | 2010-06-11 12:56:24 -0400 | [diff] [blame] | 1793 | for (i = 0; i < resources->count_connectors; i++) { |
Benjamin Franzke | 117483d | 2011-08-30 11:38:26 +0200 | [diff] [blame] | 1794 | connector = drmModeGetConnector(ec->drm.fd, |
| 1795 | resources->connectors[i]); |
Kristian Høgsberg | fc783d4 | 2010-06-11 12:56:24 -0400 | [diff] [blame] | 1796 | if (connector == NULL) |
| 1797 | continue; |
| 1798 | |
| 1799 | if (connector->connection == DRM_MODE_CONNECTED && |
| 1800 | (option_connector == 0 || |
Benjamin Franzke | 9eaee35 | 2011-08-02 13:03:54 +0200 | [diff] [blame] | 1801 | connector->connector_id == option_connector)) { |
Benjamin Franzke | eefc36c | 2011-03-11 16:39:20 +0100 | [diff] [blame] | 1802 | if (create_output_for_connector(ec, resources, |
Tiago Vignatti | 8e53c7f | 2012-02-29 19:53:50 +0200 | [diff] [blame] | 1803 | connector, x, y, |
| 1804 | drm_device) < 0) { |
Benjamin Franzke | 439d986 | 2011-10-07 08:20:53 +0200 | [diff] [blame] | 1805 | drmModeFreeConnector(connector); |
| 1806 | continue; |
| 1807 | } |
Kristian Høgsberg | fc783d4 | 2010-06-11 12:56:24 -0400 | [diff] [blame] | 1808 | |
Benjamin Franzke | 9eaee35 | 2011-08-02 13:03:54 +0200 | [diff] [blame] | 1809 | x += container_of(ec->base.output_list.prev, |
Kristian Høgsberg | 8334bc1 | 2012-01-03 10:29:47 -0500 | [diff] [blame] | 1810 | struct weston_output, |
Scott Moreau | 1bad5db | 2012-08-18 01:04:05 -0600 | [diff] [blame] | 1811 | link)->width; |
Benjamin Franzke | 9eaee35 | 2011-08-02 13:03:54 +0200 | [diff] [blame] | 1812 | } |
Benjamin Franzke | eefc36c | 2011-03-11 16:39:20 +0100 | [diff] [blame] | 1813 | |
Kristian Høgsberg | fc783d4 | 2010-06-11 12:56:24 -0400 | [diff] [blame] | 1814 | drmModeFreeConnector(connector); |
| 1815 | } |
| 1816 | |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 1817 | if (wl_list_empty(&ec->base.output_list)) { |
Martin Minarik | 6d11836 | 2012-06-07 18:01:59 +0200 | [diff] [blame] | 1818 | weston_log("No currently active connector found.\n"); |
Christopher Michael | eb866cd | 2012-03-07 14:55:21 -0500 | [diff] [blame] | 1819 | drmModeFreeResources(resources); |
Kristian Høgsberg | fc783d4 | 2010-06-11 12:56:24 -0400 | [diff] [blame] | 1820 | return -1; |
| 1821 | } |
| 1822 | |
| 1823 | drmModeFreeResources(resources); |
| 1824 | |
| 1825 | return 0; |
| 1826 | } |
| 1827 | |
Benjamin Franzke | 9c26ff3 | 2011-03-15 15:08:41 +0100 | [diff] [blame] | 1828 | static void |
Tiago Vignatti | 8e53c7f | 2012-02-29 19:53:50 +0200 | [diff] [blame] | 1829 | update_outputs(struct drm_compositor *ec, struct udev_device *drm_device) |
Benjamin Franzke | 9c26ff3 | 2011-03-15 15:08:41 +0100 | [diff] [blame] | 1830 | { |
| 1831 | drmModeConnector *connector; |
| 1832 | drmModeRes *resources; |
| 1833 | struct drm_output *output, *next; |
| 1834 | int x = 0, y = 0; |
| 1835 | int x_offset = 0, y_offset = 0; |
| 1836 | uint32_t connected = 0, disconnects = 0; |
| 1837 | int i; |
| 1838 | |
| 1839 | resources = drmModeGetResources(ec->drm.fd); |
| 1840 | if (!resources) { |
Martin Minarik | 6d11836 | 2012-06-07 18:01:59 +0200 | [diff] [blame] | 1841 | weston_log("drmModeGetResources failed\n"); |
Benjamin Franzke | 9c26ff3 | 2011-03-15 15:08:41 +0100 | [diff] [blame] | 1842 | return; |
| 1843 | } |
| 1844 | |
| 1845 | /* collect new connects */ |
| 1846 | for (i = 0; i < resources->count_connectors; i++) { |
Benjamin Franzke | 117483d | 2011-08-30 11:38:26 +0200 | [diff] [blame] | 1847 | int connector_id = resources->connectors[i]; |
| 1848 | |
| 1849 | connector = drmModeGetConnector(ec->drm.fd, connector_id); |
David Herrmann | 7551cff | 2011-12-08 17:05:43 +0100 | [diff] [blame] | 1850 | if (connector == NULL) |
Benjamin Franzke | 9c26ff3 | 2011-03-15 15:08:41 +0100 | [diff] [blame] | 1851 | continue; |
| 1852 | |
David Herrmann | 7551cff | 2011-12-08 17:05:43 +0100 | [diff] [blame] | 1853 | if (connector->connection != DRM_MODE_CONNECTED) { |
| 1854 | drmModeFreeConnector(connector); |
| 1855 | continue; |
| 1856 | } |
| 1857 | |
Benjamin Franzke | 117483d | 2011-08-30 11:38:26 +0200 | [diff] [blame] | 1858 | connected |= (1 << connector_id); |
| 1859 | |
| 1860 | if (!(ec->connector_allocator & (1 << connector_id))) { |
Kristian Høgsberg | 8334bc1 | 2012-01-03 10:29:47 -0500 | [diff] [blame] | 1861 | struct weston_output *last = |
Benjamin Franzke | 9c26ff3 | 2011-03-15 15:08:41 +0100 | [diff] [blame] | 1862 | container_of(ec->base.output_list.prev, |
Kristian Høgsberg | 8334bc1 | 2012-01-03 10:29:47 -0500 | [diff] [blame] | 1863 | struct weston_output, link); |
Benjamin Franzke | 9c26ff3 | 2011-03-15 15:08:41 +0100 | [diff] [blame] | 1864 | |
| 1865 | /* XXX: not yet needed, we die with 0 outputs */ |
| 1866 | if (!wl_list_empty(&ec->base.output_list)) |
Scott Moreau | 1bad5db | 2012-08-18 01:04:05 -0600 | [diff] [blame] | 1867 | x = last->x + last->width; |
Benjamin Franzke | 9c26ff3 | 2011-03-15 15:08:41 +0100 | [diff] [blame] | 1868 | else |
| 1869 | x = 0; |
| 1870 | y = 0; |
| 1871 | create_output_for_connector(ec, resources, |
Tiago Vignatti | 8e53c7f | 2012-02-29 19:53:50 +0200 | [diff] [blame] | 1872 | connector, x, y, |
| 1873 | drm_device); |
Martin Minarik | 6d11836 | 2012-06-07 18:01:59 +0200 | [diff] [blame] | 1874 | weston_log("connector %d connected\n", connector_id); |
Benjamin Franzke | 117483d | 2011-08-30 11:38:26 +0200 | [diff] [blame] | 1875 | |
Benjamin Franzke | 9c26ff3 | 2011-03-15 15:08:41 +0100 | [diff] [blame] | 1876 | } |
| 1877 | drmModeFreeConnector(connector); |
| 1878 | } |
| 1879 | drmModeFreeResources(resources); |
| 1880 | |
| 1881 | disconnects = ec->connector_allocator & ~connected; |
| 1882 | if (disconnects) { |
| 1883 | wl_list_for_each_safe(output, next, &ec->base.output_list, |
| 1884 | base.link) { |
| 1885 | if (x_offset != 0 || y_offset != 0) { |
Kristian Høgsberg | 8334bc1 | 2012-01-03 10:29:47 -0500 | [diff] [blame] | 1886 | weston_output_move(&output->base, |
Benjamin Franzke | 9c26ff3 | 2011-03-15 15:08:41 +0100 | [diff] [blame] | 1887 | output->base.x - x_offset, |
| 1888 | output->base.y - y_offset); |
| 1889 | } |
| 1890 | |
| 1891 | if (disconnects & (1 << output->connector_id)) { |
| 1892 | disconnects &= ~(1 << output->connector_id); |
Martin Minarik | 6d11836 | 2012-06-07 18:01:59 +0200 | [diff] [blame] | 1893 | weston_log("connector %d disconnected\n", |
Benjamin Franzke | 9c26ff3 | 2011-03-15 15:08:41 +0100 | [diff] [blame] | 1894 | output->connector_id); |
Scott Moreau | 1bad5db | 2012-08-18 01:04:05 -0600 | [diff] [blame] | 1895 | x_offset += output->base.width; |
Benjamin Franzke | 48c4ea2 | 2011-08-30 11:44:56 +0200 | [diff] [blame] | 1896 | drm_output_destroy(&output->base); |
Benjamin Franzke | 9c26ff3 | 2011-03-15 15:08:41 +0100 | [diff] [blame] | 1897 | } |
| 1898 | } |
| 1899 | } |
| 1900 | |
| 1901 | /* FIXME: handle zero outputs, without terminating */ |
| 1902 | if (ec->connector_allocator == 0) |
| 1903 | wl_display_terminate(ec->base.wl_display); |
| 1904 | } |
| 1905 | |
| 1906 | static int |
David Herrmann | d7488c2 | 2012-03-11 20:05:21 +0100 | [diff] [blame] | 1907 | udev_event_is_hotplug(struct drm_compositor *ec, struct udev_device *device) |
Benjamin Franzke | 9c26ff3 | 2011-03-15 15:08:41 +0100 | [diff] [blame] | 1908 | { |
David Herrmann | d7488c2 | 2012-03-11 20:05:21 +0100 | [diff] [blame] | 1909 | const char *sysnum; |
David Herrmann | 6ac52db | 2012-03-11 20:05:22 +0100 | [diff] [blame] | 1910 | const char *val; |
David Herrmann | d7488c2 | 2012-03-11 20:05:21 +0100 | [diff] [blame] | 1911 | |
| 1912 | sysnum = udev_device_get_sysnum(device); |
| 1913 | if (!sysnum || atoi(sysnum) != ec->drm.id) |
| 1914 | return 0; |
Benjamin Franzke | 117483d | 2011-08-30 11:38:26 +0200 | [diff] [blame] | 1915 | |
David Herrmann | 6ac52db | 2012-03-11 20:05:22 +0100 | [diff] [blame] | 1916 | val = udev_device_get_property_value(device, "HOTPLUG"); |
| 1917 | if (!val) |
Benjamin Franzke | 9c26ff3 | 2011-03-15 15:08:41 +0100 | [diff] [blame] | 1918 | return 0; |
| 1919 | |
David Herrmann | 6ac52db | 2012-03-11 20:05:22 +0100 | [diff] [blame] | 1920 | return strcmp(val, "1") == 0; |
Benjamin Franzke | 9c26ff3 | 2011-03-15 15:08:41 +0100 | [diff] [blame] | 1921 | } |
| 1922 | |
Kristian Høgsberg | b186847 | 2011-04-22 12:27:57 -0400 | [diff] [blame] | 1923 | static int |
Benjamin Franzke | 9c26ff3 | 2011-03-15 15:08:41 +0100 | [diff] [blame] | 1924 | udev_drm_event(int fd, uint32_t mask, void *data) |
| 1925 | { |
| 1926 | struct drm_compositor *ec = data; |
| 1927 | struct udev_device *event; |
| 1928 | |
| 1929 | event = udev_monitor_receive_device(ec->udev_monitor); |
Benjamin Franzke | 117483d | 2011-08-30 11:38:26 +0200 | [diff] [blame] | 1930 | |
David Herrmann | d7488c2 | 2012-03-11 20:05:21 +0100 | [diff] [blame] | 1931 | if (udev_event_is_hotplug(ec, event)) |
Tiago Vignatti | 8e53c7f | 2012-02-29 19:53:50 +0200 | [diff] [blame] | 1932 | update_outputs(ec, event); |
Benjamin Franzke | 9c26ff3 | 2011-03-15 15:08:41 +0100 | [diff] [blame] | 1933 | |
| 1934 | udev_device_unref(event); |
Kristian Høgsberg | b186847 | 2011-04-22 12:27:57 -0400 | [diff] [blame] | 1935 | |
| 1936 | return 1; |
Benjamin Franzke | 9c26ff3 | 2011-03-15 15:08:41 +0100 | [diff] [blame] | 1937 | } |
| 1938 | |
Kristian Høgsberg | caa6442 | 2010-12-01 16:52:15 -0500 | [diff] [blame] | 1939 | static void |
Kristian Høgsberg | 7b884bc | 2012-07-31 14:32:01 -0400 | [diff] [blame] | 1940 | drm_restore(struct weston_compositor *ec) |
| 1941 | { |
| 1942 | struct drm_compositor *d = (struct drm_compositor *) ec; |
| 1943 | |
| 1944 | if (weston_launcher_drm_set_master(&d->base, d->drm.fd, 0) < 0) |
| 1945 | weston_log("failed to drop master: %m\n"); |
| 1946 | tty_reset(d->tty); |
| 1947 | } |
| 1948 | |
| 1949 | static void |
Scott Moreau | c50645c | 2012-07-31 22:29:56 -0600 | [diff] [blame] | 1950 | drm_free_configured_output(struct drm_configured_output *output) |
| 1951 | { |
| 1952 | free(output->name); |
| 1953 | free(output->mode); |
| 1954 | free(output); |
| 1955 | } |
| 1956 | |
| 1957 | static void |
Kristian Høgsberg | 8334bc1 | 2012-01-03 10:29:47 -0500 | [diff] [blame] | 1958 | drm_destroy(struct weston_compositor *ec) |
Kristian Høgsberg | caa6442 | 2010-12-01 16:52:15 -0500 | [diff] [blame] | 1959 | { |
| 1960 | struct drm_compositor *d = (struct drm_compositor *) ec; |
Kristian Høgsberg | e809103 | 2013-02-18 15:43:29 -0500 | [diff] [blame] | 1961 | struct udev_seat *seat, *next; |
Scott Moreau | 8ab5d45 | 2012-07-30 19:51:08 -0600 | [diff] [blame] | 1962 | struct drm_configured_output *o, *n; |
Kristian Høgsberg | caa6442 | 2010-12-01 16:52:15 -0500 | [diff] [blame] | 1963 | |
Kristian Høgsberg | e809103 | 2013-02-18 15:43:29 -0500 | [diff] [blame] | 1964 | wl_list_for_each_safe(seat, next, &ec->seat_list, base.link) |
| 1965 | udev_seat_destroy(seat); |
Scott Moreau | 8ab5d45 | 2012-07-30 19:51:08 -0600 | [diff] [blame] | 1966 | wl_list_for_each_safe(o, n, &configured_output_list, link) |
Scott Moreau | c50645c | 2012-07-31 22:29:56 -0600 | [diff] [blame] | 1967 | drm_free_configured_output(o); |
Jonas Ådahl | c97af92 | 2012-03-28 22:36:09 +0200 | [diff] [blame] | 1968 | |
| 1969 | wl_event_source_remove(d->udev_drm_source); |
| 1970 | wl_event_source_remove(d->drm_source); |
| 1971 | |
Kristian Høgsberg | 8334bc1 | 2012-01-03 10:29:47 -0500 | [diff] [blame] | 1972 | weston_compositor_shutdown(ec); |
Jonas Ådahl | c97af92 | 2012-03-28 22:36:09 +0200 | [diff] [blame] | 1973 | |
Vasily Khoruzhick | 52cfd61 | 2013-01-08 19:09:01 +0300 | [diff] [blame] | 1974 | ec->renderer->destroy(ec); |
Kristian Høgsberg | 3a0de88 | 2012-09-06 21:44:24 -0400 | [diff] [blame] | 1975 | |
Kristian Høgsberg | 85fd327 | 2012-02-23 21:45:32 -0500 | [diff] [blame] | 1976 | destroy_sprites(d); |
Ander Conselvan de Oliveira | 5fb4414 | 2013-01-25 15:13:05 +0200 | [diff] [blame] | 1977 | |
| 1978 | if (d->gbm) |
| 1979 | gbm_device_destroy(d->gbm); |
| 1980 | |
Benjamin Franzke | bfeda13 | 2012-01-30 14:04:04 +0100 | [diff] [blame] | 1981 | if (weston_launcher_drm_set_master(&d->base, d->drm.fd, 0) < 0) |
Martin Minarik | 6d11836 | 2012-06-07 18:01:59 +0200 | [diff] [blame] | 1982 | weston_log("failed to drop master: %m\n"); |
Kristian Høgsberg | e4762a6 | 2011-01-14 14:59:13 -0500 | [diff] [blame] | 1983 | tty_destroy(d->tty); |
Kristian Høgsberg | caa6442 | 2010-12-01 16:52:15 -0500 | [diff] [blame] | 1984 | |
Kristian Høgsberg | e4762a6 | 2011-01-14 14:59:13 -0500 | [diff] [blame] | 1985 | free(d); |
Kristian Høgsberg | caa6442 | 2010-12-01 16:52:15 -0500 | [diff] [blame] | 1986 | } |
| 1987 | |
Kristian Høgsberg | 9396fc5 | 2011-05-06 15:15:37 -0400 | [diff] [blame] | 1988 | static void |
Kristian Høgsberg | 835cd49 | 2012-01-18 11:48:46 -0500 | [diff] [blame] | 1989 | drm_compositor_set_modes(struct drm_compositor *compositor) |
| 1990 | { |
| 1991 | struct drm_output *output; |
| 1992 | struct drm_mode *drm_mode; |
| 1993 | int ret; |
| 1994 | |
| 1995 | wl_list_for_each(output, &compositor->base.output_list, base.link) { |
Ander Conselvan de Oliveira | 2002f88 | 2013-02-26 13:44:58 +0200 | [diff] [blame] | 1996 | if (!output->current) { |
| 1997 | /* If something that would cause the output to |
| 1998 | * switch mode happened while in another vt, we |
| 1999 | * might not have a current drm_fb. In that case, |
| 2000 | * schedule a repaint and let drm_output_repaint |
| 2001 | * handle setting the mode. */ |
| 2002 | weston_output_schedule_repaint(&output->base); |
| 2003 | continue; |
| 2004 | } |
| 2005 | |
Kristian Høgsberg | 835cd49 | 2012-01-18 11:48:46 -0500 | [diff] [blame] | 2006 | drm_mode = (struct drm_mode *) output->base.current; |
| 2007 | ret = drmModeSetCrtc(compositor->drm.fd, output->crtc_id, |
Ander Conselvan de Oliveira | 555c17d | 2012-05-02 16:42:21 +0300 | [diff] [blame] | 2008 | output->current->fb_id, 0, 0, |
Kristian Høgsberg | 835cd49 | 2012-01-18 11:48:46 -0500 | [diff] [blame] | 2009 | &output->connector_id, 1, |
| 2010 | &drm_mode->mode_info); |
| 2011 | if (ret < 0) { |
Martin Minarik | 6d11836 | 2012-06-07 18:01:59 +0200 | [diff] [blame] | 2012 | weston_log( |
Kristian Høgsberg | cbcd047 | 2012-03-11 18:27:41 -0400 | [diff] [blame] | 2013 | "failed to set mode %dx%d for output at %d,%d: %m\n", |
Kristian Høgsberg | 835cd49 | 2012-01-18 11:48:46 -0500 | [diff] [blame] | 2014 | drm_mode->base.width, drm_mode->base.height, |
| 2015 | output->base.x, output->base.y); |
| 2016 | } |
| 2017 | } |
| 2018 | } |
| 2019 | |
| 2020 | static void |
Kristian Høgsberg | 8334bc1 | 2012-01-03 10:29:47 -0500 | [diff] [blame] | 2021 | vt_func(struct weston_compositor *compositor, int event) |
Kristian Høgsberg | 9396fc5 | 2011-05-06 15:15:37 -0400 | [diff] [blame] | 2022 | { |
| 2023 | struct drm_compositor *ec = (struct drm_compositor *) compositor; |
Kristian Høgsberg | e809103 | 2013-02-18 15:43:29 -0500 | [diff] [blame] | 2024 | struct udev_seat *seat; |
Kristian Høgsberg | 85fd327 | 2012-02-23 21:45:32 -0500 | [diff] [blame] | 2025 | struct drm_sprite *sprite; |
Kristian Høgsberg | a6edab3 | 2012-07-14 01:06:28 -0400 | [diff] [blame] | 2026 | struct drm_output *output; |
Kristian Høgsberg | 9396fc5 | 2011-05-06 15:15:37 -0400 | [diff] [blame] | 2027 | |
| 2028 | switch (event) { |
| 2029 | case TTY_ENTER_VT: |
Pekka Paalanen | 81a13a3 | 2012-08-03 14:39:10 +0300 | [diff] [blame] | 2030 | weston_log("entering VT\n"); |
Kristian Høgsberg | 9396fc5 | 2011-05-06 15:15:37 -0400 | [diff] [blame] | 2031 | compositor->focus = 1; |
Benjamin Franzke | bfeda13 | 2012-01-30 14:04:04 +0100 | [diff] [blame] | 2032 | if (weston_launcher_drm_set_master(&ec->base, ec->drm.fd, 1)) { |
Martin Minarik | 6d11836 | 2012-06-07 18:01:59 +0200 | [diff] [blame] | 2033 | weston_log("failed to set master: %m\n"); |
Kristian Høgsberg | a018fb0 | 2012-01-16 10:52:52 -0500 | [diff] [blame] | 2034 | wl_display_terminate(compositor->wl_display); |
| 2035 | } |
Pekka Paalanen | bce2d3f | 2011-12-02 13:07:27 +0200 | [diff] [blame] | 2036 | compositor->state = ec->prev_state; |
Kristian Høgsberg | 835cd49 | 2012-01-18 11:48:46 -0500 | [diff] [blame] | 2037 | drm_compositor_set_modes(ec); |
Kristian Høgsberg | 8334bc1 | 2012-01-03 10:29:47 -0500 | [diff] [blame] | 2038 | weston_compositor_damage_all(compositor); |
Kristian Høgsberg | 8764466 | 2013-02-18 16:50:19 -0500 | [diff] [blame] | 2039 | wl_list_for_each(seat, &compositor->seat_list, base.link) |
| 2040 | udev_seat_enable(seat, ec->udev); |
Kristian Høgsberg | 9396fc5 | 2011-05-06 15:15:37 -0400 | [diff] [blame] | 2041 | break; |
| 2042 | case TTY_LEAVE_VT: |
Pekka Paalanen | 81a13a3 | 2012-08-03 14:39:10 +0300 | [diff] [blame] | 2043 | weston_log("leaving VT\n"); |
Kristian Høgsberg | 8764466 | 2013-02-18 16:50:19 -0500 | [diff] [blame] | 2044 | wl_list_for_each(seat, &compositor->seat_list, base.link) |
| 2045 | udev_seat_disable(seat); |
Kristian Høgsberg | 4014a6b | 2012-04-10 00:08:45 -0400 | [diff] [blame] | 2046 | |
Kristian Høgsberg | 9396fc5 | 2011-05-06 15:15:37 -0400 | [diff] [blame] | 2047 | compositor->focus = 0; |
Pekka Paalanen | bce2d3f | 2011-12-02 13:07:27 +0200 | [diff] [blame] | 2048 | ec->prev_state = compositor->state; |
Philipp Brüschweiler | 57edf7f | 2013-03-29 13:01:56 +0100 | [diff] [blame] | 2049 | weston_compositor_offscreen(compositor); |
Kristian Høgsberg | d8e181b | 2011-05-06 15:38:28 -0400 | [diff] [blame] | 2050 | |
Kristian Høgsberg | 34f80ff | 2012-01-18 11:50:31 -0500 | [diff] [blame] | 2051 | /* If we have a repaint scheduled (either from a |
| 2052 | * pending pageflip or the idle handler), make sure we |
| 2053 | * cancel that so we don't try to pageflip when we're |
Philipp Brüschweiler | 57edf7f | 2013-03-29 13:01:56 +0100 | [diff] [blame] | 2054 | * vt switched away. The OFFSCREEN state will prevent |
Kristian Høgsberg | 34f80ff | 2012-01-18 11:50:31 -0500 | [diff] [blame] | 2055 | * further attemps at repainting. When we switch |
| 2056 | * back, we schedule a repaint, which will process |
| 2057 | * pending frame callbacks. */ |
| 2058 | |
Kristian Høgsberg | a6edab3 | 2012-07-14 01:06:28 -0400 | [diff] [blame] | 2059 | wl_list_for_each(output, &ec->base.output_list, base.link) { |
| 2060 | output->base.repaint_needed = 0; |
| 2061 | drmModeSetCursor(ec->drm.fd, output->crtc_id, 0, 0, 0); |
Kristian Høgsberg | 34f80ff | 2012-01-18 11:50:31 -0500 | [diff] [blame] | 2062 | } |
| 2063 | |
Kristian Høgsberg | a6edab3 | 2012-07-14 01:06:28 -0400 | [diff] [blame] | 2064 | output = container_of(ec->base.output_list.next, |
| 2065 | struct drm_output, base.link); |
Kristian Høgsberg | 85fd327 | 2012-02-23 21:45:32 -0500 | [diff] [blame] | 2066 | |
| 2067 | wl_list_for_each(sprite, &ec->sprite_list, link) |
| 2068 | drmModeSetPlane(ec->drm.fd, |
| 2069 | sprite->plane_id, |
Kristian Høgsberg | a6edab3 | 2012-07-14 01:06:28 -0400 | [diff] [blame] | 2070 | output->crtc_id, 0, 0, |
Kristian Høgsberg | 85fd327 | 2012-02-23 21:45:32 -0500 | [diff] [blame] | 2071 | 0, 0, 0, 0, 0, 0, 0, 0); |
| 2072 | |
Benjamin Franzke | bfeda13 | 2012-01-30 14:04:04 +0100 | [diff] [blame] | 2073 | if (weston_launcher_drm_set_master(&ec->base, ec->drm.fd, 0) < 0) |
Martin Minarik | 6d11836 | 2012-06-07 18:01:59 +0200 | [diff] [blame] | 2074 | weston_log("failed to drop master: %m\n"); |
Kristian Høgsberg | a018fb0 | 2012-01-16 10:52:52 -0500 | [diff] [blame] | 2075 | |
Kristian Høgsberg | 9396fc5 | 2011-05-06 15:15:37 -0400 | [diff] [blame] | 2076 | break; |
| 2077 | }; |
| 2078 | } |
| 2079 | |
Kristian Høgsberg | 5d1c0c5 | 2012-04-10 00:11:50 -0400 | [diff] [blame] | 2080 | static void |
Daniel Stone | 325fc2d | 2012-05-30 16:31:58 +0100 | [diff] [blame] | 2081 | switch_vt_binding(struct wl_seat *seat, uint32_t time, uint32_t key, void *data) |
Kristian Høgsberg | 5d1c0c5 | 2012-04-10 00:11:50 -0400 | [diff] [blame] | 2082 | { |
| 2083 | struct drm_compositor *ec = data; |
| 2084 | |
Daniel Stone | 325fc2d | 2012-05-30 16:31:58 +0100 | [diff] [blame] | 2085 | tty_activate_vt(ec->tty, key - KEY_F1 + 1); |
Kristian Høgsberg | 5d1c0c5 | 2012-04-10 00:11:50 -0400 | [diff] [blame] | 2086 | } |
| 2087 | |
David Herrmann | 0af066f | 2012-10-29 19:21:16 +0100 | [diff] [blame] | 2088 | /* |
| 2089 | * Find primary GPU |
| 2090 | * Some systems may have multiple DRM devices attached to a single seat. This |
| 2091 | * function loops over all devices and tries to find a PCI device with the |
| 2092 | * boot_vga sysfs attribute set to 1. |
| 2093 | * If no such device is found, the first DRM device reported by udev is used. |
| 2094 | */ |
| 2095 | static struct udev_device* |
| 2096 | find_primary_gpu(struct drm_compositor *ec, const char *seat) |
| 2097 | { |
| 2098 | struct udev_enumerate *e; |
| 2099 | struct udev_list_entry *entry; |
| 2100 | const char *path, *device_seat, *id; |
| 2101 | struct udev_device *device, *drm_device, *pci; |
| 2102 | |
| 2103 | e = udev_enumerate_new(ec->udev); |
| 2104 | udev_enumerate_add_match_subsystem(e, "drm"); |
| 2105 | udev_enumerate_add_match_sysname(e, "card[0-9]*"); |
| 2106 | |
| 2107 | udev_enumerate_scan_devices(e); |
| 2108 | drm_device = NULL; |
| 2109 | udev_list_entry_foreach(entry, udev_enumerate_get_list_entry(e)) { |
| 2110 | path = udev_list_entry_get_name(entry); |
| 2111 | device = udev_device_new_from_syspath(ec->udev, path); |
| 2112 | if (!device) |
| 2113 | continue; |
| 2114 | device_seat = udev_device_get_property_value(device, "ID_SEAT"); |
| 2115 | if (!device_seat) |
| 2116 | device_seat = default_seat; |
| 2117 | if (strcmp(device_seat, seat)) { |
| 2118 | udev_device_unref(device); |
| 2119 | continue; |
| 2120 | } |
| 2121 | |
| 2122 | pci = udev_device_get_parent_with_subsystem_devtype(device, |
| 2123 | "pci", NULL); |
| 2124 | if (pci) { |
| 2125 | id = udev_device_get_sysattr_value(pci, "boot_vga"); |
| 2126 | if (id && !strcmp(id, "1")) { |
| 2127 | if (drm_device) |
| 2128 | udev_device_unref(drm_device); |
| 2129 | drm_device = device; |
| 2130 | break; |
| 2131 | } |
| 2132 | } |
| 2133 | |
| 2134 | if (!drm_device) |
| 2135 | drm_device = device; |
| 2136 | else |
| 2137 | udev_device_unref(device); |
| 2138 | } |
| 2139 | |
| 2140 | udev_enumerate_unref(e); |
| 2141 | return drm_device; |
| 2142 | } |
| 2143 | |
Ander Conselvan de Oliveira | da1c908 | 2012-10-31 17:55:46 +0200 | [diff] [blame] | 2144 | static void |
Ander Conselvan de Oliveira | 7e918da | 2012-11-22 15:56:59 +0200 | [diff] [blame] | 2145 | planes_binding(struct wl_seat *seat, uint32_t time, uint32_t key, void *data) |
Ander Conselvan de Oliveira | da1c908 | 2012-10-31 17:55:46 +0200 | [diff] [blame] | 2146 | { |
| 2147 | struct drm_compositor *c = data; |
| 2148 | |
Ander Conselvan de Oliveira | 7e918da | 2012-11-22 15:56:59 +0200 | [diff] [blame] | 2149 | switch (key) { |
| 2150 | case KEY_C: |
| 2151 | c->cursors_are_broken ^= 1; |
| 2152 | break; |
| 2153 | case KEY_V: |
| 2154 | c->sprites_are_broken ^= 1; |
| 2155 | break; |
| 2156 | case KEY_O: |
| 2157 | c->sprites_hidden ^= 1; |
| 2158 | break; |
| 2159 | default: |
| 2160 | break; |
| 2161 | } |
Ander Conselvan de Oliveira | 180f42a | 2012-11-21 15:11:37 +0200 | [diff] [blame] | 2162 | } |
| 2163 | |
Kristian Høgsberg | 8334bc1 | 2012-01-03 10:29:47 -0500 | [diff] [blame] | 2164 | static struct weston_compositor * |
Kristian Høgsberg | 8d51f14 | 2011-07-15 21:28:38 -0400 | [diff] [blame] | 2165 | drm_compositor_create(struct wl_display *display, |
Ander Conselvan de Oliveira | 5fb4414 | 2013-01-25 15:13:05 +0200 | [diff] [blame] | 2166 | int connector, const char *seat, int tty, int pixman, |
Kristian Høgsberg | 4172f66 | 2013-02-20 15:27:49 -0500 | [diff] [blame] | 2167 | int *argc, char *argv[], const char *config_file) |
Kristian Høgsberg | fc783d4 | 2010-06-11 12:56:24 -0400 | [diff] [blame] | 2168 | { |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 2169 | struct drm_compositor *ec; |
David Herrmann | 0af066f | 2012-10-29 19:21:16 +0100 | [diff] [blame] | 2170 | struct udev_device *drm_device; |
Kristian Høgsberg | fc783d4 | 2010-06-11 12:56:24 -0400 | [diff] [blame] | 2171 | struct wl_event_loop *loop; |
Kristian Høgsberg | e809103 | 2013-02-18 15:43:29 -0500 | [diff] [blame] | 2172 | struct udev_seat *udev_seat, *next; |
David Herrmann | 0af066f | 2012-10-29 19:21:16 +0100 | [diff] [blame] | 2173 | const char *path; |
Kristian Høgsberg | 5d1c0c5 | 2012-04-10 00:11:50 -0400 | [diff] [blame] | 2174 | uint32_t key; |
Kristian Høgsberg | fc783d4 | 2010-06-11 12:56:24 -0400 | [diff] [blame] | 2175 | |
Kristian Høgsberg | fc9c5e0 | 2012-06-08 16:45:33 -0400 | [diff] [blame] | 2176 | weston_log("initializing drm backend\n"); |
| 2177 | |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 2178 | ec = malloc(sizeof *ec); |
| 2179 | if (ec == NULL) |
| 2180 | return NULL; |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 2181 | memset(ec, 0, sizeof *ec); |
Daniel Stone | 725c2c3 | 2012-06-22 14:04:36 +0100 | [diff] [blame] | 2182 | |
Kristian Høgsberg | de37d67 | 2012-11-02 10:14:40 -0400 | [diff] [blame] | 2183 | /* KMS support for sprites is not complete yet, so disable the |
| 2184 | * functionality for now. */ |
| 2185 | ec->sprites_are_broken = 1; |
| 2186 | |
Ander Conselvan de Oliveira | 5fb4414 | 2013-01-25 15:13:05 +0200 | [diff] [blame] | 2187 | ec->use_pixman = pixman; |
| 2188 | |
Daniel Stone | 725c2c3 | 2012-06-22 14:04:36 +0100 | [diff] [blame] | 2189 | if (weston_compositor_init(&ec->base, display, argc, argv, |
Daniel Stone | a96b93c | 2012-06-22 14:04:37 +0100 | [diff] [blame] | 2190 | config_file) < 0) { |
Scott Moreau | 8eb6748 | 2013-02-23 12:04:56 -0700 | [diff] [blame] | 2191 | weston_log("%s failed\n", __func__); |
Daniel Stone | a96b93c | 2012-06-22 14:04:37 +0100 | [diff] [blame] | 2192 | goto err_base; |
| 2193 | } |
Daniel Stone | 725c2c3 | 2012-06-22 14:04:36 +0100 | [diff] [blame] | 2194 | |
Rafal Mielniczuk | 32069c0 | 2013-03-27 18:39:28 +0100 | [diff] [blame] | 2195 | /* Check if we run drm-backend using weston-launch */ |
Kristian Høgsberg | b76237e | 2013-04-04 21:36:20 -0400 | [diff] [blame] | 2196 | if (ec->base.launcher_sock == -1 && geteuid() != 0) { |
Rafal Mielniczuk | 32069c0 | 2013-03-27 18:39:28 +0100 | [diff] [blame] | 2197 | weston_log("fatal: drm backend should be run " |
Kristian Høgsberg | b76237e | 2013-04-04 21:36:20 -0400 | [diff] [blame] | 2198 | "using weston-launch binary or as root\n"); |
Rafal Mielniczuk | 32069c0 | 2013-03-27 18:39:28 +0100 | [diff] [blame] | 2199 | goto err_compositor; |
| 2200 | } |
| 2201 | |
Kristian Høgsberg | fc783d4 | 2010-06-11 12:56:24 -0400 | [diff] [blame] | 2202 | ec->udev = udev_new(); |
| 2203 | if (ec->udev == NULL) { |
Martin Minarik | 6d11836 | 2012-06-07 18:01:59 +0200 | [diff] [blame] | 2204 | weston_log("failed to initialize udev context\n"); |
Daniel Stone | a96b93c | 2012-06-22 14:04:37 +0100 | [diff] [blame] | 2205 | goto err_compositor; |
Kristian Høgsberg | fc783d4 | 2010-06-11 12:56:24 -0400 | [diff] [blame] | 2206 | } |
| 2207 | |
Kristian Høgsberg | c5b9ddb | 2012-01-15 14:29:09 -0500 | [diff] [blame] | 2208 | ec->base.wl_display = display; |
| 2209 | ec->tty = tty_create(&ec->base, vt_func, tty); |
| 2210 | if (!ec->tty) { |
Martin Minarik | 6d11836 | 2012-06-07 18:01:59 +0200 | [diff] [blame] | 2211 | weston_log("failed to initialize tty\n"); |
Daniel Stone | a96b93c | 2012-06-22 14:04:37 +0100 | [diff] [blame] | 2212 | goto err_udev; |
Kristian Høgsberg | c5b9ddb | 2012-01-15 14:29:09 -0500 | [diff] [blame] | 2213 | } |
| 2214 | |
David Herrmann | 0af066f | 2012-10-29 19:21:16 +0100 | [diff] [blame] | 2215 | drm_device = find_primary_gpu(ec, seat); |
Kristian Høgsberg | 8d51f14 | 2011-07-15 21:28:38 -0400 | [diff] [blame] | 2216 | if (drm_device == NULL) { |
Martin Minarik | 6d11836 | 2012-06-07 18:01:59 +0200 | [diff] [blame] | 2217 | weston_log("no drm device found\n"); |
David Herrmann | 0af066f | 2012-10-29 19:21:16 +0100 | [diff] [blame] | 2218 | goto err_tty; |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 2219 | } |
David Herrmann | 0af066f | 2012-10-29 19:21:16 +0100 | [diff] [blame] | 2220 | path = udev_device_get_syspath(drm_device); |
Kristian Høgsberg | fc783d4 | 2010-06-11 12:56:24 -0400 | [diff] [blame] | 2221 | |
Ander Conselvan de Oliveira | 2292917 | 2013-01-25 15:13:02 +0200 | [diff] [blame] | 2222 | if (init_drm(ec, drm_device) < 0) { |
| 2223 | weston_log("failed to initialize kms\n"); |
| 2224 | goto err_udev_dev; |
| 2225 | } |
| 2226 | |
Ander Conselvan de Oliveira | 5fb4414 | 2013-01-25 15:13:05 +0200 | [diff] [blame] | 2227 | if (ec->use_pixman) { |
| 2228 | if (init_pixman(ec) < 0) { |
| 2229 | weston_log("failed to initialize pixman renderer\n"); |
| 2230 | goto err_udev_dev; |
| 2231 | } |
| 2232 | } else { |
| 2233 | if (init_egl(ec) < 0) { |
| 2234 | weston_log("failed to initialize egl\n"); |
| 2235 | goto err_udev_dev; |
| 2236 | } |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 2237 | } |
Kristian Høgsberg | 8525a50 | 2011-01-14 16:20:21 -0500 | [diff] [blame] | 2238 | |
| 2239 | ec->base.destroy = drm_destroy; |
Kristian Høgsberg | 7b884bc | 2012-07-31 14:32:01 -0400 | [diff] [blame] | 2240 | ec->base.restore = drm_restore; |
Benjamin Franzke | 431da9a | 2011-04-20 11:02:58 +0200 | [diff] [blame] | 2241 | |
Kristian Høgsberg | 8525a50 | 2011-01-14 16:20:21 -0500 | [diff] [blame] | 2242 | ec->base.focus = 1; |
| 2243 | |
Kristian Høgsberg | 8334bc1 | 2012-01-03 10:29:47 -0500 | [diff] [blame] | 2244 | ec->prev_state = WESTON_COMPOSITOR_ACTIVE; |
Pekka Paalanen | bce2d3f | 2011-12-02 13:07:27 +0200 | [diff] [blame] | 2245 | |
Kristian Høgsberg | 5d1c0c5 | 2012-04-10 00:11:50 -0400 | [diff] [blame] | 2246 | for (key = KEY_F1; key < KEY_F9; key++) |
Daniel Stone | 325fc2d | 2012-05-30 16:31:58 +0100 | [diff] [blame] | 2247 | weston_compositor_add_key_binding(&ec->base, key, |
| 2248 | MODIFIER_CTRL | MODIFIER_ALT, |
| 2249 | switch_vt_binding, ec); |
Kristian Høgsberg | 5d1c0c5 | 2012-04-10 00:11:50 -0400 | [diff] [blame] | 2250 | |
Jesse Barnes | 58ef379 | 2012-02-23 09:45:49 -0500 | [diff] [blame] | 2251 | wl_list_init(&ec->sprite_list); |
| 2252 | create_sprites(ec); |
| 2253 | |
Tiago Vignatti | 8e53c7f | 2012-02-29 19:53:50 +0200 | [diff] [blame] | 2254 | if (create_outputs(ec, connector, drm_device) < 0) { |
Martin Minarik | 6d11836 | 2012-06-07 18:01:59 +0200 | [diff] [blame] | 2255 | weston_log("failed to create output for %s\n", path); |
Daniel Stone | a96b93c | 2012-06-22 14:04:37 +0100 | [diff] [blame] | 2256 | goto err_sprite; |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 2257 | } |
| 2258 | |
Benjamin Franzke | 02dee2c | 2011-10-07 08:27:26 +0200 | [diff] [blame] | 2259 | path = NULL; |
| 2260 | |
Kristian Høgsberg | e809103 | 2013-02-18 15:43:29 -0500 | [diff] [blame] | 2261 | if (udev_seat_create(&ec->base, ec->udev, seat) == NULL) { |
Kristian Høgsberg | 2f07ef6 | 2013-02-16 14:29:24 -0500 | [diff] [blame] | 2262 | weston_log("failed to create input devices\n"); |
| 2263 | goto err_sprite; |
| 2264 | } |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 2265 | |
| 2266 | loop = wl_display_get_event_loop(ec->base.wl_display); |
| 2267 | ec->drm_source = |
Benjamin Franzke | 2af7f10 | 2011-03-02 11:14:59 +0100 | [diff] [blame] | 2268 | wl_event_loop_add_fd(loop, ec->drm.fd, |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 2269 | WL_EVENT_READABLE, on_drm_input, ec); |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 2270 | |
Benjamin Franzke | 9c26ff3 | 2011-03-15 15:08:41 +0100 | [diff] [blame] | 2271 | ec->udev_monitor = udev_monitor_new_from_netlink(ec->udev, "udev"); |
| 2272 | if (ec->udev_monitor == NULL) { |
Martin Minarik | 6d11836 | 2012-06-07 18:01:59 +0200 | [diff] [blame] | 2273 | weston_log("failed to intialize udev monitor\n"); |
Daniel Stone | a96b93c | 2012-06-22 14:04:37 +0100 | [diff] [blame] | 2274 | goto err_drm_source; |
Benjamin Franzke | 9c26ff3 | 2011-03-15 15:08:41 +0100 | [diff] [blame] | 2275 | } |
| 2276 | udev_monitor_filter_add_match_subsystem_devtype(ec->udev_monitor, |
| 2277 | "drm", NULL); |
| 2278 | ec->udev_drm_source = |
Benjamin Franzke | 117483d | 2011-08-30 11:38:26 +0200 | [diff] [blame] | 2279 | wl_event_loop_add_fd(loop, |
| 2280 | udev_monitor_get_fd(ec->udev_monitor), |
Benjamin Franzke | 9c26ff3 | 2011-03-15 15:08:41 +0100 | [diff] [blame] | 2281 | WL_EVENT_READABLE, udev_drm_event, ec); |
| 2282 | |
| 2283 | if (udev_monitor_enable_receiving(ec->udev_monitor) < 0) { |
Martin Minarik | 6d11836 | 2012-06-07 18:01:59 +0200 | [diff] [blame] | 2284 | weston_log("failed to enable udev-monitor receiving\n"); |
Daniel Stone | a96b93c | 2012-06-22 14:04:37 +0100 | [diff] [blame] | 2285 | goto err_udev_monitor; |
Benjamin Franzke | 9c26ff3 | 2011-03-15 15:08:41 +0100 | [diff] [blame] | 2286 | } |
| 2287 | |
Daniel Stone | a96b93c | 2012-06-22 14:04:37 +0100 | [diff] [blame] | 2288 | udev_device_unref(drm_device); |
Daniel Stone | a96b93c | 2012-06-22 14:04:37 +0100 | [diff] [blame] | 2289 | |
Ander Conselvan de Oliveira | c509d2b | 2012-11-08 17:20:45 +0200 | [diff] [blame] | 2290 | weston_compositor_add_debug_binding(&ec->base, KEY_O, |
Ander Conselvan de Oliveira | 7e918da | 2012-11-22 15:56:59 +0200 | [diff] [blame] | 2291 | planes_binding, ec); |
Ander Conselvan de Oliveira | 180f42a | 2012-11-21 15:11:37 +0200 | [diff] [blame] | 2292 | weston_compositor_add_debug_binding(&ec->base, KEY_C, |
Ander Conselvan de Oliveira | 7e918da | 2012-11-22 15:56:59 +0200 | [diff] [blame] | 2293 | planes_binding, ec); |
| 2294 | weston_compositor_add_debug_binding(&ec->base, KEY_V, |
| 2295 | planes_binding, ec); |
Ander Conselvan de Oliveira | da1c908 | 2012-10-31 17:55:46 +0200 | [diff] [blame] | 2296 | |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 2297 | return &ec->base; |
Daniel Stone | a96b93c | 2012-06-22 14:04:37 +0100 | [diff] [blame] | 2298 | |
| 2299 | err_udev_monitor: |
| 2300 | wl_event_source_remove(ec->udev_drm_source); |
| 2301 | udev_monitor_unref(ec->udev_monitor); |
| 2302 | err_drm_source: |
| 2303 | wl_event_source_remove(ec->drm_source); |
Kristian Høgsberg | e809103 | 2013-02-18 15:43:29 -0500 | [diff] [blame] | 2304 | wl_list_for_each_safe(udev_seat, next, &ec->base.seat_list, base.link) |
| 2305 | udev_seat_destroy(udev_seat); |
Kristian Høgsberg | 2bc5e8e | 2012-09-06 20:51:00 -0400 | [diff] [blame] | 2306 | err_sprite: |
Vasily Khoruzhick | 52cfd61 | 2013-01-08 19:09:01 +0300 | [diff] [blame] | 2307 | ec->base.renderer->destroy(&ec->base); |
John Kåre Alsaker | 1b7ad16 | 2012-11-13 19:10:19 +0100 | [diff] [blame] | 2308 | gbm_device_destroy(ec->gbm); |
Kristian Høgsberg | 2bc5e8e | 2012-09-06 20:51:00 -0400 | [diff] [blame] | 2309 | destroy_sprites(ec); |
Daniel Stone | a96b93c | 2012-06-22 14:04:37 +0100 | [diff] [blame] | 2310 | err_udev_dev: |
| 2311 | udev_device_unref(drm_device); |
David Herrmann | 0af066f | 2012-10-29 19:21:16 +0100 | [diff] [blame] | 2312 | err_tty: |
Kristian Høgsberg | 5062384 | 2013-02-18 15:02:27 -0500 | [diff] [blame] | 2313 | if (weston_launcher_drm_set_master(&ec->base, ec->drm.fd, 0) < 0) |
| 2314 | weston_log("failed to drop master: %m\n"); |
Daniel Stone | a96b93c | 2012-06-22 14:04:37 +0100 | [diff] [blame] | 2315 | tty_destroy(ec->tty); |
| 2316 | err_udev: |
| 2317 | udev_unref(ec->udev); |
| 2318 | err_compositor: |
| 2319 | weston_compositor_shutdown(&ec->base); |
| 2320 | err_base: |
| 2321 | free(ec); |
| 2322 | return NULL; |
Kristian Høgsberg | fc783d4 | 2010-06-11 12:56:24 -0400 | [diff] [blame] | 2323 | } |
Kristian Høgsberg | 1c56218 | 2011-05-02 22:09:20 -0400 | [diff] [blame] | 2324 | |
Scott Moreau | 8f37e0b | 2012-07-31 15:30:41 -0600 | [diff] [blame] | 2325 | static int |
| 2326 | set_sync_flags(drmModeModeInfo *mode, char *hsync, char *vsync) |
| 2327 | { |
| 2328 | mode->flags = 0; |
| 2329 | |
| 2330 | if (strcmp(hsync, "+hsync") == 0) |
| 2331 | mode->flags |= DRM_MODE_FLAG_PHSYNC; |
| 2332 | else if (strcmp(hsync, "-hsync") == 0) |
| 2333 | mode->flags |= DRM_MODE_FLAG_NHSYNC; |
| 2334 | else |
| 2335 | return -1; |
| 2336 | |
| 2337 | if (strcmp(vsync, "+vsync") == 0) |
| 2338 | mode->flags |= DRM_MODE_FLAG_PVSYNC; |
| 2339 | else if (strcmp(vsync, "-vsync") == 0) |
| 2340 | mode->flags |= DRM_MODE_FLAG_NVSYNC; |
| 2341 | else |
| 2342 | return -1; |
| 2343 | |
| 2344 | return 0; |
| 2345 | } |
| 2346 | |
| 2347 | static int |
| 2348 | check_for_modeline(struct drm_configured_output *output) |
| 2349 | { |
| 2350 | drmModeModeInfo mode; |
| 2351 | char hsync[16]; |
| 2352 | char vsync[16]; |
| 2353 | char mode_name[16]; |
| 2354 | float fclock; |
| 2355 | |
| 2356 | mode.type = DRM_MODE_TYPE_USERDEF; |
| 2357 | mode.hskew = 0; |
| 2358 | mode.vscan = 0; |
| 2359 | mode.vrefresh = 0; |
| 2360 | |
| 2361 | if (sscanf(output_mode, "%f %hd %hd %hd %hd %hd %hd %hd %hd %s %s", |
| 2362 | &fclock, &mode.hdisplay, |
| 2363 | &mode.hsync_start, |
| 2364 | &mode.hsync_end, &mode.htotal, |
| 2365 | &mode.vdisplay, |
| 2366 | &mode.vsync_start, |
| 2367 | &mode.vsync_end, &mode.vtotal, |
| 2368 | hsync, vsync) == 11) { |
| 2369 | if (set_sync_flags(&mode, hsync, vsync)) |
| 2370 | return -1; |
| 2371 | |
| 2372 | sprintf(mode_name, "%dx%d", mode.hdisplay, mode.vdisplay); |
| 2373 | strcpy(mode.name, mode_name); |
| 2374 | |
| 2375 | mode.clock = fclock * 1000; |
| 2376 | } else |
| 2377 | return -1; |
| 2378 | |
| 2379 | output->crtc_mode = mode; |
| 2380 | |
| 2381 | return 0; |
| 2382 | } |
| 2383 | |
Scott Moreau | 8ab5d45 | 2012-07-30 19:51:08 -0600 | [diff] [blame] | 2384 | static void |
Scott Moreau | 1bad5db | 2012-08-18 01:04:05 -0600 | [diff] [blame] | 2385 | drm_output_set_transform(struct drm_configured_output *output) |
| 2386 | { |
| 2387 | if (!output_transform) { |
| 2388 | output->transform = WL_OUTPUT_TRANSFORM_NORMAL; |
| 2389 | return; |
| 2390 | } |
| 2391 | |
| 2392 | if (!strcmp(output_transform, "normal")) |
| 2393 | output->transform = WL_OUTPUT_TRANSFORM_NORMAL; |
| 2394 | else if (!strcmp(output_transform, "90")) |
| 2395 | output->transform = WL_OUTPUT_TRANSFORM_90; |
| 2396 | else if (!strcmp(output_transform, "180")) |
| 2397 | output->transform = WL_OUTPUT_TRANSFORM_180; |
| 2398 | else if (!strcmp(output_transform, "270")) |
| 2399 | output->transform = WL_OUTPUT_TRANSFORM_270; |
| 2400 | else if (!strcmp(output_transform, "flipped")) |
| 2401 | output->transform = WL_OUTPUT_TRANSFORM_FLIPPED; |
| 2402 | else if (!strcmp(output_transform, "flipped-90")) |
| 2403 | output->transform = WL_OUTPUT_TRANSFORM_FLIPPED_90; |
| 2404 | else if (!strcmp(output_transform, "flipped-180")) |
| 2405 | output->transform = WL_OUTPUT_TRANSFORM_FLIPPED_180; |
| 2406 | else if (!strcmp(output_transform, "flipped-270")) |
| 2407 | output->transform = WL_OUTPUT_TRANSFORM_FLIPPED_270; |
| 2408 | else { |
| 2409 | weston_log("Invalid transform \"%s\" for output %s\n", |
| 2410 | output_transform, output_name); |
| 2411 | output->transform = WL_OUTPUT_TRANSFORM_NORMAL; |
| 2412 | } |
| 2413 | |
| 2414 | free(output_transform); |
| 2415 | output_transform = NULL; |
| 2416 | } |
| 2417 | |
| 2418 | static void |
Scott Moreau | 8ab5d45 | 2012-07-30 19:51:08 -0600 | [diff] [blame] | 2419 | output_section_done(void *data) |
| 2420 | { |
| 2421 | struct drm_configured_output *output; |
| 2422 | |
| 2423 | output = malloc(sizeof *output); |
| 2424 | |
Scott Moreau | 1bad5db | 2012-08-18 01:04:05 -0600 | [diff] [blame] | 2425 | if (!output || !output_name || (output_name[0] == 'X') || |
| 2426 | (!output_mode && !output_transform)) { |
Kristian Høgsberg | 8ff6915 | 2012-07-31 22:18:28 -0400 | [diff] [blame] | 2427 | free(output_name); |
Kristian Høgsberg | 8ff6915 | 2012-07-31 22:18:28 -0400 | [diff] [blame] | 2428 | free(output_mode); |
Scott Moreau | 1bad5db | 2012-08-18 01:04:05 -0600 | [diff] [blame] | 2429 | free(output_transform); |
Rob Bradford | 6b6795f | 2012-10-09 18:44:35 +0100 | [diff] [blame] | 2430 | free(output); |
Scott Moreau | 1bad5db | 2012-08-18 01:04:05 -0600 | [diff] [blame] | 2431 | output_name = NULL; |
Kristian Høgsberg | 8ff6915 | 2012-07-31 22:18:28 -0400 | [diff] [blame] | 2432 | output_mode = NULL; |
Scott Moreau | 1bad5db | 2012-08-18 01:04:05 -0600 | [diff] [blame] | 2433 | output_transform = NULL; |
Scott Moreau | 8ab5d45 | 2012-07-30 19:51:08 -0600 | [diff] [blame] | 2434 | return; |
Kristian Høgsberg | 8ff6915 | 2012-07-31 22:18:28 -0400 | [diff] [blame] | 2435 | } |
Scott Moreau | 8ab5d45 | 2012-07-30 19:51:08 -0600 | [diff] [blame] | 2436 | |
| 2437 | output->config = OUTPUT_CONFIG_INVALID; |
| 2438 | output->name = output_name; |
| 2439 | output->mode = output_mode; |
| 2440 | |
Scott Moreau | 1bad5db | 2012-08-18 01:04:05 -0600 | [diff] [blame] | 2441 | if (output_mode) { |
| 2442 | if (strcmp(output_mode, "off") == 0) |
| 2443 | output->config = OUTPUT_CONFIG_OFF; |
| 2444 | else if (strcmp(output_mode, "preferred") == 0) |
| 2445 | output->config = OUTPUT_CONFIG_PREFERRED; |
| 2446 | else if (strcmp(output_mode, "current") == 0) |
| 2447 | output->config = OUTPUT_CONFIG_CURRENT; |
| 2448 | else if (sscanf(output_mode, "%dx%d", |
| 2449 | &output->width, &output->height) == 2) |
| 2450 | output->config = OUTPUT_CONFIG_MODE; |
| 2451 | else if (check_for_modeline(output) == 0) |
| 2452 | output->config = OUTPUT_CONFIG_MODELINE; |
Scott Moreau | 8ab5d45 | 2012-07-30 19:51:08 -0600 | [diff] [blame] | 2453 | |
Scott Moreau | 1bad5db | 2012-08-18 01:04:05 -0600 | [diff] [blame] | 2454 | if (output->config == OUTPUT_CONFIG_INVALID) |
| 2455 | weston_log("Invalid mode \"%s\" for output %s\n", |
| 2456 | output_mode, output_name); |
| 2457 | output_mode = NULL; |
Scott Moreau | 8ab5d45 | 2012-07-30 19:51:08 -0600 | [diff] [blame] | 2458 | } |
Scott Moreau | 1bad5db | 2012-08-18 01:04:05 -0600 | [diff] [blame] | 2459 | |
| 2460 | drm_output_set_transform(output); |
| 2461 | |
| 2462 | wl_list_insert(&configured_output_list, &output->link); |
| 2463 | |
| 2464 | if (output_transform) |
| 2465 | free(output_transform); |
| 2466 | output_transform = NULL; |
Scott Moreau | 8ab5d45 | 2012-07-30 19:51:08 -0600 | [diff] [blame] | 2467 | } |
| 2468 | |
Kristian Høgsberg | 8334bc1 | 2012-01-03 10:29:47 -0500 | [diff] [blame] | 2469 | WL_EXPORT struct weston_compositor * |
Kristian Høgsberg | 4172f66 | 2013-02-20 15:27:49 -0500 | [diff] [blame] | 2470 | backend_init(struct wl_display *display, int *argc, char *argv[], |
Daniel Stone | c1be8e5 | 2012-06-01 11:14:02 -0400 | [diff] [blame] | 2471 | const char *config_file) |
Kristian Høgsberg | 1c56218 | 2011-05-02 22:09:20 -0400 | [diff] [blame] | 2472 | { |
Ander Conselvan de Oliveira | 5fb4414 | 2013-01-25 15:13:05 +0200 | [diff] [blame] | 2473 | int connector = 0, tty = 0, use_pixman = 0; |
Kristian Høgsberg | bcacef1 | 2012-03-11 21:05:57 -0400 | [diff] [blame] | 2474 | const char *seat = default_seat; |
Kristian Høgsberg | 1c56218 | 2011-05-02 22:09:20 -0400 | [diff] [blame] | 2475 | |
Kristian Høgsberg | bcacef1 | 2012-03-11 21:05:57 -0400 | [diff] [blame] | 2476 | const struct weston_option drm_options[] = { |
| 2477 | { WESTON_OPTION_INTEGER, "connector", 0, &connector }, |
| 2478 | { WESTON_OPTION_STRING, "seat", 0, &seat }, |
| 2479 | { WESTON_OPTION_INTEGER, "tty", 0, &tty }, |
Kristian Høgsberg | 061c425 | 2012-06-28 11:28:15 -0400 | [diff] [blame] | 2480 | { WESTON_OPTION_BOOLEAN, "current-mode", 0, &option_current_mode }, |
Ander Conselvan de Oliveira | 5fb4414 | 2013-01-25 15:13:05 +0200 | [diff] [blame] | 2481 | { WESTON_OPTION_BOOLEAN, "use-pixman", 0, &use_pixman }, |
Kristian Høgsberg | bcacef1 | 2012-03-11 21:05:57 -0400 | [diff] [blame] | 2482 | }; |
Benjamin Franzke | 117483d | 2011-08-30 11:38:26 +0200 | [diff] [blame] | 2483 | |
Kristian Høgsberg | bcacef1 | 2012-03-11 21:05:57 -0400 | [diff] [blame] | 2484 | parse_options(drm_options, ARRAY_LENGTH(drm_options), argc, argv); |
Kristian Høgsberg | 1c56218 | 2011-05-02 22:09:20 -0400 | [diff] [blame] | 2485 | |
Scott Moreau | 8ab5d45 | 2012-07-30 19:51:08 -0600 | [diff] [blame] | 2486 | wl_list_init(&configured_output_list); |
| 2487 | |
| 2488 | const struct config_key drm_config_keys[] = { |
| 2489 | { "name", CONFIG_KEY_STRING, &output_name }, |
| 2490 | { "mode", CONFIG_KEY_STRING, &output_mode }, |
Scott Moreau | 1bad5db | 2012-08-18 01:04:05 -0600 | [diff] [blame] | 2491 | { "transform", CONFIG_KEY_STRING, &output_transform }, |
Scott Moreau | 8ab5d45 | 2012-07-30 19:51:08 -0600 | [diff] [blame] | 2492 | }; |
| 2493 | |
| 2494 | const struct config_section config_section[] = { |
| 2495 | { "output", drm_config_keys, |
| 2496 | ARRAY_LENGTH(drm_config_keys), output_section_done }, |
| 2497 | }; |
| 2498 | |
| 2499 | parse_config_file(config_file, config_section, |
| 2500 | ARRAY_LENGTH(config_section), NULL); |
| 2501 | |
Ander Conselvan de Oliveira | 5fb4414 | 2013-01-25 15:13:05 +0200 | [diff] [blame] | 2502 | return drm_compositor_create(display, connector, seat, tty, use_pixman, |
| 2503 | argc, argv, config_file); |
Kristian Høgsberg | 1c56218 | 2011-05-02 22:09:20 -0400 | [diff] [blame] | 2504 | } |