486fb71d9ca8aec948fad5d14c5abb40946be24f
[platform/upstream/weston.git] / libweston / compositor-drm.c
1 /*
2  * Copyright © 2008-2011 Kristian Høgsberg
3  * Copyright © 2011 Intel Corporation
4  * Copyright © 2017, 2018 Collabora, Ltd.
5  * Copyright © 2017, 2018 General Electric Company
6  *
7  * Permission is hereby granted, free of charge, to any person obtaining
8  * a copy of this software and associated documentation files (the
9  * "Software"), to deal in the Software without restriction, including
10  * without limitation the rights to use, copy, modify, merge, publish,
11  * distribute, sublicense, and/or sell copies of the Software, and to
12  * permit persons to whom the Software is furnished to do so, subject to
13  * the following conditions:
14  *
15  * The above copyright notice and this permission notice (including the
16  * next paragraph) shall be included in all copies or substantial
17  * portions of the Software.
18  *
19  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
20  * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
21  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
22  * NONINFRINGEMENT.  IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
23  * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
24  * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
25  * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
26  * SOFTWARE.
27  */
28
29 #include "config.h"
30
31 #include <errno.h>
32 #include <stdint.h>
33 #include <stdlib.h>
34 #include <ctype.h>
35 #include <string.h>
36 #include <fcntl.h>
37 #include <unistd.h>
38 #include <linux/input.h>
39 #include <linux/vt.h>
40 #include <assert.h>
41 #include <sys/mman.h>
42 #include <dlfcn.h>
43 #include <time.h>
44
45 #include <xf86drm.h>
46 #include <xf86drmMode.h>
47 #include <drm_fourcc.h>
48
49 #include <gbm.h>
50 #include <libudev.h>
51
52 #include "compositor.h"
53 #include "compositor-drm.h"
54 #include "shared/helpers.h"
55 #include "shared/timespec-util.h"
56 #include "gl-renderer.h"
57 #include "weston-egl-ext.h"
58 #include "pixman-renderer.h"
59 #include "pixel-formats.h"
60 #include "libbacklight.h"
61 #include "libinput-seat.h"
62 #include "launcher-util.h"
63 #include "vaapi-recorder.h"
64 #include "presentation-time-server-protocol.h"
65 #include "linux-dmabuf.h"
66 #include "linux-dmabuf-unstable-v1-server-protocol.h"
67
68 #ifndef DRM_CAP_TIMESTAMP_MONOTONIC
69 #define DRM_CAP_TIMESTAMP_MONOTONIC 0x6
70 #endif
71
72 #ifndef DRM_CLIENT_CAP_UNIVERSAL_PLANES
73 #define DRM_CLIENT_CAP_UNIVERSAL_PLANES 2
74 #endif
75
76 #ifndef DRM_CLIENT_CAP_ASPECT_RATIO
77 #define DRM_CLIENT_CAP_ASPECT_RATIO     4
78 #endif
79
80 #ifndef DRM_CAP_CURSOR_WIDTH
81 #define DRM_CAP_CURSOR_WIDTH 0x8
82 #endif
83
84 #ifndef DRM_CAP_CURSOR_HEIGHT
85 #define DRM_CAP_CURSOR_HEIGHT 0x9
86 #endif
87
88 #ifndef GBM_BO_USE_CURSOR
89 #define GBM_BO_USE_CURSOR GBM_BO_USE_CURSOR_64X64
90 #endif
91
92 #define MAX_CLONED_CONNECTORS 4
93
94 /**
95  * aspect ratio info taken from the drmModeModeInfo flag bits 19-22,
96  * which should be used to fill the aspect ratio field in weston_mode.
97  */
98 #define DRM_MODE_FLAG_PIC_AR_BITS_POS   19
99 #ifndef DRM_MODE_FLAG_PIC_AR_MASK
100 #define DRM_MODE_FLAG_PIC_AR_MASK (0xF << DRM_MODE_FLAG_PIC_AR_BITS_POS)
101 #endif
102
103 /**
104  * Represents the values of an enum-type KMS property
105  */
106 struct drm_property_enum_info {
107         const char *name; /**< name as string (static, not freed) */
108         bool valid; /**< true if value is supported; ignore if false */
109         uint64_t value; /**< raw value */
110 };
111
112 /**
113  * Holds information on a DRM property, including its ID and the enum
114  * values it holds.
115  *
116  * DRM properties are allocated dynamically, and maintained as DRM objects
117  * within the normal object ID space; they thus do not have a stable ID
118  * to refer to. This includes enum values, which must be referred to by
119  * integer values, but these are not stable.
120  *
121  * drm_property_info allows a cache to be maintained where Weston can use
122  * enum values internally to refer to properties, with the mapping to DRM
123  * ID values being maintained internally.
124  */
125 struct drm_property_info {
126         const char *name; /**< name as string (static, not freed) */
127         uint32_t prop_id; /**< KMS property object ID */
128         unsigned int num_enum_values; /**< number of enum values */
129         struct drm_property_enum_info *enum_values; /**< array of enum values */
130 };
131
132 /**
133  * List of properties attached to DRM planes
134  */
135 enum wdrm_plane_property {
136         WDRM_PLANE_TYPE = 0,
137         WDRM_PLANE_SRC_X,
138         WDRM_PLANE_SRC_Y,
139         WDRM_PLANE_SRC_W,
140         WDRM_PLANE_SRC_H,
141         WDRM_PLANE_CRTC_X,
142         WDRM_PLANE_CRTC_Y,
143         WDRM_PLANE_CRTC_W,
144         WDRM_PLANE_CRTC_H,
145         WDRM_PLANE_FB_ID,
146         WDRM_PLANE_CRTC_ID,
147         WDRM_PLANE_IN_FORMATS,
148         WDRM_PLANE__COUNT
149 };
150
151 /**
152  * Possible values for the WDRM_PLANE_TYPE property.
153  */
154 enum wdrm_plane_type {
155         WDRM_PLANE_TYPE_PRIMARY = 0,
156         WDRM_PLANE_TYPE_CURSOR,
157         WDRM_PLANE_TYPE_OVERLAY,
158         WDRM_PLANE_TYPE__COUNT
159 };
160
161 static struct drm_property_enum_info plane_type_enums[] = {
162         [WDRM_PLANE_TYPE_PRIMARY] = {
163                 .name = "Primary",
164         },
165         [WDRM_PLANE_TYPE_OVERLAY] = {
166                 .name = "Overlay",
167         },
168         [WDRM_PLANE_TYPE_CURSOR] = {
169                 .name = "Cursor",
170         },
171 };
172
173 static const struct drm_property_info plane_props[] = {
174         [WDRM_PLANE_TYPE] = {
175                 .name = "type",
176                 .enum_values = plane_type_enums,
177                 .num_enum_values = WDRM_PLANE_TYPE__COUNT,
178         },
179         [WDRM_PLANE_SRC_X] = { .name = "SRC_X", },
180         [WDRM_PLANE_SRC_Y] = { .name = "SRC_Y", },
181         [WDRM_PLANE_SRC_W] = { .name = "SRC_W", },
182         [WDRM_PLANE_SRC_H] = { .name = "SRC_H", },
183         [WDRM_PLANE_CRTC_X] = { .name = "CRTC_X", },
184         [WDRM_PLANE_CRTC_Y] = { .name = "CRTC_Y", },
185         [WDRM_PLANE_CRTC_W] = { .name = "CRTC_W", },
186         [WDRM_PLANE_CRTC_H] = { .name = "CRTC_H", },
187         [WDRM_PLANE_FB_ID] = { .name = "FB_ID", },
188         [WDRM_PLANE_CRTC_ID] = { .name = "CRTC_ID", },
189         [WDRM_PLANE_IN_FORMATS] = { .name = "IN_FORMATS" },
190 };
191
192 /**
193  * List of properties attached to a DRM connector
194  */
195 enum wdrm_connector_property {
196         WDRM_CONNECTOR_EDID = 0,
197         WDRM_CONNECTOR_DPMS,
198         WDRM_CONNECTOR_CRTC_ID,
199         WDRM_CONNECTOR__COUNT
200 };
201
202 enum wdrm_dpms_state {
203         WDRM_DPMS_STATE_OFF = 0,
204         WDRM_DPMS_STATE_ON,
205         WDRM_DPMS_STATE_STANDBY, /* unused */
206         WDRM_DPMS_STATE_SUSPEND, /* unused */
207         WDRM_DPMS_STATE__COUNT
208 };
209
210 static struct drm_property_enum_info dpms_state_enums[] = {
211         [WDRM_DPMS_STATE_OFF] = {
212                 .name = "Off",
213         },
214         [WDRM_DPMS_STATE_ON] = {
215                 .name = "On",
216         },
217         [WDRM_DPMS_STATE_STANDBY] = {
218                 .name = "Standby",
219         },
220         [WDRM_DPMS_STATE_SUSPEND] = {
221                 .name = "Suspend",
222         },
223 };
224
225 static const struct drm_property_info connector_props[] = {
226         [WDRM_CONNECTOR_EDID] = { .name = "EDID" },
227         [WDRM_CONNECTOR_DPMS] = {
228                 .name = "DPMS",
229                 .enum_values = dpms_state_enums,
230                 .num_enum_values = WDRM_DPMS_STATE__COUNT,
231         },
232         [WDRM_CONNECTOR_CRTC_ID] = { .name = "CRTC_ID", },
233 };
234
235 /**
236  * List of properties attached to DRM CRTCs
237  */
238 enum wdrm_crtc_property {
239         WDRM_CRTC_MODE_ID = 0,
240         WDRM_CRTC_ACTIVE,
241         WDRM_CRTC__COUNT
242 };
243
244 static const struct drm_property_info crtc_props[] = {
245         [WDRM_CRTC_MODE_ID] = { .name = "MODE_ID", },
246         [WDRM_CRTC_ACTIVE] = { .name = "ACTIVE", },
247 };
248
249 /**
250  * Mode for drm_output_state_duplicate.
251  */
252 enum drm_output_state_duplicate_mode {
253         DRM_OUTPUT_STATE_CLEAR_PLANES, /**< reset all planes to off */
254         DRM_OUTPUT_STATE_PRESERVE_PLANES, /**< preserve plane state */
255 };
256
257 /**
258  * Mode for drm_pending_state_apply and co.
259  */
260 enum drm_state_apply_mode {
261         DRM_STATE_APPLY_SYNC, /**< state fully processed */
262         DRM_STATE_APPLY_ASYNC, /**< state pending event delivery */
263         DRM_STATE_TEST_ONLY, /**< test if the state can be applied */
264 };
265
266 struct drm_backend {
267         struct weston_backend base;
268         struct weston_compositor *compositor;
269
270         struct udev *udev;
271         struct wl_event_source *drm_source;
272
273         struct udev_monitor *udev_monitor;
274         struct wl_event_source *udev_drm_source;
275
276         struct {
277                 int id;
278                 int fd;
279                 char *filename;
280         } drm;
281         struct gbm_device *gbm;
282         struct wl_listener session_listener;
283         uint32_t gbm_format;
284
285         /* we need these parameters in order to not fail drmModeAddFB2()
286          * due to out of bounds dimensions, and then mistakenly set
287          * sprites_are_broken:
288          */
289         int min_width, max_width;
290         int min_height, max_height;
291
292         struct wl_list plane_list;
293         int sprites_are_broken;
294         int sprites_hidden;
295
296         void *repaint_data;
297
298         bool state_invalid;
299
300         /* CRTC IDs not used by any enabled output. */
301         struct wl_array unused_crtcs;
302
303         int cursors_are_broken;
304
305         bool universal_planes;
306         bool atomic_modeset;
307
308         int use_pixman;
309         bool use_pixman_shadow;
310
311         struct udev_input input;
312
313         int32_t cursor_width;
314         int32_t cursor_height;
315
316         uint32_t pageflip_timeout;
317
318         bool shutting_down;
319
320         bool aspect_ratio_supported;
321 };
322
323 struct drm_mode {
324         struct weston_mode base;
325         drmModeModeInfo mode_info;
326         uint32_t blob_id;
327 };
328
329 enum drm_fb_type {
330         BUFFER_INVALID = 0, /**< never used */
331         BUFFER_CLIENT, /**< directly sourced from client */
332         BUFFER_DMABUF, /**< imported from linux_dmabuf client */
333         BUFFER_PIXMAN_DUMB, /**< internal Pixman rendering */
334         BUFFER_GBM_SURFACE, /**< internal EGL rendering */
335         BUFFER_CURSOR, /**< internal cursor buffer */
336 };
337
338 struct drm_fb {
339         enum drm_fb_type type;
340
341         int refcnt;
342
343         uint32_t fb_id, size;
344         uint32_t handles[4];
345         uint32_t strides[4];
346         uint32_t offsets[4];
347         const struct pixel_format_info *format;
348         uint64_t modifier;
349         int width, height;
350         int fd;
351         struct weston_buffer_reference buffer_ref;
352
353         /* Used by gbm fbs */
354         struct gbm_bo *bo;
355         struct gbm_surface *gbm_surface;
356
357         /* Used by dumb fbs */
358         void *map;
359 };
360
361 struct drm_edid {
362         char eisa_id[13];
363         char monitor_name[13];
364         char pnp_id[5];
365         char serial_number[13];
366 };
367
368 /**
369  * Pending state holds one or more drm_output_state structures, collected from
370  * performing repaint. This pending state is transient, and only lives between
371  * beginning a repaint group and flushing the results: after flush, each
372  * output state will complete and be retired separately.
373  */
374 struct drm_pending_state {
375         struct drm_backend *backend;
376         struct wl_list output_list;
377 };
378
379 /*
380  * Output state holds the dynamic state for one Weston output, i.e. a KMS CRTC,
381  * plus >= 1 each of encoder/connector/plane. Since everything but the planes
382  * is currently statically assigned per-output, we mainly use this to track
383  * plane state.
384  *
385  * pending_state is set when the output state is owned by a pending_state,
386  * i.e. when it is being constructed and has not yet been applied. When the
387  * output state has been applied, the owning pending_state is freed.
388  */
389 struct drm_output_state {
390         struct drm_pending_state *pending_state;
391         struct drm_output *output;
392         struct wl_list link;
393         enum dpms_enum dpms;
394         struct wl_list plane_list;
395 };
396
397 /**
398  * Plane state holds the dynamic state for a plane: where it is positioned,
399  * and which buffer it is currently displaying.
400  *
401  * The plane state is owned by an output state, except when setting an initial
402  * state. See drm_output_state for notes on state object lifetime.
403  */
404 struct drm_plane_state {
405         struct drm_plane *plane;
406         struct drm_output *output;
407         struct drm_output_state *output_state;
408
409         struct drm_fb *fb;
410
411         struct weston_view *ev; /**< maintained for drm_assign_planes only */
412
413         int32_t src_x, src_y;
414         uint32_t src_w, src_h;
415         int32_t dest_x, dest_y;
416         uint32_t dest_w, dest_h;
417
418         bool complete;
419
420         struct wl_list link; /* drm_output_state::plane_list */
421 };
422
423 /**
424  * A plane represents one buffer, positioned within a CRTC, and stacked
425  * relative to other planes on the same CRTC.
426  *
427  * Each CRTC has a 'primary plane', which use used to display the classic
428  * framebuffer contents, as accessed through the legacy drmModeSetCrtc
429  * call (which combines setting the CRTC's actual physical mode, and the
430  * properties of the primary plane).
431  *
432  * The cursor plane also has its own alternate legacy API.
433  *
434  * Other planes are used opportunistically to display content we do not
435  * wish to blit into the primary plane. These non-primary/cursor planes
436  * are referred to as 'sprites'.
437  */
438 struct drm_plane {
439         struct weston_plane base;
440
441         struct drm_backend *backend;
442
443         enum wdrm_plane_type type;
444
445         uint32_t possible_crtcs;
446         uint32_t plane_id;
447         uint32_t count_formats;
448
449         struct drm_property_info props[WDRM_PLANE__COUNT];
450
451         /* The last state submitted to the kernel for this plane. */
452         struct drm_plane_state *state_cur;
453
454         struct wl_list link;
455
456         struct {
457                 uint32_t format;
458                 uint32_t count_modifiers;
459                 uint64_t *modifiers;
460         } formats[];
461 };
462
463 struct drm_head {
464         struct weston_head base;
465         struct drm_backend *backend;
466
467         drmModeConnector *connector;
468         uint32_t connector_id;
469         struct drm_edid edid;
470
471         /* Holds the properties for the connector */
472         struct drm_property_info props_conn[WDRM_CONNECTOR__COUNT];
473
474         struct backlight *backlight;
475
476         drmModeModeInfo inherited_mode; /**< Original mode on the connector */
477         uint32_t inherited_crtc_id;     /**< Original CRTC assignment */
478 };
479
480 struct drm_output {
481         struct weston_output base;
482
483         uint32_t crtc_id; /* object ID to pass to DRM functions */
484         int pipe; /* index of CRTC in resource array / bitmasks */
485
486         /* Holds the properties for the CRTC */
487         struct drm_property_info props_crtc[WDRM_CRTC__COUNT];
488
489         int vblank_pending;
490         int page_flip_pending;
491         int atomic_complete_pending;
492         int destroy_pending;
493         int disable_pending;
494         int dpms_off_pending;
495
496         struct drm_fb *gbm_cursor_fb[2];
497         struct drm_plane *cursor_plane;
498         struct weston_view *cursor_view;
499         int current_cursor;
500
501         struct gbm_surface *gbm_surface;
502         uint32_t gbm_format;
503
504         /* Plane being displayed directly on the CRTC */
505         struct drm_plane *scanout_plane;
506
507         /* The last state submitted to the kernel for this CRTC. */
508         struct drm_output_state *state_cur;
509         /* The previously-submitted state, where the hardware has not
510          * yet acknowledged completion of state_cur. */
511         struct drm_output_state *state_last;
512
513         struct drm_fb *dumb[2];
514         pixman_image_t *image[2];
515         int current_image;
516         pixman_region32_t previous_damage;
517
518         struct vaapi_recorder *recorder;
519         struct wl_listener recorder_frame_listener;
520
521         struct wl_event_source *pageflip_timer;
522 };
523
524 static const char *const aspect_ratio_as_string[] = {
525         [WESTON_MODE_PIC_AR_NONE] = "",
526         [WESTON_MODE_PIC_AR_4_3] = " 4:3",
527         [WESTON_MODE_PIC_AR_16_9] = " 16:9",
528         [WESTON_MODE_PIC_AR_64_27] = " 64:27",
529         [WESTON_MODE_PIC_AR_256_135] = " 256:135",
530 };
531
532 static struct gl_renderer_interface *gl_renderer;
533
534 static const char default_seat[] = "seat0";
535
536 static void
537 wl_array_remove_uint32(struct wl_array *array, uint32_t elm)
538 {
539         uint32_t *pos, *end;
540
541         end = (uint32_t *) ((char *) array->data + array->size);
542
543         wl_array_for_each(pos, array) {
544                 if (*pos != elm)
545                         continue;
546
547                 array->size -= sizeof(*pos);
548                 if (pos + 1 == end)
549                         break;
550
551                 memmove(pos, pos + 1, (char *) end -  (char *) (pos + 1));
552                 break;
553         }
554 }
555
556 static inline struct drm_head *
557 to_drm_head(struct weston_head *base)
558 {
559         return container_of(base, struct drm_head, base);
560 }
561
562 static inline struct drm_output *
563 to_drm_output(struct weston_output *base)
564 {
565         return container_of(base, struct drm_output, base);
566 }
567
568 static inline struct drm_backend *
569 to_drm_backend(struct weston_compositor *base)
570 {
571         return container_of(base->backend, struct drm_backend, base);
572 }
573
574 static int
575 pageflip_timeout(void *data) {
576         /*
577          * Our timer just went off, that means we're not receiving drm
578          * page flip events anymore for that output. Let's gracefully exit
579          * weston with a return value so devs can debug what's going on.
580          */
581         struct drm_output *output = data;
582         struct weston_compositor *compositor = output->base.compositor;
583
584         weston_log("Pageflip timeout reached on output %s, your "
585                    "driver is probably buggy!  Exiting.\n",
586                    output->base.name);
587         weston_compositor_exit_with_code(compositor, EXIT_FAILURE);
588
589         return 0;
590 }
591
592 /* Creates the pageflip timer. Note that it isn't armed by default */
593 static int
594 drm_output_pageflip_timer_create(struct drm_output *output)
595 {
596         struct wl_event_loop *loop = NULL;
597         struct weston_compositor *ec = output->base.compositor;
598
599         loop = wl_display_get_event_loop(ec->wl_display);
600         assert(loop);
601         output->pageflip_timer = wl_event_loop_add_timer(loop,
602                                                          pageflip_timeout,
603                                                          output);
604
605         if (output->pageflip_timer == NULL) {
606                 weston_log("creating drm pageflip timer failed: %m\n");
607                 return -1;
608         }
609
610         return 0;
611 }
612
613 static inline struct drm_mode *
614 to_drm_mode(struct weston_mode *base)
615 {
616         return container_of(base, struct drm_mode, base);
617 }
618
619 /**
620  * Get the current value of a KMS property
621  *
622  * Given a drmModeObjectGetProperties return, as well as the drm_property_info
623  * for the target property, return the current value of that property,
624  * with an optional default. If the property is a KMS enum type, the return
625  * value will be translated into the appropriate internal enum.
626  *
627  * If the property is not present, the default value will be returned.
628  *
629  * @param info Internal structure for property to look up
630  * @param props Raw KMS properties for the target object
631  * @param def Value to return if property is not found
632  */
633 static uint64_t
634 drm_property_get_value(struct drm_property_info *info,
635                        const drmModeObjectProperties *props,
636                        uint64_t def)
637 {
638         unsigned int i;
639
640         if (info->prop_id == 0)
641                 return def;
642
643         for (i = 0; i < props->count_props; i++) {
644                 unsigned int j;
645
646                 if (props->props[i] != info->prop_id)
647                         continue;
648
649                 /* Simple (non-enum) types can return the value directly */
650                 if (info->num_enum_values == 0)
651                         return props->prop_values[i];
652
653                 /* Map from raw value to enum value */
654                 for (j = 0; j < info->num_enum_values; j++) {
655                         if (!info->enum_values[j].valid)
656                                 continue;
657                         if (info->enum_values[j].value != props->prop_values[i])
658                                 continue;
659
660                         return j;
661                 }
662
663                 /* We don't have a mapping for this enum; return default. */
664                 break;
665         }
666
667         return def;
668 }
669
670 /**
671  * Cache DRM property values
672  *
673  * Update a per-object array of drm_property_info structures, given the
674  * DRM properties of the object.
675  *
676  * Call this every time an object newly appears (note that only connectors
677  * can be hotplugged), the first time it is seen, or when its status changes
678  * in a way which invalidates the potential property values (currently, the
679  * only case for this is connector hotplug).
680  *
681  * This updates the property IDs and enum values within the drm_property_info
682  * array.
683  *
684  * DRM property enum values are dynamic at runtime; the user must query the
685  * property to find out the desired runtime value for a requested string
686  * name. Using the 'type' field on planes as an example, there is no single
687  * hardcoded constant for primary plane types; instead, the property must be
688  * queried at runtime to find the value associated with the string "Primary".
689  *
690  * This helper queries and caches the enum values, to allow us to use a set
691  * of compile-time-constant enums portably across various implementations.
692  * The values given in enum_names are searched for, and stored in the
693  * same-indexed field of the map array.
694  *
695  * @param b DRM backend object
696  * @param src DRM property info array to source from
697  * @param info DRM property info array to copy into
698  * @param num_infos Number of entries in the source array
699  * @param props DRM object properties for the object
700  */
701 static void
702 drm_property_info_populate(struct drm_backend *b,
703                            const struct drm_property_info *src,
704                            struct drm_property_info *info,
705                            unsigned int num_infos,
706                            drmModeObjectProperties *props)
707 {
708         drmModePropertyRes *prop;
709         unsigned i, j;
710
711         for (i = 0; i < num_infos; i++) {
712                 unsigned int j;
713
714                 info[i].name = src[i].name;
715                 info[i].prop_id = 0;
716                 info[i].num_enum_values = src[i].num_enum_values;
717
718                 if (src[i].num_enum_values == 0)
719                         continue;
720
721                 info[i].enum_values =
722                         malloc(src[i].num_enum_values *
723                                sizeof(*info[i].enum_values));
724                 assert(info[i].enum_values);
725                 for (j = 0; j < info[i].num_enum_values; j++) {
726                         info[i].enum_values[j].name = src[i].enum_values[j].name;
727                         info[i].enum_values[j].valid = false;
728                 }
729         }
730
731         for (i = 0; i < props->count_props; i++) {
732                 unsigned int k;
733
734                 prop = drmModeGetProperty(b->drm.fd, props->props[i]);
735                 if (!prop)
736                         continue;
737
738                 for (j = 0; j < num_infos; j++) {
739                         if (!strcmp(prop->name, info[j].name))
740                                 break;
741                 }
742
743                 /* We don't know/care about this property. */
744                 if (j == num_infos) {
745 #ifdef DEBUG
746                         weston_log("DRM debug: unrecognized property %u '%s'\n",
747                                    prop->prop_id, prop->name);
748 #endif
749                         drmModeFreeProperty(prop);
750                         continue;
751                 }
752
753                 if (info[j].num_enum_values == 0 &&
754                     (prop->flags & DRM_MODE_PROP_ENUM)) {
755                         weston_log("DRM: expected property %s to not be an"
756                                    " enum, but it is; ignoring\n", prop->name);
757                         drmModeFreeProperty(prop);
758                         continue;
759                 }
760
761                 info[j].prop_id = props->props[i];
762
763                 if (info[j].num_enum_values == 0) {
764                         drmModeFreeProperty(prop);
765                         continue;
766                 }
767
768                 if (!(prop->flags & DRM_MODE_PROP_ENUM)) {
769                         weston_log("DRM: expected property %s to be an enum,"
770                                    " but it is not; ignoring\n", prop->name);
771                         drmModeFreeProperty(prop);
772                         info[j].prop_id = 0;
773                         continue;
774                 }
775
776                 for (k = 0; k < info[j].num_enum_values; k++) {
777                         int l;
778
779                         for (l = 0; l < prop->count_enums; l++) {
780                                 if (!strcmp(prop->enums[l].name,
781                                             info[j].enum_values[k].name))
782                                         break;
783                         }
784
785                         if (l == prop->count_enums)
786                                 continue;
787
788                         info[j].enum_values[k].valid = true;
789                         info[j].enum_values[k].value = prop->enums[l].value;
790                 }
791
792                 drmModeFreeProperty(prop);
793         }
794
795 #ifdef DEBUG
796         for (i = 0; i < num_infos; i++) {
797                 if (info[i].prop_id == 0)
798                         weston_log("DRM warning: property '%s' missing\n",
799                                    info[i].name);
800         }
801 #endif
802 }
803
804 /**
805  * Free DRM property information
806  *
807  * Frees all memory associated with a DRM property info array and zeroes
808  * it out, leaving it usable for a further drm_property_info_update() or
809  * drm_property_info_free().
810  *
811  * @param info DRM property info array
812  * @param num_props Number of entries in array to free
813  */
814 static void
815 drm_property_info_free(struct drm_property_info *info, int num_props)
816 {
817         int i;
818
819         for (i = 0; i < num_props; i++)
820                 free(info[i].enum_values);
821
822         memset(info, 0, sizeof(*info) * num_props);
823 }
824
825 static void
826 drm_output_set_cursor(struct drm_output_state *output_state);
827
828 static void
829 drm_output_update_msc(struct drm_output *output, unsigned int seq);
830
831 static void
832 drm_output_destroy(struct weston_output *output_base);
833
834 /**
835  * Returns true if the plane can be used on the given output for its current
836  * repaint cycle.
837  */
838 static bool
839 drm_plane_is_available(struct drm_plane *plane, struct drm_output *output)
840 {
841         assert(plane->state_cur);
842
843         /* The plane still has a request not yet completed by the kernel. */
844         if (!plane->state_cur->complete)
845                 return false;
846
847         /* The plane is still active on another output. */
848         if (plane->state_cur->output && plane->state_cur->output != output)
849                 return false;
850
851         /* Check whether the plane can be used with this CRTC; possible_crtcs
852          * is a bitmask of CRTC indices (pipe), rather than CRTC object ID. */
853         return !!(plane->possible_crtcs & (1 << output->pipe));
854 }
855
856 static struct drm_output *
857 drm_output_find_by_crtc(struct drm_backend *b, uint32_t crtc_id)
858 {
859         struct drm_output *output;
860
861         wl_list_for_each(output, &b->compositor->output_list, base.link) {
862                 if (output->crtc_id == crtc_id)
863                         return output;
864         }
865
866         return NULL;
867 }
868
869 static struct drm_head *
870 drm_head_find_by_connector(struct drm_backend *backend, uint32_t connector_id)
871 {
872         struct weston_head *base;
873         struct drm_head *head;
874
875         wl_list_for_each(base,
876                          &backend->compositor->head_list, compositor_link) {
877                 head = to_drm_head(base);
878                 if (head->connector_id == connector_id)
879                         return head;
880         }
881
882         return NULL;
883 }
884
885 static void
886 drm_fb_destroy(struct drm_fb *fb)
887 {
888         if (fb->fb_id != 0)
889                 drmModeRmFB(fb->fd, fb->fb_id);
890         weston_buffer_reference(&fb->buffer_ref, NULL);
891         free(fb);
892 }
893
894 static void
895 drm_fb_destroy_dumb(struct drm_fb *fb)
896 {
897         struct drm_mode_destroy_dumb destroy_arg;
898
899         assert(fb->type == BUFFER_PIXMAN_DUMB);
900
901         if (fb->map && fb->size > 0)
902                 munmap(fb->map, fb->size);
903
904         memset(&destroy_arg, 0, sizeof(destroy_arg));
905         destroy_arg.handle = fb->handles[0];
906         drmIoctl(fb->fd, DRM_IOCTL_MODE_DESTROY_DUMB, &destroy_arg);
907
908         drm_fb_destroy(fb);
909 }
910
911 static void
912 drm_fb_destroy_gbm(struct gbm_bo *bo, void *data)
913 {
914         struct drm_fb *fb = data;
915
916         assert(fb->type == BUFFER_GBM_SURFACE || fb->type == BUFFER_CLIENT ||
917                fb->type == BUFFER_CURSOR);
918         drm_fb_destroy(fb);
919 }
920
921 static int
922 drm_fb_addfb(struct drm_fb *fb)
923 {
924         int ret = -EINVAL;
925 #ifdef HAVE_DRM_ADDFB2_MODIFIERS
926         uint64_t mods[4] = { };
927         size_t i;
928 #endif
929
930         /* If we have a modifier set, we must only use the WithModifiers
931          * entrypoint; we cannot import it through legacy ioctls. */
932         if (fb->modifier != DRM_FORMAT_MOD_INVALID) {
933                 /* KMS demands that if a modifier is set, it must be the same
934                  * for all planes. */
935 #ifdef HAVE_DRM_ADDFB2_MODIFIERS
936                 for (i = 0; i < ARRAY_LENGTH(mods) && fb->handles[i]; i++)
937                         mods[i] = fb->modifier;
938                 ret = drmModeAddFB2WithModifiers(fb->fd, fb->width, fb->height,
939                                                  fb->format->format,
940                                                  fb->handles, fb->strides,
941                                                  fb->offsets, mods, &fb->fb_id,
942                                                  DRM_MODE_FB_MODIFIERS);
943 #endif
944                 return ret;
945         }
946
947         ret = drmModeAddFB2(fb->fd, fb->width, fb->height, fb->format->format,
948                             fb->handles, fb->strides, fb->offsets, &fb->fb_id,
949                             0);
950         if (ret == 0)
951                 return 0;
952
953         /* Legacy AddFB can't always infer the format from depth/bpp alone, so
954          * check if our format is one of the lucky ones. */
955         if (!fb->format->depth || !fb->format->bpp)
956                 return ret;
957
958         /* Cannot fall back to AddFB for multi-planar formats either. */
959         if (fb->handles[1] || fb->handles[2] || fb->handles[3])
960                 return ret;
961
962         ret = drmModeAddFB(fb->fd, fb->width, fb->height,
963                            fb->format->depth, fb->format->bpp,
964                            fb->strides[0], fb->handles[0], &fb->fb_id);
965         return ret;
966 }
967
968 static struct drm_fb *
969 drm_fb_create_dumb(struct drm_backend *b, int width, int height,
970                    uint32_t format)
971 {
972         struct drm_fb *fb;
973         int ret;
974
975         struct drm_mode_create_dumb create_arg;
976         struct drm_mode_destroy_dumb destroy_arg;
977         struct drm_mode_map_dumb map_arg;
978
979         fb = zalloc(sizeof *fb);
980         if (!fb)
981                 return NULL;
982         fb->refcnt = 1;
983
984         fb->format = pixel_format_get_info(format);
985         if (!fb->format) {
986                 weston_log("failed to look up format 0x%lx\n",
987                            (unsigned long) format);
988                 goto err_fb;
989         }
990
991         if (!fb->format->depth || !fb->format->bpp) {
992                 weston_log("format 0x%lx is not compatible with dumb buffers\n",
993                            (unsigned long) format);
994                 goto err_fb;
995         }
996
997         memset(&create_arg, 0, sizeof create_arg);
998         create_arg.bpp = fb->format->bpp;
999         create_arg.width = width;
1000         create_arg.height = height;
1001
1002         ret = drmIoctl(b->drm.fd, DRM_IOCTL_MODE_CREATE_DUMB, &create_arg);
1003         if (ret)
1004                 goto err_fb;
1005
1006         fb->type = BUFFER_PIXMAN_DUMB;
1007         fb->modifier = DRM_FORMAT_MOD_INVALID;
1008         fb->handles[0] = create_arg.handle;
1009         fb->strides[0] = create_arg.pitch;
1010         fb->size = create_arg.size;
1011         fb->width = width;
1012         fb->height = height;
1013         fb->fd = b->drm.fd;
1014
1015         if (drm_fb_addfb(fb) != 0) {
1016                 weston_log("failed to create kms fb: %m\n");
1017                 goto err_bo;
1018         }
1019
1020         memset(&map_arg, 0, sizeof map_arg);
1021         map_arg.handle = fb->handles[0];
1022         ret = drmIoctl(fb->fd, DRM_IOCTL_MODE_MAP_DUMB, &map_arg);
1023         if (ret)
1024                 goto err_add_fb;
1025
1026         fb->map = mmap(NULL, fb->size, PROT_WRITE,
1027                        MAP_SHARED, b->drm.fd, map_arg.offset);
1028         if (fb->map == MAP_FAILED)
1029                 goto err_add_fb;
1030
1031         return fb;
1032
1033 err_add_fb:
1034         drmModeRmFB(b->drm.fd, fb->fb_id);
1035 err_bo:
1036         memset(&destroy_arg, 0, sizeof(destroy_arg));
1037         destroy_arg.handle = create_arg.handle;
1038         drmIoctl(b->drm.fd, DRM_IOCTL_MODE_DESTROY_DUMB, &destroy_arg);
1039 err_fb:
1040         free(fb);
1041         return NULL;
1042 }
1043
1044 static struct drm_fb *
1045 drm_fb_ref(struct drm_fb *fb)
1046 {
1047         fb->refcnt++;
1048         return fb;
1049 }
1050
1051 static void
1052 drm_fb_destroy_dmabuf(struct drm_fb *fb)
1053 {
1054         /* We deliberately do not close the GEM handles here; GBM manages
1055          * their lifetime through the BO. */
1056         if (fb->bo)
1057                 gbm_bo_destroy(fb->bo);
1058         drm_fb_destroy(fb);
1059 }
1060
1061 static struct drm_fb *
1062 drm_fb_get_from_dmabuf(struct linux_dmabuf_buffer *dmabuf,
1063                        struct drm_backend *backend, bool is_opaque)
1064 {
1065 #ifdef HAVE_GBM_FD_IMPORT
1066         struct drm_fb *fb;
1067         struct gbm_import_fd_data import_legacy = {
1068                 .width = dmabuf->attributes.width,
1069                 .height = dmabuf->attributes.height,
1070                 .format = dmabuf->attributes.format,
1071                 .stride = dmabuf->attributes.stride[0],
1072                 .fd = dmabuf->attributes.fd[0],
1073         };
1074         struct gbm_import_fd_modifier_data import_mod = {
1075                 .width = dmabuf->attributes.width,
1076                 .height = dmabuf->attributes.height,
1077                 .format = dmabuf->attributes.format,
1078                 .num_fds = dmabuf->attributes.n_planes,
1079                 .modifier = dmabuf->attributes.modifier[0],
1080         };
1081         int i;
1082
1083         /* XXX: TODO:
1084          *
1085          * Currently the buffer is rejected if any dmabuf attribute
1086          * flag is set.  This keeps us from passing an inverted /
1087          * interlaced / bottom-first buffer (or any other type that may
1088          * be added in the future) through to an overlay.  Ultimately,
1089          * these types of buffers should be handled through buffer
1090          * transforms and not as spot-checks requiring specific
1091          * knowledge. */
1092         if (dmabuf->attributes.flags)
1093                 return NULL;
1094
1095         fb = zalloc(sizeof *fb);
1096         if (fb == NULL)
1097                 return NULL;
1098
1099         fb->refcnt = 1;
1100         fb->type = BUFFER_DMABUF;
1101
1102         static_assert(ARRAY_LENGTH(import_mod.fds) ==
1103                       ARRAY_LENGTH(dmabuf->attributes.fd),
1104                       "GBM and linux_dmabuf FD size must match");
1105         static_assert(sizeof(import_mod.fds) == sizeof(dmabuf->attributes.fd),
1106                       "GBM and linux_dmabuf FD size must match");
1107         memcpy(import_mod.fds, dmabuf->attributes.fd, sizeof(import_mod.fds));
1108
1109         static_assert(ARRAY_LENGTH(import_mod.strides) ==
1110                       ARRAY_LENGTH(dmabuf->attributes.stride),
1111                       "GBM and linux_dmabuf stride size must match");
1112         static_assert(sizeof(import_mod.strides) ==
1113                       sizeof(dmabuf->attributes.stride),
1114                       "GBM and linux_dmabuf stride size must match");
1115         memcpy(import_mod.strides, dmabuf->attributes.stride,
1116                sizeof(import_mod.strides));
1117
1118         static_assert(ARRAY_LENGTH(import_mod.offsets) ==
1119                       ARRAY_LENGTH(dmabuf->attributes.offset),
1120                       "GBM and linux_dmabuf offset size must match");
1121         static_assert(sizeof(import_mod.offsets) ==
1122                       sizeof(dmabuf->attributes.offset),
1123                       "GBM and linux_dmabuf offset size must match");
1124         memcpy(import_mod.offsets, dmabuf->attributes.offset,
1125                sizeof(import_mod.offsets));
1126
1127         /* The legacy FD-import path does not allow us to supply modifiers,
1128          * multiple planes, or buffer offsets. */
1129         if (dmabuf->attributes.modifier[0] != DRM_FORMAT_MOD_INVALID ||
1130             import_mod.num_fds > 1 ||
1131             import_mod.offsets[0] > 0) {
1132                 fb->bo = gbm_bo_import(backend->gbm, GBM_BO_IMPORT_FD_MODIFIER,
1133                                        &import_mod,
1134                                        GBM_BO_USE_SCANOUT);
1135         } else {
1136                 fb->bo = gbm_bo_import(backend->gbm, GBM_BO_IMPORT_FD,
1137                                        &import_legacy,
1138                                        GBM_BO_USE_SCANOUT);
1139         }
1140
1141         if (!fb->bo)
1142                 goto err_free;
1143
1144         fb->width = dmabuf->attributes.width;
1145         fb->height = dmabuf->attributes.height;
1146         fb->modifier = dmabuf->attributes.modifier[0];
1147         fb->size = 0;
1148         fb->fd = backend->drm.fd;
1149
1150         static_assert(ARRAY_LENGTH(fb->strides) ==
1151                       ARRAY_LENGTH(dmabuf->attributes.stride),
1152                       "drm_fb and dmabuf stride size must match");
1153         static_assert(sizeof(fb->strides) == sizeof(dmabuf->attributes.stride),
1154                       "drm_fb and dmabuf stride size must match");
1155         memcpy(fb->strides, dmabuf->attributes.stride, sizeof(fb->strides));
1156         static_assert(ARRAY_LENGTH(fb->offsets) ==
1157                       ARRAY_LENGTH(dmabuf->attributes.offset),
1158                       "drm_fb and dmabuf offset size must match");
1159         static_assert(sizeof(fb->offsets) == sizeof(dmabuf->attributes.offset),
1160                       "drm_fb and dmabuf offset size must match");
1161         memcpy(fb->offsets, dmabuf->attributes.offset, sizeof(fb->offsets));
1162
1163         fb->format = pixel_format_get_info(dmabuf->attributes.format);
1164         if (!fb->format) {
1165                 weston_log("couldn't look up format info for 0x%lx\n",
1166                            (unsigned long) dmabuf->attributes.format);
1167                 goto err_free;
1168         }
1169
1170         if (is_opaque)
1171                 fb->format = pixel_format_get_opaque_substitute(fb->format);
1172
1173         if (backend->min_width > fb->width ||
1174             fb->width > backend->max_width ||
1175             backend->min_height > fb->height ||
1176             fb->height > backend->max_height) {
1177                 weston_log("bo geometry out of bounds\n");
1178                 goto err_free;
1179         }
1180
1181         for (i = 0; i < dmabuf->attributes.n_planes; i++) {
1182                 fb->handles[i] = gbm_bo_get_handle_for_plane(fb->bo, i).u32;
1183                 if (!fb->handles[i])
1184                         goto err_free;
1185         }
1186
1187         if (drm_fb_addfb(fb) != 0) {
1188                 weston_log("failed to create kms fb: %m\n");
1189                 goto err_free;
1190         }
1191
1192         return fb;
1193
1194 err_free:
1195         drm_fb_destroy_dmabuf(fb);
1196 #endif
1197         return NULL;
1198 }
1199
1200 static struct drm_fb *
1201 drm_fb_get_from_bo(struct gbm_bo *bo, struct drm_backend *backend,
1202                    bool is_opaque, enum drm_fb_type type)
1203 {
1204         struct drm_fb *fb = gbm_bo_get_user_data(bo);
1205 #ifdef HAVE_GBM_MODIFIERS
1206         int i;
1207 #endif
1208
1209         if (fb) {
1210                 assert(fb->type == type);
1211                 return drm_fb_ref(fb);
1212         }
1213
1214         fb = zalloc(sizeof *fb);
1215         if (fb == NULL)
1216                 return NULL;
1217
1218         fb->type = type;
1219         fb->refcnt = 1;
1220         fb->bo = bo;
1221         fb->fd = backend->drm.fd;
1222
1223         fb->width = gbm_bo_get_width(bo);
1224         fb->height = gbm_bo_get_height(bo);
1225         fb->format = pixel_format_get_info(gbm_bo_get_format(bo));
1226         fb->size = 0;
1227
1228 #ifdef HAVE_GBM_MODIFIERS
1229         fb->modifier = gbm_bo_get_modifier(bo);
1230         for (i = 0; i < gbm_bo_get_plane_count(bo); i++) {
1231                 fb->strides[i] = gbm_bo_get_stride_for_plane(bo, i);
1232                 fb->handles[i] = gbm_bo_get_handle_for_plane(bo, i).u32;
1233                 fb->offsets[i] = gbm_bo_get_offset(bo, i);
1234         }
1235 #else
1236         fb->strides[0] = gbm_bo_get_stride(bo);
1237         fb->handles[0] = gbm_bo_get_handle(bo).u32;
1238         fb->modifier = DRM_FORMAT_MOD_INVALID;
1239 #endif
1240
1241         if (!fb->format) {
1242                 weston_log("couldn't look up format 0x%lx\n",
1243                            (unsigned long) gbm_bo_get_format(bo));
1244                 goto err_free;
1245         }
1246
1247         /* We can scanout an ARGB buffer if the surface's opaque region covers
1248          * the whole output, but we have to use XRGB as the KMS format code. */
1249         if (is_opaque)
1250                 fb->format = pixel_format_get_opaque_substitute(fb->format);
1251
1252         if (backend->min_width > fb->width ||
1253             fb->width > backend->max_width ||
1254             backend->min_height > fb->height ||
1255             fb->height > backend->max_height) {
1256                 weston_log("bo geometry out of bounds\n");
1257                 goto err_free;
1258         }
1259
1260         if (drm_fb_addfb(fb) != 0) {
1261                 weston_log("failed to create kms fb: %m\n");
1262                 goto err_free;
1263         }
1264
1265         gbm_bo_set_user_data(bo, fb, drm_fb_destroy_gbm);
1266
1267         return fb;
1268
1269 err_free:
1270         free(fb);
1271         return NULL;
1272 }
1273
1274 static void
1275 drm_fb_set_buffer(struct drm_fb *fb, struct weston_buffer *buffer)
1276 {
1277         assert(fb->buffer_ref.buffer == NULL);
1278         assert(fb->type == BUFFER_CLIENT || fb->type == BUFFER_DMABUF);
1279         weston_buffer_reference(&fb->buffer_ref, buffer);
1280 }
1281
1282 static void
1283 drm_fb_unref(struct drm_fb *fb)
1284 {
1285         if (!fb)
1286                 return;
1287
1288         assert(fb->refcnt > 0);
1289         if (--fb->refcnt > 0)
1290                 return;
1291
1292         switch (fb->type) {
1293         case BUFFER_PIXMAN_DUMB:
1294                 drm_fb_destroy_dumb(fb);
1295                 break;
1296         case BUFFER_CURSOR:
1297         case BUFFER_CLIENT:
1298                 gbm_bo_destroy(fb->bo);
1299                 break;
1300         case BUFFER_GBM_SURFACE:
1301                 gbm_surface_release_buffer(fb->gbm_surface, fb->bo);
1302                 break;
1303         case BUFFER_DMABUF:
1304                 drm_fb_destroy_dmabuf(fb);
1305                 break;
1306         default:
1307                 assert(NULL);
1308                 break;
1309         }
1310 }
1311
1312 /**
1313  * Allocate a new, empty, plane state.
1314  */
1315 static struct drm_plane_state *
1316 drm_plane_state_alloc(struct drm_output_state *state_output,
1317                       struct drm_plane *plane)
1318 {
1319         struct drm_plane_state *state = zalloc(sizeof(*state));
1320
1321         assert(state);
1322         state->output_state = state_output;
1323         state->plane = plane;
1324
1325         /* Here we only add the plane state to the desired link, and not
1326          * set the member. Having an output pointer set means that the
1327          * plane will be displayed on the output; this won't be the case
1328          * when we go to disable a plane. In this case, it must be part of
1329          * the commit (and thus the output state), but the member must be
1330          * NULL, as it will not be on any output when the state takes
1331          * effect.
1332          */
1333         if (state_output)
1334                 wl_list_insert(&state_output->plane_list, &state->link);
1335         else
1336                 wl_list_init(&state->link);
1337
1338         return state;
1339 }
1340
1341 /**
1342  * Free an existing plane state. As a special case, the state will not
1343  * normally be freed if it is the current state; see drm_plane_set_state.
1344  */
1345 static void
1346 drm_plane_state_free(struct drm_plane_state *state, bool force)
1347 {
1348         if (!state)
1349                 return;
1350
1351         wl_list_remove(&state->link);
1352         wl_list_init(&state->link);
1353         state->output_state = NULL;
1354
1355         if (force || state != state->plane->state_cur) {
1356                 drm_fb_unref(state->fb);
1357                 free(state);
1358         }
1359 }
1360
1361 /**
1362  * Duplicate an existing plane state into a new plane state, storing it within
1363  * the given output state. If the output state already contains a plane state
1364  * for the drm_plane referenced by 'src', that plane state is freed first.
1365  */
1366 static struct drm_plane_state *
1367 drm_plane_state_duplicate(struct drm_output_state *state_output,
1368                           struct drm_plane_state *src)
1369 {
1370         struct drm_plane_state *dst = malloc(sizeof(*dst));
1371         struct drm_plane_state *old, *tmp;
1372
1373         assert(src);
1374         assert(dst);
1375         *dst = *src;
1376         wl_list_init(&dst->link);
1377
1378         wl_list_for_each_safe(old, tmp, &state_output->plane_list, link) {
1379                 /* Duplicating a plane state into the same output state, so
1380                  * it can replace itself with an identical copy of itself,
1381                  * makes no sense. */
1382                 assert(old != src);
1383                 if (old->plane == dst->plane)
1384                         drm_plane_state_free(old, false);
1385         }
1386
1387         wl_list_insert(&state_output->plane_list, &dst->link);
1388         if (src->fb)
1389                 dst->fb = drm_fb_ref(src->fb);
1390         dst->output_state = state_output;
1391         dst->complete = false;
1392
1393         return dst;
1394 }
1395
1396 /**
1397  * Remove a plane state from an output state; if the plane was previously
1398  * enabled, then replace it with a disabling state. This ensures that the
1399  * output state was untouched from it was before the plane state was
1400  * modified by the caller of this function.
1401  *
1402  * This is required as drm_output_state_get_plane may either allocate a
1403  * new plane state, in which case this function will just perform a matching
1404  * drm_plane_state_free, or it may instead repurpose an existing disabling
1405  * state (if the plane was previously active), in which case this function
1406  * will reset it.
1407  */
1408 static void
1409 drm_plane_state_put_back(struct drm_plane_state *state)
1410 {
1411         struct drm_output_state *state_output;
1412         struct drm_plane *plane;
1413
1414         if (!state)
1415                 return;
1416
1417         state_output = state->output_state;
1418         plane = state->plane;
1419         drm_plane_state_free(state, false);
1420
1421         /* Plane was previously disabled; no need to keep this temporary
1422          * state around. */
1423         if (!plane->state_cur->fb)
1424                 return;
1425
1426         (void) drm_plane_state_alloc(state_output, plane);
1427 }
1428
1429 static bool
1430 drm_view_transform_supported(struct weston_view *ev, struct weston_output *output)
1431 {
1432         struct weston_buffer_viewport *viewport = &ev->surface->buffer_viewport;
1433
1434         /* This will incorrectly disallow cases where the combination of
1435          * buffer and view transformations match the output transform.
1436          * Fixing this requires a full analysis of the transformation
1437          * chain. */
1438         if (ev->transform.enabled &&
1439             ev->transform.matrix.type >= WESTON_MATRIX_TRANSFORM_ROTATE)
1440                 return false;
1441
1442         if (viewport->buffer.transform != output->transform)
1443                 return false;
1444
1445         return true;
1446 }
1447
1448 /**
1449  * Given a weston_view, fill the drm_plane_state's co-ordinates to display on
1450  * a given plane.
1451  */
1452 static bool
1453 drm_plane_state_coords_for_view(struct drm_plane_state *state,
1454                                 struct weston_view *ev)
1455 {
1456         struct drm_output *output = state->output;
1457         struct weston_buffer *buffer = ev->surface->buffer_ref.buffer;
1458         pixman_region32_t dest_rect, src_rect;
1459         pixman_box32_t *box, tbox;
1460         float sxf1, syf1, sxf2, syf2;
1461
1462         if (!drm_view_transform_supported(ev, &output->base))
1463                 return false;
1464
1465         /* Update the base weston_plane co-ordinates. */
1466         box = pixman_region32_extents(&ev->transform.boundingbox);
1467         state->plane->base.x = box->x1;
1468         state->plane->base.y = box->y1;
1469
1470         /* First calculate the destination co-ordinates by taking the
1471          * area of the view which is visible on this output, performing any
1472          * transforms to account for output rotation and scale as necessary. */
1473         pixman_region32_init(&dest_rect);
1474         pixman_region32_intersect(&dest_rect, &ev->transform.boundingbox,
1475                                   &output->base.region);
1476         pixman_region32_translate(&dest_rect, -output->base.x, -output->base.y);
1477         box = pixman_region32_extents(&dest_rect);
1478         tbox = weston_transformed_rect(output->base.width,
1479                                        output->base.height,
1480                                        output->base.transform,
1481                                        output->base.current_scale,
1482                                        *box);
1483         state->dest_x = tbox.x1;
1484         state->dest_y = tbox.y1;
1485         state->dest_w = tbox.x2 - tbox.x1;
1486         state->dest_h = tbox.y2 - tbox.y1;
1487         pixman_region32_fini(&dest_rect);
1488
1489         /* Now calculate the source rectangle, by finding the extents of the
1490          * view, and working backwards to source co-ordinates. */
1491         pixman_region32_init(&src_rect);
1492         pixman_region32_intersect(&src_rect, &ev->transform.boundingbox,
1493                                   &output->base.region);
1494         box = pixman_region32_extents(&src_rect);
1495         weston_view_from_global_float(ev, box->x1, box->y1, &sxf1, &syf1);
1496         weston_surface_to_buffer_float(ev->surface, sxf1, syf1, &sxf1, &syf1);
1497         weston_view_from_global_float(ev, box->x2, box->y2, &sxf2, &syf2);
1498         weston_surface_to_buffer_float(ev->surface, sxf2, syf2, &sxf2, &syf2);
1499         pixman_region32_fini(&src_rect);
1500
1501         /* Buffer transforms may mean that x2 is to the left of x1, and/or that
1502          * y2 is above y1. */
1503         if (sxf2 < sxf1) {
1504                 double tmp = sxf1;
1505                 sxf1 = sxf2;
1506                 sxf2 = tmp;
1507         }
1508         if (syf2 < syf1) {
1509                 double tmp = syf1;
1510                 syf1 = syf2;
1511                 syf2 = tmp;
1512         }
1513
1514         /* Shift from S23.8 wl_fixed to U16.16 KMS fixed-point encoding. */
1515         state->src_x = wl_fixed_from_double(sxf1) << 8;
1516         state->src_y = wl_fixed_from_double(syf1) << 8;
1517         state->src_w = wl_fixed_from_double(sxf2 - sxf1) << 8;
1518         state->src_h = wl_fixed_from_double(syf2 - syf1) << 8;
1519
1520         /* Clamp our source co-ordinates to surface bounds; it's possible
1521          * for intermediate translations to give us slightly incorrect
1522          * co-ordinates if we have, for example, multiple zooming
1523          * transformations. View bounding boxes are also explicitly rounded
1524          * greedily. */
1525         if (state->src_x < 0)
1526                 state->src_x = 0;
1527         if (state->src_y < 0)
1528                 state->src_y = 0;
1529         if (state->src_w > (uint32_t) ((buffer->width << 16) - state->src_x))
1530                 state->src_w = (buffer->width << 16) - state->src_x;
1531         if (state->src_h > (uint32_t) ((buffer->height << 16) - state->src_y))
1532                 state->src_h = (buffer->height << 16) - state->src_y;
1533
1534         return true;
1535 }
1536
1537 static bool
1538 drm_view_is_opaque(struct weston_view *ev)
1539 {
1540         pixman_region32_t r;
1541         bool ret = false;
1542
1543         pixman_region32_init_rect(&r, 0, 0,
1544                                   ev->surface->width,
1545                                   ev->surface->height);
1546         pixman_region32_subtract(&r, &r, &ev->surface->opaque);
1547
1548         if (!pixman_region32_not_empty(&r))
1549                 ret = true;
1550
1551         pixman_region32_fini(&r);
1552
1553         return ret;
1554 }
1555
1556 static struct drm_fb *
1557 drm_fb_get_from_view(struct drm_output_state *state, struct weston_view *ev)
1558 {
1559         struct drm_output *output = state->output;
1560         struct drm_backend *b = to_drm_backend(output->base.compositor);
1561         struct weston_buffer *buffer = ev->surface->buffer_ref.buffer;
1562         bool is_opaque = drm_view_is_opaque(ev);
1563         struct linux_dmabuf_buffer *dmabuf;
1564         struct drm_fb *fb;
1565
1566         if (ev->alpha != 1.0f)
1567                 return NULL;
1568
1569         if (!drm_view_transform_supported(ev, &output->base))
1570                 return NULL;
1571
1572         if (!buffer)
1573                 return NULL;
1574
1575         if (wl_shm_buffer_get(buffer->resource))
1576                 return NULL;
1577
1578         /* GBM is used for dmabuf import as well as from client wl_buffer. */
1579         if (!b->gbm)
1580                 return NULL;
1581
1582         dmabuf = linux_dmabuf_buffer_get(buffer->resource);
1583         if (dmabuf) {
1584                 fb = drm_fb_get_from_dmabuf(dmabuf, b, is_opaque);
1585                 if (!fb)
1586                         return NULL;
1587         } else {
1588                 struct gbm_bo *bo;
1589
1590                 bo = gbm_bo_import(b->gbm, GBM_BO_IMPORT_WL_BUFFER,
1591                                    buffer->resource, GBM_BO_USE_SCANOUT);
1592                 if (!bo)
1593                         return NULL;
1594
1595                 fb = drm_fb_get_from_bo(bo, b, is_opaque, BUFFER_CLIENT);
1596                 if (!fb) {
1597                         gbm_bo_destroy(bo);
1598                         return NULL;
1599                 }
1600         }
1601
1602         drm_fb_set_buffer(fb, buffer);
1603         return fb;
1604 }
1605
1606 /**
1607  * Return a plane state from a drm_output_state.
1608  */
1609 static struct drm_plane_state *
1610 drm_output_state_get_existing_plane(struct drm_output_state *state_output,
1611                                     struct drm_plane *plane)
1612 {
1613         struct drm_plane_state *ps;
1614
1615         wl_list_for_each(ps, &state_output->plane_list, link) {
1616                 if (ps->plane == plane)
1617                         return ps;
1618         }
1619
1620         return NULL;
1621 }
1622
1623 /**
1624  * Return a plane state from a drm_output_state, either existing or
1625  * freshly allocated.
1626  */
1627 static struct drm_plane_state *
1628 drm_output_state_get_plane(struct drm_output_state *state_output,
1629                            struct drm_plane *plane)
1630 {
1631         struct drm_plane_state *ps;
1632
1633         ps = drm_output_state_get_existing_plane(state_output, plane);
1634         if (ps)
1635                 return ps;
1636
1637         return drm_plane_state_alloc(state_output, plane);
1638 }
1639
1640 /**
1641  * Allocate a new, empty drm_output_state. This should not generally be used
1642  * in the repaint cycle; see drm_output_state_duplicate.
1643  */
1644 static struct drm_output_state *
1645 drm_output_state_alloc(struct drm_output *output,
1646                        struct drm_pending_state *pending_state)
1647 {
1648         struct drm_output_state *state = zalloc(sizeof(*state));
1649
1650         assert(state);
1651         state->output = output;
1652         state->dpms = WESTON_DPMS_OFF;
1653         state->pending_state = pending_state;
1654         if (pending_state)
1655                 wl_list_insert(&pending_state->output_list, &state->link);
1656         else
1657                 wl_list_init(&state->link);
1658
1659         wl_list_init(&state->plane_list);
1660
1661         return state;
1662 }
1663
1664 /**
1665  * Duplicate an existing drm_output_state into a new one. This is generally
1666  * used during the repaint cycle, to capture the existing state of an output
1667  * and modify it to create a new state to be used.
1668  *
1669  * The mode determines whether the output will be reset to an a blank state,
1670  * or an exact mirror of the current state.
1671  */
1672 static struct drm_output_state *
1673 drm_output_state_duplicate(struct drm_output_state *src,
1674                            struct drm_pending_state *pending_state,
1675                            enum drm_output_state_duplicate_mode plane_mode)
1676 {
1677         struct drm_output_state *dst = malloc(sizeof(*dst));
1678         struct drm_plane_state *ps;
1679
1680         assert(dst);
1681
1682         /* Copy the whole structure, then individually modify the
1683          * pending_state, as well as the list link into our pending
1684          * state. */
1685         *dst = *src;
1686
1687         dst->pending_state = pending_state;
1688         if (pending_state)
1689                 wl_list_insert(&pending_state->output_list, &dst->link);
1690         else
1691                 wl_list_init(&dst->link);
1692
1693         wl_list_init(&dst->plane_list);
1694
1695         wl_list_for_each(ps, &src->plane_list, link) {
1696                 /* Don't carry planes which are now disabled; these should be
1697                  * free for other outputs to reuse. */
1698                 if (!ps->output)
1699                         continue;
1700
1701                 if (plane_mode == DRM_OUTPUT_STATE_CLEAR_PLANES)
1702                         (void) drm_plane_state_alloc(dst, ps->plane);
1703                 else
1704                         (void) drm_plane_state_duplicate(dst, ps);
1705         }
1706
1707         return dst;
1708 }
1709
1710 /**
1711  * Free an unused drm_output_state.
1712  */
1713 static void
1714 drm_output_state_free(struct drm_output_state *state)
1715 {
1716         struct drm_plane_state *ps, *next;
1717
1718         if (!state)
1719                 return;
1720
1721         wl_list_for_each_safe(ps, next, &state->plane_list, link)
1722                 drm_plane_state_free(ps, false);
1723
1724         wl_list_remove(&state->link);
1725
1726         free(state);
1727 }
1728
1729 /**
1730  * Get output state to disable output
1731  *
1732  * Returns a pointer to an output_state object which can be used to disable
1733  * an output (e.g. DPMS off).
1734  *
1735  * @param pending_state The pending state object owning this update
1736  * @param output The output to disable
1737  * @returns A drm_output_state to disable the output
1738  */
1739 static struct drm_output_state *
1740 drm_output_get_disable_state(struct drm_pending_state *pending_state,
1741                              struct drm_output *output)
1742 {
1743         struct drm_output_state *output_state;
1744
1745         output_state = drm_output_state_duplicate(output->state_cur,
1746                                                   pending_state,
1747                                                   DRM_OUTPUT_STATE_CLEAR_PLANES);
1748         output_state->dpms = WESTON_DPMS_OFF;
1749
1750         return output_state;
1751 }
1752
1753 /**
1754  * Allocate a new drm_pending_state
1755  *
1756  * Allocate a new, empty, 'pending state' structure to be used across a
1757  * repaint cycle or similar.
1758  *
1759  * @param backend DRM backend
1760  * @returns Newly-allocated pending state structure
1761  */
1762 static struct drm_pending_state *
1763 drm_pending_state_alloc(struct drm_backend *backend)
1764 {
1765         struct drm_pending_state *ret;
1766
1767         ret = calloc(1, sizeof(*ret));
1768         if (!ret)
1769                 return NULL;
1770
1771         ret->backend = backend;
1772         wl_list_init(&ret->output_list);
1773
1774         return ret;
1775 }
1776
1777 /**
1778  * Free a drm_pending_state structure
1779  *
1780  * Frees a pending_state structure, as well as any output_states connected
1781  * to this pending state.
1782  *
1783  * @param pending_state Pending state structure to free
1784  */
1785 static void
1786 drm_pending_state_free(struct drm_pending_state *pending_state)
1787 {
1788         struct drm_output_state *output_state, *tmp;
1789
1790         if (!pending_state)
1791                 return;
1792
1793         wl_list_for_each_safe(output_state, tmp, &pending_state->output_list,
1794                               link) {
1795                 drm_output_state_free(output_state);
1796         }
1797
1798         free(pending_state);
1799 }
1800
1801 /**
1802  * Find an output state in a pending state
1803  *
1804  * Given a pending_state structure, find the output_state for a particular
1805  * output.
1806  *
1807  * @param pending_state Pending state structure to search
1808  * @param output Output to find state for
1809  * @returns Output state if present, or NULL if not
1810  */
1811 static struct drm_output_state *
1812 drm_pending_state_get_output(struct drm_pending_state *pending_state,
1813                              struct drm_output *output)
1814 {
1815         struct drm_output_state *output_state;
1816
1817         wl_list_for_each(output_state, &pending_state->output_list, link) {
1818                 if (output_state->output == output)
1819                         return output_state;
1820         }
1821
1822         return NULL;
1823 }
1824
1825 static int drm_pending_state_apply_sync(struct drm_pending_state *state);
1826 static int drm_pending_state_test(struct drm_pending_state *state);
1827
1828 /**
1829  * Mark a drm_output_state (the output's last state) as complete. This handles
1830  * any post-completion actions such as updating the repaint timer, disabling the
1831  * output, and finally freeing the state.
1832  */
1833 static void
1834 drm_output_update_complete(struct drm_output *output, uint32_t flags,
1835                            unsigned int sec, unsigned int usec)
1836 {
1837         struct drm_backend *b = to_drm_backend(output->base.compositor);
1838         struct drm_plane_state *ps;
1839         struct timespec ts;
1840
1841         /* Stop the pageflip timer instead of rearming it here */
1842         if (output->pageflip_timer)
1843                 wl_event_source_timer_update(output->pageflip_timer, 0);
1844
1845         wl_list_for_each(ps, &output->state_cur->plane_list, link)
1846                 ps->complete = true;
1847
1848         drm_output_state_free(output->state_last);
1849         output->state_last = NULL;
1850
1851         if (output->destroy_pending) {
1852                 output->destroy_pending = 0;
1853                 output->disable_pending = 0;
1854                 output->dpms_off_pending = 0;
1855                 drm_output_destroy(&output->base);
1856                 return;
1857         } else if (output->disable_pending) {
1858                 output->disable_pending = 0;
1859                 output->dpms_off_pending = 0;
1860                 weston_output_disable(&output->base);
1861                 return;
1862         } else if (output->dpms_off_pending) {
1863                 struct drm_pending_state *pending = drm_pending_state_alloc(b);
1864                 output->dpms_off_pending = 0;
1865                 drm_output_get_disable_state(pending, output);
1866                 drm_pending_state_apply_sync(pending);
1867                 return;
1868         } else if (output->state_cur->dpms == WESTON_DPMS_OFF &&
1869                    output->base.repaint_status != REPAINT_AWAITING_COMPLETION) {
1870                 /* DPMS can happen to us either in the middle of a repaint
1871                  * cycle (when we have painted fresh content, only to throw it
1872                  * away for DPMS off), or at any other random point. If the
1873                  * latter is true, then we cannot go through finish_frame,
1874                  * because the repaint machinery does not expect this. */
1875                 return;
1876         }
1877
1878         ts.tv_sec = sec;
1879         ts.tv_nsec = usec * 1000;
1880         weston_output_finish_frame(&output->base, &ts, flags);
1881
1882         /* We can't call this from frame_notify, because the output's
1883          * repaint needed flag is cleared just after that */
1884         if (output->recorder)
1885                 weston_output_schedule_repaint(&output->base);
1886 }
1887
1888 /**
1889  * Mark an output state as current on the output, i.e. it has been
1890  * submitted to the kernel. The mode argument determines whether this
1891  * update will be applied synchronously (e.g. when calling drmModeSetCrtc),
1892  * or asynchronously (in which case we wait for events to complete).
1893  */
1894 static void
1895 drm_output_assign_state(struct drm_output_state *state,
1896                         enum drm_state_apply_mode mode)
1897 {
1898         struct drm_output *output = state->output;
1899         struct drm_backend *b = to_drm_backend(output->base.compositor);
1900         struct drm_plane_state *plane_state;
1901
1902         assert(!output->state_last);
1903
1904         if (mode == DRM_STATE_APPLY_ASYNC)
1905                 output->state_last = output->state_cur;
1906         else
1907                 drm_output_state_free(output->state_cur);
1908
1909         wl_list_remove(&state->link);
1910         wl_list_init(&state->link);
1911         state->pending_state = NULL;
1912
1913         output->state_cur = state;
1914
1915         if (b->atomic_modeset && mode == DRM_STATE_APPLY_ASYNC)
1916                 output->atomic_complete_pending = 1;
1917
1918         /* Replace state_cur on each affected plane with the new state, being
1919          * careful to dispose of orphaned (but only orphaned) previous state.
1920          * If the previous state is not orphaned (still has an output_state
1921          * attached), it will be disposed of by freeing the output_state. */
1922         wl_list_for_each(plane_state, &state->plane_list, link) {
1923                 struct drm_plane *plane = plane_state->plane;
1924
1925                 if (plane->state_cur && !plane->state_cur->output_state)
1926                         drm_plane_state_free(plane->state_cur, true);
1927                 plane->state_cur = plane_state;
1928
1929                 if (mode != DRM_STATE_APPLY_ASYNC) {
1930                         plane_state->complete = true;
1931                         continue;
1932                 }
1933
1934                 if (b->atomic_modeset)
1935                         continue;
1936
1937                 if (plane->type == WDRM_PLANE_TYPE_OVERLAY)
1938                         output->vblank_pending++;
1939                 else if (plane->type == WDRM_PLANE_TYPE_PRIMARY)
1940                         output->page_flip_pending = 1;
1941         }
1942 }
1943
1944 enum drm_output_propose_state_mode {
1945         DRM_OUTPUT_PROPOSE_STATE_MIXED, /**< mix renderer & planes */
1946         DRM_OUTPUT_PROPOSE_STATE_RENDERER_ONLY, /**< only assign to renderer & cursor */
1947         DRM_OUTPUT_PROPOSE_STATE_PLANES_ONLY, /**< no renderer use, only planes */
1948 };
1949
1950 static struct drm_plane_state *
1951 drm_output_prepare_scanout_view(struct drm_output_state *output_state,
1952                                 struct weston_view *ev)
1953 {
1954         struct drm_output *output = output_state->output;
1955         struct drm_backend *b = to_drm_backend(output->base.compositor);
1956         struct drm_plane *scanout_plane = output->scanout_plane;
1957         struct drm_plane_state *state;
1958         struct drm_fb *fb;
1959         pixman_box32_t *extents;
1960
1961         assert(!b->sprites_are_broken);
1962
1963         /* Check the view spans exactly the output size, calculated in the
1964          * logical co-ordinate space. */
1965         extents = pixman_region32_extents(&ev->transform.boundingbox);
1966         if (extents->x1 != output->base.x ||
1967             extents->y1 != output->base.y ||
1968             extents->x2 != output->base.x + output->base.width ||
1969             extents->y2 != output->base.y + output->base.height)
1970                 return NULL;
1971
1972         if (ev->alpha != 1.0f)
1973                 return NULL;
1974
1975         fb = drm_fb_get_from_view(output_state, ev);
1976         if (!fb)
1977                 return NULL;
1978
1979         /* Can't change formats with just a pageflip */
1980         if (fb->format->format != output->gbm_format) {
1981                 drm_fb_unref(fb);
1982                 return NULL;
1983         }
1984
1985         state = drm_output_state_get_plane(output_state, scanout_plane);
1986         if (state->fb) {
1987                 /* If there is already a framebuffer on the scanout plane,
1988                  * a client view has already been placed on the scanout
1989                  * view. In that case, do not free or put back the state,
1990                  * but just leave it in place and quietly exit. */
1991                 drm_fb_unref(fb);
1992                 return NULL;
1993         }
1994
1995         state->fb = fb;
1996         state->ev = ev;
1997         state->output = output;
1998         if (!drm_plane_state_coords_for_view(state, ev))
1999                 goto err;
2000
2001         /* The legacy API does not let us perform cropping or scaling. */
2002         if (state->src_x != 0 || state->src_y != 0 ||
2003             state->src_w != state->dest_w << 16 ||
2004             state->src_h != state->dest_h << 16 ||
2005             state->dest_x != 0 || state->dest_y != 0 ||
2006             state->dest_w != (unsigned) output->base.current_mode->width ||
2007             state->dest_h != (unsigned) output->base.current_mode->height)
2008                 goto err;
2009
2010         return state;
2011
2012 err:
2013         drm_plane_state_put_back(state);
2014         return NULL;
2015 }
2016
2017 static struct drm_fb *
2018 drm_output_render_gl(struct drm_output_state *state, pixman_region32_t *damage)
2019 {
2020         struct drm_output *output = state->output;
2021         struct drm_backend *b = to_drm_backend(output->base.compositor);
2022         struct gbm_bo *bo;
2023         struct drm_fb *ret;
2024
2025         output->base.compositor->renderer->repaint_output(&output->base,
2026                                                           damage);
2027
2028         bo = gbm_surface_lock_front_buffer(output->gbm_surface);
2029         if (!bo) {
2030                 weston_log("failed to lock front buffer: %m\n");
2031                 return NULL;
2032         }
2033
2034         /* The renderer always produces an opaque image. */
2035         ret = drm_fb_get_from_bo(bo, b, true, BUFFER_GBM_SURFACE);
2036         if (!ret) {
2037                 weston_log("failed to get drm_fb for bo\n");
2038                 gbm_surface_release_buffer(output->gbm_surface, bo);
2039                 return NULL;
2040         }
2041         ret->gbm_surface = output->gbm_surface;
2042
2043         return ret;
2044 }
2045
2046 static struct drm_fb *
2047 drm_output_render_pixman(struct drm_output_state *state,
2048                          pixman_region32_t *damage)
2049 {
2050         struct drm_output *output = state->output;
2051         struct weston_compositor *ec = output->base.compositor;
2052
2053         output->current_image ^= 1;
2054
2055         pixman_renderer_output_set_buffer(&output->base,
2056                                           output->image[output->current_image]);
2057         pixman_renderer_output_set_hw_extra_damage(&output->base,
2058                                                    &output->previous_damage);
2059
2060         ec->renderer->repaint_output(&output->base, damage);
2061
2062         pixman_region32_copy(&output->previous_damage, damage);
2063
2064         return drm_fb_ref(output->dumb[output->current_image]);
2065 }
2066
2067 static void
2068 drm_output_render(struct drm_output_state *state, pixman_region32_t *damage)
2069 {
2070         struct drm_output *output = state->output;
2071         struct weston_compositor *c = output->base.compositor;
2072         struct drm_plane_state *scanout_state;
2073         struct drm_plane *scanout_plane = output->scanout_plane;
2074         struct drm_backend *b = to_drm_backend(c);
2075         struct drm_fb *fb;
2076
2077         /* If we already have a client buffer promoted to scanout, then we don't
2078          * want to render. */
2079         scanout_state = drm_output_state_get_plane(state,
2080                                                    output->scanout_plane);
2081         if (scanout_state->fb)
2082                 return;
2083
2084         if (!pixman_region32_not_empty(damage) &&
2085             scanout_plane->state_cur->fb &&
2086             (scanout_plane->state_cur->fb->type == BUFFER_GBM_SURFACE ||
2087              scanout_plane->state_cur->fb->type == BUFFER_PIXMAN_DUMB) &&
2088             scanout_plane->state_cur->fb->width ==
2089                 output->base.current_mode->width &&
2090             scanout_plane->state_cur->fb->height ==
2091                 output->base.current_mode->height) {
2092                 fb = drm_fb_ref(scanout_plane->state_cur->fb);
2093         } else if (b->use_pixman) {
2094                 fb = drm_output_render_pixman(state, damage);
2095         } else {
2096                 fb = drm_output_render_gl(state, damage);
2097         }
2098
2099         if (!fb) {
2100                 drm_plane_state_put_back(scanout_state);
2101                 return;
2102         }
2103
2104         scanout_state->fb = fb;
2105         scanout_state->output = output;
2106
2107         scanout_state->src_x = 0;
2108         scanout_state->src_y = 0;
2109         scanout_state->src_w = output->base.current_mode->width << 16;
2110         scanout_state->src_h = output->base.current_mode->height << 16;
2111
2112         scanout_state->dest_x = 0;
2113         scanout_state->dest_y = 0;
2114         scanout_state->dest_w = scanout_state->src_w >> 16;
2115         scanout_state->dest_h = scanout_state->src_h >> 16;
2116
2117
2118         pixman_region32_subtract(&c->primary_plane.damage,
2119                                  &c->primary_plane.damage, damage);
2120 }
2121
2122 static void
2123 drm_output_set_gamma(struct weston_output *output_base,
2124                      uint16_t size, uint16_t *r, uint16_t *g, uint16_t *b)
2125 {
2126         int rc;
2127         struct drm_output *output = to_drm_output(output_base);
2128         struct drm_backend *backend =
2129                 to_drm_backend(output->base.compositor);
2130
2131         /* check */
2132         if (output_base->gamma_size != size)
2133                 return;
2134
2135         rc = drmModeCrtcSetGamma(backend->drm.fd,
2136                                  output->crtc_id,
2137                                  size, r, g, b);
2138         if (rc)
2139                 weston_log("set gamma failed: %m\n");
2140 }
2141
2142 /* Determine the type of vblank synchronization to use for the output.
2143  *
2144  * The pipe parameter indicates which CRTC is in use.  Knowing this, we
2145  * can determine which vblank sequence type to use for it.  Traditional
2146  * cards had only two CRTCs, with CRTC 0 using no special flags, and
2147  * CRTC 1 using DRM_VBLANK_SECONDARY.  The first bit of the pipe
2148  * parameter indicates this.
2149  *
2150  * Bits 1-5 of the pipe parameter are 5 bit wide pipe number between
2151  * 0-31.  If this is non-zero it indicates we're dealing with a
2152  * multi-gpu situation and we need to calculate the vblank sync
2153  * using DRM_BLANK_HIGH_CRTC_MASK.
2154  */
2155 static unsigned int
2156 drm_waitvblank_pipe(struct drm_output *output)
2157 {
2158         if (output->pipe > 1)
2159                 return (output->pipe << DRM_VBLANK_HIGH_CRTC_SHIFT) &
2160                                 DRM_VBLANK_HIGH_CRTC_MASK;
2161         else if (output->pipe > 0)
2162                 return DRM_VBLANK_SECONDARY;
2163         else
2164                 return 0;
2165 }
2166
2167 static int
2168 drm_output_apply_state_legacy(struct drm_output_state *state)
2169 {
2170         struct drm_output *output = state->output;
2171         struct drm_backend *backend = to_drm_backend(output->base.compositor);
2172         struct drm_plane *scanout_plane = output->scanout_plane;
2173         struct drm_property_info *dpms_prop;
2174         struct drm_plane_state *scanout_state;
2175         struct drm_plane_state *ps;
2176         struct drm_mode *mode;
2177         struct drm_head *head;
2178         uint32_t connectors[MAX_CLONED_CONNECTORS];
2179         int n_conn = 0;
2180         struct timespec now;
2181         int ret = 0;
2182
2183         wl_list_for_each(head, &output->base.head_list, base.output_link) {
2184                 assert(n_conn < MAX_CLONED_CONNECTORS);
2185                 connectors[n_conn++] = head->connector_id;
2186         }
2187
2188         /* If disable_planes is set then assign_planes() wasn't
2189          * called for this render, so we could still have a stale
2190          * cursor plane set up.
2191          */
2192         if (output->base.disable_planes) {
2193                 output->cursor_view = NULL;
2194                 if (output->cursor_plane) {
2195                         output->cursor_plane->base.x = INT32_MIN;
2196                         output->cursor_plane->base.y = INT32_MIN;
2197                 }
2198         }
2199
2200         if (state->dpms != WESTON_DPMS_ON) {
2201                 wl_list_for_each(ps, &state->plane_list, link) {
2202                         struct drm_plane *p = ps->plane;
2203                         assert(ps->fb == NULL);
2204                         assert(ps->output == NULL);
2205
2206                         if (p->type != WDRM_PLANE_TYPE_OVERLAY)
2207                                 continue;
2208
2209                         ret = drmModeSetPlane(backend->drm.fd, p->plane_id,
2210                                               0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
2211                         if (ret)
2212                                 weston_log("drmModeSetPlane failed disable: %m\n");
2213                 }
2214
2215                 if (output->cursor_plane) {
2216                         ret = drmModeSetCursor(backend->drm.fd, output->crtc_id,
2217                                                0, 0, 0);
2218                         if (ret)
2219                                 weston_log("drmModeSetCursor failed disable: %m\n");
2220                 }
2221
2222                 ret = drmModeSetCrtc(backend->drm.fd, output->crtc_id, 0, 0, 0,
2223                                      NULL, 0, NULL);
2224                 if (ret)
2225                         weston_log("drmModeSetCrtc failed disabling: %m\n");
2226
2227                 drm_output_assign_state(state, DRM_STATE_APPLY_SYNC);
2228                 weston_compositor_read_presentation_clock(output->base.compositor, &now);
2229                 drm_output_update_complete(output,
2230                                            WP_PRESENTATION_FEEDBACK_KIND_HW_COMPLETION,
2231                                            now.tv_sec, now.tv_nsec / 1000);
2232
2233                 return 0;
2234         }
2235
2236         scanout_state =
2237                 drm_output_state_get_existing_plane(state, scanout_plane);
2238
2239         /* The legacy SetCrtc API doesn't allow us to do scaling, and the
2240          * legacy PageFlip API doesn't allow us to do clipping either. */
2241         assert(scanout_state->src_x == 0);
2242         assert(scanout_state->src_y == 0);
2243         assert(scanout_state->src_w ==
2244                 (unsigned) (output->base.current_mode->width << 16));
2245         assert(scanout_state->src_h ==
2246                 (unsigned) (output->base.current_mode->height << 16));
2247         assert(scanout_state->dest_x == 0);
2248         assert(scanout_state->dest_y == 0);
2249         assert(scanout_state->dest_w == scanout_state->src_w >> 16);
2250         assert(scanout_state->dest_h == scanout_state->src_h >> 16);
2251
2252         mode = to_drm_mode(output->base.current_mode);
2253         if (backend->state_invalid ||
2254             !scanout_plane->state_cur->fb ||
2255             scanout_plane->state_cur->fb->strides[0] !=
2256             scanout_state->fb->strides[0]) {
2257                 ret = drmModeSetCrtc(backend->drm.fd, output->crtc_id,
2258                                      scanout_state->fb->fb_id,
2259                                      0, 0,
2260                                      connectors, n_conn,
2261                                      &mode->mode_info);
2262                 if (ret) {
2263                         weston_log("set mode failed: %m\n");
2264                         goto err;
2265                 }
2266         }
2267
2268         if (drmModePageFlip(backend->drm.fd, output->crtc_id,
2269                             scanout_state->fb->fb_id,
2270                             DRM_MODE_PAGE_FLIP_EVENT, output) < 0) {
2271                 weston_log("queueing pageflip failed: %m\n");
2272                 goto err;
2273         }
2274
2275         assert(!output->page_flip_pending);
2276
2277         if (output->pageflip_timer)
2278                 wl_event_source_timer_update(output->pageflip_timer,
2279                                              backend->pageflip_timeout);
2280
2281         drm_output_set_cursor(state);
2282
2283         /*
2284          * Now, update all the sprite surfaces
2285          */
2286         wl_list_for_each(ps, &state->plane_list, link) {
2287                 uint32_t flags = 0, fb_id = 0;
2288                 drmVBlank vbl = {
2289                         .request.type = DRM_VBLANK_RELATIVE | DRM_VBLANK_EVENT,
2290                         .request.sequence = 1,
2291                 };
2292                 struct drm_plane *p = ps->plane;
2293
2294                 if (p->type != WDRM_PLANE_TYPE_OVERLAY)
2295                         continue;
2296
2297                 assert(p->state_cur->complete);
2298                 assert(!!p->state_cur->output == !!p->state_cur->fb);
2299                 assert(!p->state_cur->output || p->state_cur->output == output);
2300                 assert(!ps->complete);
2301                 assert(!ps->output || ps->output == output);
2302                 assert(!!ps->output == !!ps->fb);
2303
2304                 if (ps->fb && !backend->sprites_hidden)
2305                         fb_id = ps->fb->fb_id;
2306
2307                 ret = drmModeSetPlane(backend->drm.fd, p->plane_id,
2308                                       output->crtc_id, fb_id, flags,
2309                                       ps->dest_x, ps->dest_y,
2310                                       ps->dest_w, ps->dest_h,
2311                                       ps->src_x, ps->src_y,
2312                                       ps->src_w, ps->src_h);
2313                 if (ret)
2314                         weston_log("setplane failed: %d: %s\n",
2315                                 ret, strerror(errno));
2316
2317                 vbl.request.type |= drm_waitvblank_pipe(output);
2318
2319                 /*
2320                  * Queue a vblank signal so we know when the surface
2321                  * becomes active on the display or has been replaced.
2322                  */
2323                 vbl.request.signal = (unsigned long) ps;
2324                 ret = drmWaitVBlank(backend->drm.fd, &vbl);
2325                 if (ret) {
2326                         weston_log("vblank event request failed: %d: %s\n",
2327                                 ret, strerror(errno));
2328                 }
2329         }
2330
2331         if (state->dpms != output->state_cur->dpms) {
2332                 wl_list_for_each(head, &output->base.head_list, base.output_link) {
2333                         dpms_prop = &head->props_conn[WDRM_CONNECTOR_DPMS];
2334                         if (dpms_prop->prop_id == 0)
2335                                 continue;
2336
2337                         ret = drmModeConnectorSetProperty(backend->drm.fd,
2338                                                           head->connector_id,
2339                                                           dpms_prop->prop_id,
2340                                                           state->dpms);
2341                         if (ret) {
2342                                 weston_log("DRM: DPMS: failed property set for %s\n",
2343                                            head->base.name);
2344                         }
2345                 }
2346         }
2347
2348         drm_output_assign_state(state, DRM_STATE_APPLY_ASYNC);
2349
2350         return 0;
2351
2352 err:
2353         output->cursor_view = NULL;
2354         drm_output_state_free(state);
2355         return -1;
2356 }
2357
2358 #ifdef HAVE_DRM_ATOMIC
2359 static int
2360 crtc_add_prop(drmModeAtomicReq *req, struct drm_output *output,
2361               enum wdrm_crtc_property prop, uint64_t val)
2362 {
2363         struct drm_property_info *info = &output->props_crtc[prop];
2364         int ret;
2365
2366         if (info->prop_id == 0)
2367                 return -1;
2368
2369         ret = drmModeAtomicAddProperty(req, output->crtc_id, info->prop_id,
2370                                        val);
2371         return (ret <= 0) ? -1 : 0;
2372 }
2373
2374 static int
2375 connector_add_prop(drmModeAtomicReq *req, struct drm_head *head,
2376                    enum wdrm_connector_property prop, uint64_t val)
2377 {
2378         struct drm_property_info *info = &head->props_conn[prop];
2379         int ret;
2380
2381         if (info->prop_id == 0)
2382                 return -1;
2383
2384         ret = drmModeAtomicAddProperty(req, head->connector_id,
2385                                        info->prop_id, val);
2386         return (ret <= 0) ? -1 : 0;
2387 }
2388
2389 static int
2390 plane_add_prop(drmModeAtomicReq *req, struct drm_plane *plane,
2391                enum wdrm_plane_property prop, uint64_t val)
2392 {
2393         struct drm_property_info *info = &plane->props[prop];
2394         int ret;
2395
2396         if (info->prop_id == 0)
2397                 return -1;
2398
2399         ret = drmModeAtomicAddProperty(req, plane->plane_id, info->prop_id,
2400                                        val);
2401         return (ret <= 0) ? -1 : 0;
2402 }
2403
2404 static int
2405 drm_mode_ensure_blob(struct drm_backend *backend, struct drm_mode *mode)
2406 {
2407         int ret;
2408
2409         if (mode->blob_id)
2410                 return 0;
2411
2412         ret = drmModeCreatePropertyBlob(backend->drm.fd,
2413                                         &mode->mode_info,
2414                                         sizeof(mode->mode_info),
2415                                         &mode->blob_id);
2416         if (ret != 0)
2417                 weston_log("failed to create mode property blob: %m\n");
2418
2419         return ret;
2420 }
2421
2422 static int
2423 drm_output_apply_state_atomic(struct drm_output_state *state,
2424                               drmModeAtomicReq *req,
2425                               uint32_t *flags)
2426 {
2427         struct drm_output *output = state->output;
2428         struct drm_backend *backend = to_drm_backend(output->base.compositor);
2429         struct drm_plane_state *plane_state;
2430         struct drm_mode *current_mode = to_drm_mode(output->base.current_mode);
2431         struct drm_head *head;
2432         int ret = 0;
2433
2434         if (state->dpms != output->state_cur->dpms)
2435                 *flags |= DRM_MODE_ATOMIC_ALLOW_MODESET;
2436
2437         if (state->dpms == WESTON_DPMS_ON) {
2438                 ret = drm_mode_ensure_blob(backend, current_mode);
2439                 if (ret != 0)
2440                         return ret;
2441
2442                 ret |= crtc_add_prop(req, output, WDRM_CRTC_MODE_ID,
2443                                      current_mode->blob_id);
2444                 ret |= crtc_add_prop(req, output, WDRM_CRTC_ACTIVE, 1);
2445
2446                 /* No need for the DPMS property, since it is implicit in
2447                  * routing and CRTC activity. */
2448                 wl_list_for_each(head, &output->base.head_list, base.output_link) {
2449                         ret |= connector_add_prop(req, head, WDRM_CONNECTOR_CRTC_ID,
2450                                                   output->crtc_id);
2451                 }
2452         } else {
2453                 ret |= crtc_add_prop(req, output, WDRM_CRTC_MODE_ID, 0);
2454                 ret |= crtc_add_prop(req, output, WDRM_CRTC_ACTIVE, 0);
2455
2456                 /* No need for the DPMS property, since it is implicit in
2457                  * routing and CRTC activity. */
2458                 wl_list_for_each(head, &output->base.head_list, base.output_link)
2459                         ret |= connector_add_prop(req, head, WDRM_CONNECTOR_CRTC_ID, 0);
2460         }
2461
2462         if (ret != 0) {
2463                 weston_log("couldn't set atomic CRTC/connector state\n");
2464                 return ret;
2465         }
2466
2467         wl_list_for_each(plane_state, &state->plane_list, link) {
2468                 struct drm_plane *plane = plane_state->plane;
2469
2470                 ret |= plane_add_prop(req, plane, WDRM_PLANE_FB_ID,
2471                                       plane_state->fb ? plane_state->fb->fb_id : 0);
2472                 ret |= plane_add_prop(req, plane, WDRM_PLANE_CRTC_ID,
2473                                       plane_state->fb ? output->crtc_id : 0);
2474                 ret |= plane_add_prop(req, plane, WDRM_PLANE_SRC_X,
2475                                       plane_state->src_x);
2476                 ret |= plane_add_prop(req, plane, WDRM_PLANE_SRC_Y,
2477                                       plane_state->src_y);
2478                 ret |= plane_add_prop(req, plane, WDRM_PLANE_SRC_W,
2479                                       plane_state->src_w);
2480                 ret |= plane_add_prop(req, plane, WDRM_PLANE_SRC_H,
2481                                       plane_state->src_h);
2482                 ret |= plane_add_prop(req, plane, WDRM_PLANE_CRTC_X,
2483                                       plane_state->dest_x);
2484                 ret |= plane_add_prop(req, plane, WDRM_PLANE_CRTC_Y,
2485                                       plane_state->dest_y);
2486                 ret |= plane_add_prop(req, plane, WDRM_PLANE_CRTC_W,
2487                                       plane_state->dest_w);
2488                 ret |= plane_add_prop(req, plane, WDRM_PLANE_CRTC_H,
2489                                       plane_state->dest_h);
2490
2491                 if (ret != 0) {
2492                         weston_log("couldn't set plane state\n");
2493                         return ret;
2494                 }
2495         }
2496
2497         return 0;
2498 }
2499
2500 /**
2501  * Helper function used only by drm_pending_state_apply, with the same
2502  * guarantees and constraints as that function.
2503  */
2504 static int
2505 drm_pending_state_apply_atomic(struct drm_pending_state *pending_state,
2506                                enum drm_state_apply_mode mode)
2507 {
2508         struct drm_backend *b = pending_state->backend;
2509         struct drm_output_state *output_state, *tmp;
2510         struct drm_plane *plane;
2511         drmModeAtomicReq *req = drmModeAtomicAlloc();
2512         uint32_t flags = 0;
2513         int ret = 0;
2514
2515         if (!req)
2516                 return -1;
2517
2518         if (b->state_invalid) {
2519                 struct weston_head *head_base;
2520                 struct drm_head *head;
2521                 uint32_t *unused;
2522                 int err;
2523
2524                 /* If we need to reset all our state (e.g. because we've
2525                  * just started, or just been VT-switched in), explicitly
2526                  * disable all the CRTCs and connectors we aren't using. */
2527                 wl_list_for_each(head_base,
2528                                  &b->compositor->head_list, compositor_link) {
2529                         struct drm_property_info *info;
2530
2531                         if (weston_head_is_enabled(head_base))
2532                                 continue;
2533
2534                         head = to_drm_head(head_base);
2535
2536                         info = &head->props_conn[WDRM_CONNECTOR_CRTC_ID];
2537                         err = drmModeAtomicAddProperty(req, head->connector_id,
2538                                                        info->prop_id, 0);
2539                         if (err <= 0)
2540                                 ret = -1;
2541                 }
2542
2543                 wl_array_for_each(unused, &b->unused_crtcs) {
2544                         struct drm_property_info infos[WDRM_CRTC__COUNT];
2545                         struct drm_property_info *info;
2546                         drmModeObjectProperties *props;
2547                         uint64_t active;
2548
2549                         memset(infos, 0, sizeof(infos));
2550
2551                         /* We can't emit a disable on a CRTC that's already
2552                          * off, as the kernel will refuse to generate an event
2553                          * for an off->off state and fail the commit.
2554                          */
2555                         props = drmModeObjectGetProperties(b->drm.fd,
2556                                                            *unused,
2557                                                            DRM_MODE_OBJECT_CRTC);
2558                         if (!props) {
2559                                 ret = -1;
2560                                 continue;
2561                         }
2562
2563                         drm_property_info_populate(b, crtc_props, infos,
2564                                                    WDRM_CRTC__COUNT,
2565                                                    props);
2566
2567                         info = &infos[WDRM_CRTC_ACTIVE];
2568                         active = drm_property_get_value(info, props, 0);
2569                         drmModeFreeObjectProperties(props);
2570                         if (active == 0) {
2571                                 drm_property_info_free(infos, WDRM_CRTC__COUNT);
2572                                 continue;
2573                         }
2574
2575                         err = drmModeAtomicAddProperty(req, *unused,
2576                                                        info->prop_id, 0);
2577                         if (err <= 0)
2578                                 ret = -1;
2579
2580                         info = &infos[WDRM_CRTC_MODE_ID];
2581                         err = drmModeAtomicAddProperty(req, *unused,
2582                                                        info->prop_id, 0);
2583                         if (err <= 0)
2584                                 ret = -1;
2585
2586                         drm_property_info_free(infos, WDRM_CRTC__COUNT);
2587                 }
2588
2589                 /* Disable all the planes; planes which are being used will
2590                  * override this state in the output-state application. */
2591                 wl_list_for_each(plane, &b->plane_list, link) {
2592                         plane_add_prop(req, plane, WDRM_PLANE_CRTC_ID, 0);
2593                         plane_add_prop(req, plane, WDRM_PLANE_FB_ID, 0);
2594                 }
2595
2596                 flags |= DRM_MODE_ATOMIC_ALLOW_MODESET;
2597         }
2598
2599         wl_list_for_each(output_state, &pending_state->output_list, link) {
2600                 if (mode == DRM_STATE_APPLY_SYNC)
2601                         assert(output_state->dpms == WESTON_DPMS_OFF);
2602                 ret |= drm_output_apply_state_atomic(output_state, req, &flags);
2603         }
2604
2605         if (ret != 0) {
2606                 weston_log("atomic: couldn't compile atomic state\n");
2607                 goto out;
2608         }
2609
2610         switch (mode) {
2611         case DRM_STATE_APPLY_SYNC:
2612                 break;
2613         case DRM_STATE_APPLY_ASYNC:
2614                 flags |= DRM_MODE_PAGE_FLIP_EVENT | DRM_MODE_ATOMIC_NONBLOCK;
2615                 break;
2616         case DRM_STATE_TEST_ONLY:
2617                 flags |= DRM_MODE_ATOMIC_TEST_ONLY;
2618                 break;
2619         }
2620
2621         ret = drmModeAtomicCommit(b->drm.fd, req, flags, b);
2622
2623         /* Test commits do not take ownership of the state; return
2624          * without freeing here. */
2625         if (mode == DRM_STATE_TEST_ONLY) {
2626                 drmModeAtomicFree(req);
2627                 return ret;
2628         }
2629
2630         if (ret != 0) {
2631                 weston_log("atomic: couldn't commit new state: %m\n");
2632                 goto out;
2633         }
2634
2635         wl_list_for_each_safe(output_state, tmp, &pending_state->output_list,
2636                               link)
2637                 drm_output_assign_state(output_state, mode);
2638
2639         b->state_invalid = false;
2640
2641         assert(wl_list_empty(&pending_state->output_list));
2642
2643 out:
2644         drmModeAtomicFree(req);
2645         drm_pending_state_free(pending_state);
2646         return ret;
2647 }
2648 #endif
2649
2650 /**
2651  * Tests a pending state, to see if the kernel will accept the update as
2652  * constructed.
2653  *
2654  * Using atomic modesetting, the kernel performs the same checks as it would
2655  * on a real commit, returning success or failure without actually modifying
2656  * the running state. It does not return -EBUSY if there are pending updates
2657  * in flight, so states may be tested at any point, however this means a
2658  * state which passed testing may fail on a real commit if the timing is not
2659  * respected (e.g. committing before the previous commit has completed).
2660  *
2661  * Without atomic modesetting, we have no way to check, so we optimistically
2662  * claim it will work.
2663  *
2664  * Unlike drm_pending_state_apply() and drm_pending_state_apply_sync(), this
2665  * function does _not_ take ownership of pending_state, nor does it clear
2666  * state_invalid.
2667  */
2668 static int
2669 drm_pending_state_test(struct drm_pending_state *pending_state)
2670 {
2671 #ifdef HAVE_DRM_ATOMIC
2672         struct drm_backend *b = pending_state->backend;
2673
2674         if (b->atomic_modeset)
2675                 return drm_pending_state_apply_atomic(pending_state,
2676                                                       DRM_STATE_TEST_ONLY);
2677 #endif
2678
2679         /* We have no way to test state before application on the legacy
2680          * modesetting API, so just claim it succeeded. */
2681         return 0;
2682 }
2683
2684 /**
2685  * Applies all of a pending_state asynchronously: the primary entry point for
2686  * applying KMS state to a device. Updates the state for all outputs in the
2687  * pending_state, as well as disabling any unclaimed outputs.
2688  *
2689  * Unconditionally takes ownership of pending_state, and clears state_invalid.
2690  */
2691 static int
2692 drm_pending_state_apply(struct drm_pending_state *pending_state)
2693 {
2694         struct drm_backend *b = pending_state->backend;
2695         struct drm_output_state *output_state, *tmp;
2696         uint32_t *unused;
2697
2698 #ifdef HAVE_DRM_ATOMIC
2699         if (b->atomic_modeset)
2700                 return drm_pending_state_apply_atomic(pending_state,
2701                                                       DRM_STATE_APPLY_ASYNC);
2702 #endif
2703
2704         if (b->state_invalid) {
2705                 /* If we need to reset all our state (e.g. because we've
2706                  * just started, or just been VT-switched in), explicitly
2707                  * disable all the CRTCs we aren't using. This also disables
2708                  * all connectors on these CRTCs, so we don't need to do that
2709                  * separately with the pre-atomic API. */
2710                 wl_array_for_each(unused, &b->unused_crtcs)
2711                         drmModeSetCrtc(b->drm.fd, *unused, 0, 0, 0, NULL, 0,
2712                                        NULL);
2713         }
2714
2715         wl_list_for_each_safe(output_state, tmp, &pending_state->output_list,
2716                               link) {
2717                 struct drm_output *output = output_state->output;
2718                 int ret;
2719
2720                 ret = drm_output_apply_state_legacy(output_state);
2721                 if (ret != 0) {
2722                         weston_log("Couldn't apply state for output %s\n",
2723                                    output->base.name);
2724                 }
2725         }
2726
2727         b->state_invalid = false;
2728
2729         assert(wl_list_empty(&pending_state->output_list));
2730
2731         drm_pending_state_free(pending_state);
2732
2733         return 0;
2734 }
2735
2736 /**
2737  * The synchronous version of drm_pending_state_apply. May only be used to
2738  * disable outputs. Does so synchronously: the request is guaranteed to have
2739  * completed on return, and the output will not be touched afterwards.
2740  *
2741  * Unconditionally takes ownership of pending_state, and clears state_invalid.
2742  */
2743 static int
2744 drm_pending_state_apply_sync(struct drm_pending_state *pending_state)
2745 {
2746         struct drm_backend *b = pending_state->backend;
2747         struct drm_output_state *output_state, *tmp;
2748         uint32_t *unused;
2749
2750 #ifdef HAVE_DRM_ATOMIC
2751         if (b->atomic_modeset)
2752                 return drm_pending_state_apply_atomic(pending_state,
2753                                                       DRM_STATE_APPLY_SYNC);
2754 #endif
2755
2756         if (b->state_invalid) {
2757                 /* If we need to reset all our state (e.g. because we've
2758                  * just started, or just been VT-switched in), explicitly
2759                  * disable all the CRTCs we aren't using. This also disables
2760                  * all connectors on these CRTCs, so we don't need to do that
2761                  * separately with the pre-atomic API. */
2762                 wl_array_for_each(unused, &b->unused_crtcs)
2763                         drmModeSetCrtc(b->drm.fd, *unused, 0, 0, 0, NULL, 0,
2764                                        NULL);
2765         }
2766
2767         wl_list_for_each_safe(output_state, tmp, &pending_state->output_list,
2768                               link) {
2769                 int ret;
2770
2771                 assert(output_state->dpms == WESTON_DPMS_OFF);
2772                 ret = drm_output_apply_state_legacy(output_state);
2773                 if (ret != 0) {
2774                         weston_log("Couldn't apply state for output %s\n",
2775                                    output_state->output->base.name);
2776                 }
2777         }
2778
2779         b->state_invalid = false;
2780
2781         assert(wl_list_empty(&pending_state->output_list));
2782
2783         drm_pending_state_free(pending_state);
2784
2785         return 0;
2786 }
2787
2788 static int
2789 drm_output_repaint(struct weston_output *output_base,
2790                    pixman_region32_t *damage,
2791                    void *repaint_data)
2792 {
2793         struct drm_pending_state *pending_state = repaint_data;
2794         struct drm_output *output = to_drm_output(output_base);
2795         struct drm_output_state *state = NULL;
2796         struct drm_plane_state *scanout_state;
2797
2798         if (output->disable_pending || output->destroy_pending)
2799                 goto err;
2800
2801         assert(!output->state_last);
2802
2803         /* If planes have been disabled in the core, we might not have
2804          * hit assign_planes at all, so might not have valid output state
2805          * here. */
2806         state = drm_pending_state_get_output(pending_state, output);
2807         if (!state)
2808                 state = drm_output_state_duplicate(output->state_cur,
2809                                                    pending_state,
2810                                                    DRM_OUTPUT_STATE_CLEAR_PLANES);
2811         state->dpms = WESTON_DPMS_ON;
2812
2813         drm_output_render(state, damage);
2814         scanout_state = drm_output_state_get_plane(state,
2815                                                    output->scanout_plane);
2816         if (!scanout_state || !scanout_state->fb)
2817                 goto err;
2818
2819         return 0;
2820
2821 err:
2822         drm_output_state_free(state);
2823         return -1;
2824 }
2825
2826 static void
2827 drm_output_start_repaint_loop(struct weston_output *output_base)
2828 {
2829         struct drm_output *output = to_drm_output(output_base);
2830         struct drm_pending_state *pending_state;
2831         struct drm_plane *scanout_plane = output->scanout_plane;
2832         struct drm_backend *backend =
2833                 to_drm_backend(output_base->compositor);
2834         struct timespec ts, tnow;
2835         struct timespec vbl2now;
2836         int64_t refresh_nsec;
2837         int ret;
2838         drmVBlank vbl = {
2839                 .request.type = DRM_VBLANK_RELATIVE,
2840                 .request.sequence = 0,
2841                 .request.signal = 0,
2842         };
2843
2844         if (output->disable_pending || output->destroy_pending)
2845                 return;
2846
2847         if (!output->scanout_plane->state_cur->fb) {
2848                 /* We can't page flip if there's no mode set */
2849                 goto finish_frame;
2850         }
2851
2852         /* Need to smash all state in from scratch; current timings might not
2853          * be what we want, page flip might not work, etc.
2854          */
2855         if (backend->state_invalid)
2856                 goto finish_frame;
2857
2858         assert(scanout_plane->state_cur->output == output);
2859
2860         /* Try to get current msc and timestamp via instant query */
2861         vbl.request.type |= drm_waitvblank_pipe(output);
2862         ret = drmWaitVBlank(backend->drm.fd, &vbl);
2863
2864         /* Error ret or zero timestamp means failure to get valid timestamp */
2865         if ((ret == 0) && (vbl.reply.tval_sec > 0 || vbl.reply.tval_usec > 0)) {
2866                 ts.tv_sec = vbl.reply.tval_sec;
2867                 ts.tv_nsec = vbl.reply.tval_usec * 1000;
2868
2869                 /* Valid timestamp for most recent vblank - not stale?
2870                  * Stale ts could happen on Linux 3.17+, so make sure it
2871                  * is not older than 1 refresh duration since now.
2872                  */
2873                 weston_compositor_read_presentation_clock(backend->compositor,
2874                                                           &tnow);
2875                 timespec_sub(&vbl2now, &tnow, &ts);
2876                 refresh_nsec =
2877                         millihz_to_nsec(output->base.current_mode->refresh);
2878                 if (timespec_to_nsec(&vbl2now) < refresh_nsec) {
2879                         drm_output_update_msc(output, vbl.reply.sequence);
2880                         weston_output_finish_frame(output_base, &ts,
2881                                                 WP_PRESENTATION_FEEDBACK_INVALID);
2882                         return;
2883                 }
2884         }
2885
2886         /* Immediate query didn't provide valid timestamp.
2887          * Use pageflip fallback.
2888          */
2889
2890         assert(!output->page_flip_pending);
2891         assert(!output->state_last);
2892
2893         pending_state = drm_pending_state_alloc(backend);
2894         drm_output_state_duplicate(output->state_cur, pending_state,
2895                                    DRM_OUTPUT_STATE_PRESERVE_PLANES);
2896
2897         ret = drm_pending_state_apply(pending_state);
2898         if (ret != 0) {
2899                 weston_log("applying repaint-start state failed: %m\n");
2900                 goto finish_frame;
2901         }
2902
2903         return;
2904
2905 finish_frame:
2906         /* if we cannot page-flip, immediately finish frame */
2907         weston_output_finish_frame(output_base, NULL,
2908                                    WP_PRESENTATION_FEEDBACK_INVALID);
2909 }
2910
2911 static void
2912 drm_output_update_msc(struct drm_output *output, unsigned int seq)
2913 {
2914         uint64_t msc_hi = output->base.msc >> 32;
2915
2916         if (seq < (output->base.msc & 0xffffffff))
2917                 msc_hi++;
2918
2919         output->base.msc = (msc_hi << 32) + seq;
2920 }
2921
2922 static void
2923 vblank_handler(int fd, unsigned int frame, unsigned int sec, unsigned int usec,
2924                void *data)
2925 {
2926         struct drm_plane_state *ps = (struct drm_plane_state *) data;
2927         struct drm_output_state *os = ps->output_state;
2928         struct drm_output *output = os->output;
2929         struct drm_backend *b = to_drm_backend(output->base.compositor);
2930         uint32_t flags = WP_PRESENTATION_FEEDBACK_KIND_HW_COMPLETION |
2931                          WP_PRESENTATION_FEEDBACK_KIND_HW_CLOCK;
2932
2933         assert(!b->atomic_modeset);
2934
2935         drm_output_update_msc(output, frame);
2936         output->vblank_pending--;
2937         assert(output->vblank_pending >= 0);
2938
2939         assert(ps->fb);
2940
2941         if (output->page_flip_pending || output->vblank_pending)
2942                 return;
2943
2944         drm_output_update_complete(output, flags, sec, usec);
2945 }
2946
2947 static void
2948 page_flip_handler(int fd, unsigned int frame,
2949                   unsigned int sec, unsigned int usec, void *data)
2950 {
2951         struct drm_output *output = data;
2952         struct drm_backend *b = to_drm_backend(output->base.compositor);
2953         uint32_t flags = WP_PRESENTATION_FEEDBACK_KIND_VSYNC |
2954                          WP_PRESENTATION_FEEDBACK_KIND_HW_COMPLETION |
2955                          WP_PRESENTATION_FEEDBACK_KIND_HW_CLOCK;
2956
2957         drm_output_update_msc(output, frame);
2958
2959         assert(!b->atomic_modeset);
2960         assert(output->page_flip_pending);
2961         output->page_flip_pending = 0;
2962
2963         if (output->vblank_pending)
2964                 return;
2965
2966         drm_output_update_complete(output, flags, sec, usec);
2967 }
2968
2969 /**
2970  * Begin a new repaint cycle
2971  *
2972  * Called by the core compositor at the beginning of a repaint cycle. Creates
2973  * a new pending_state structure to own any output state created by individual
2974  * output repaint functions until the repaint is flushed or cancelled.
2975  */
2976 static void *
2977 drm_repaint_begin(struct weston_compositor *compositor)
2978 {
2979         struct drm_backend *b = to_drm_backend(compositor);
2980         struct drm_pending_state *ret;
2981
2982         ret = drm_pending_state_alloc(b);
2983         b->repaint_data = ret;
2984
2985         return ret;
2986 }
2987
2988 /**
2989  * Flush a repaint set
2990  *
2991  * Called by the core compositor when a repaint cycle has been completed
2992  * and should be flushed. Frees the pending state, transitioning ownership
2993  * of the output state from the pending state, to the update itself. When
2994  * the update completes (see drm_output_update_complete), the output
2995  * state will be freed.
2996  */
2997 static void
2998 drm_repaint_flush(struct weston_compositor *compositor, void *repaint_data)
2999 {
3000         struct drm_backend *b = to_drm_backend(compositor);
3001         struct drm_pending_state *pending_state = repaint_data;
3002
3003         drm_pending_state_apply(pending_state);
3004         b->repaint_data = NULL;
3005 }
3006
3007 /**
3008  * Cancel a repaint set
3009  *
3010  * Called by the core compositor when a repaint has finished, so the data
3011  * held across the repaint cycle should be discarded.
3012  */
3013 static void
3014 drm_repaint_cancel(struct weston_compositor *compositor, void *repaint_data)
3015 {
3016         struct drm_backend *b = to_drm_backend(compositor);
3017         struct drm_pending_state *pending_state = repaint_data;
3018
3019         drm_pending_state_free(pending_state);
3020         b->repaint_data = NULL;
3021 }
3022
3023 #ifdef HAVE_DRM_ATOMIC
3024 static void
3025 atomic_flip_handler(int fd, unsigned int frame, unsigned int sec,
3026                     unsigned int usec, unsigned int crtc_id, void *data)
3027 {
3028         struct drm_backend *b = data;
3029         struct drm_output *output = drm_output_find_by_crtc(b, crtc_id);
3030         uint32_t flags = WP_PRESENTATION_FEEDBACK_KIND_VSYNC |
3031                          WP_PRESENTATION_FEEDBACK_KIND_HW_COMPLETION |
3032                          WP_PRESENTATION_FEEDBACK_KIND_HW_CLOCK;
3033
3034         /* During the initial modeset, we can disable CRTCs which we don't
3035          * actually handle during normal operation; this will give us events
3036          * for unknown outputs. Ignore them. */
3037         if (!output || !output->base.enabled)
3038                 return;
3039
3040         drm_output_update_msc(output, frame);
3041
3042         assert(b->atomic_modeset);
3043         assert(output->atomic_complete_pending);
3044         output->atomic_complete_pending = 0;
3045
3046         drm_output_update_complete(output, flags, sec, usec);
3047 }
3048 #endif
3049
3050 static struct drm_plane_state *
3051 drm_output_prepare_overlay_view(struct drm_output_state *output_state,
3052                                 struct weston_view *ev)
3053 {
3054         struct drm_output *output = output_state->output;
3055         struct weston_compositor *ec = output->base.compositor;
3056         struct drm_backend *b = to_drm_backend(ec);
3057         struct drm_plane *p;
3058         struct drm_plane_state *state = NULL;
3059         struct drm_fb *fb;
3060         unsigned int i;
3061
3062         assert(!b->sprites_are_broken);
3063
3064         fb = drm_fb_get_from_view(output_state, ev);
3065         if (!fb)
3066                 return NULL;
3067
3068         wl_list_for_each(p, &b->plane_list, link) {
3069                 if (p->type != WDRM_PLANE_TYPE_OVERLAY)
3070                         continue;
3071
3072                 if (!drm_plane_is_available(p, output))
3073                         continue;
3074
3075                 /* Check whether the format is supported */
3076                 for (i = 0; i < p->count_formats; i++) {
3077                         unsigned int j;
3078
3079                         if (p->formats[i].format != fb->format->format)
3080                                 continue;
3081
3082                         if (fb->modifier == DRM_FORMAT_MOD_INVALID)
3083                                 break;
3084
3085                         for (j = 0; j < p->formats[i].count_modifiers; j++) {
3086                                 if (p->formats[i].modifiers[j] == fb->modifier)
3087                                         break;
3088                         }
3089                         if (j != p->formats[i].count_modifiers)
3090                                 break;
3091                 }
3092                 if (i == p->count_formats)
3093                         continue;
3094
3095                 state = drm_output_state_get_plane(output_state, p);
3096                 if (state->fb) {
3097                         state = NULL;
3098                         continue;
3099                 }
3100
3101                 break;
3102         }
3103
3104         /* No sprites available */
3105         if (!state) {
3106                 drm_fb_unref(fb);
3107                 return NULL;
3108         }
3109
3110         state->fb = fb;
3111         state->ev = ev;
3112         state->output = output;
3113
3114         if (!drm_plane_state_coords_for_view(state, ev))
3115                 goto err;
3116
3117         if (state->src_w != state->dest_w << 16 ||
3118             state->src_h != state->dest_h << 16)
3119                 goto err;
3120
3121         return state;
3122
3123 err:
3124         drm_plane_state_put_back(state);
3125         return NULL;
3126 }
3127
3128 /**
3129  * Update the image for the current cursor surface
3130  *
3131  * @param plane_state DRM cursor plane state
3132  * @param ev Source view for cursor
3133  */
3134 static void
3135 cursor_bo_update(struct drm_plane_state *plane_state, struct weston_view *ev)
3136 {
3137         struct drm_backend *b = plane_state->plane->backend;
3138         struct gbm_bo *bo = plane_state->fb->bo;
3139         struct weston_buffer *buffer = ev->surface->buffer_ref.buffer;
3140         uint32_t buf[b->cursor_width * b->cursor_height];
3141         int32_t stride;
3142         uint8_t *s;
3143         int i;
3144
3145         assert(buffer && buffer->shm_buffer);
3146         assert(buffer->shm_buffer == wl_shm_buffer_get(buffer->resource));
3147         assert(buffer->width <= b->cursor_width);
3148         assert(buffer->height <= b->cursor_height);
3149
3150         memset(buf, 0, sizeof buf);
3151         stride = wl_shm_buffer_get_stride(buffer->shm_buffer);
3152         s = wl_shm_buffer_get_data(buffer->shm_buffer);
3153
3154         wl_shm_buffer_begin_access(buffer->shm_buffer);
3155         for (i = 0; i < buffer->height; i++)
3156                 memcpy(buf + i * b->cursor_width,
3157                        s + i * stride,
3158                        buffer->width * 4);
3159         wl_shm_buffer_end_access(buffer->shm_buffer);
3160
3161         if (gbm_bo_write(bo, buf, sizeof buf) < 0)
3162                 weston_log("failed update cursor: %m\n");
3163 }
3164
3165 static struct drm_plane_state *
3166 drm_output_prepare_cursor_view(struct drm_output_state *output_state,
3167                                struct weston_view *ev)
3168 {
3169         struct drm_output *output = output_state->output;
3170         struct drm_backend *b = to_drm_backend(output->base.compositor);
3171         struct drm_plane *plane = output->cursor_plane;
3172         struct drm_plane_state *plane_state;
3173         struct wl_shm_buffer *shmbuf;
3174         bool needs_update = false;
3175
3176         assert(!b->cursors_are_broken);
3177
3178         if (!plane)
3179                 return NULL;
3180
3181         if (!plane->state_cur->complete)
3182                 return NULL;
3183
3184         if (plane->state_cur->output && plane->state_cur->output != output)
3185                 return NULL;
3186
3187         /* We use GBM to import SHM buffers. */
3188         if (b->gbm == NULL)
3189                 return NULL;
3190
3191         if (ev->surface->buffer_ref.buffer == NULL)
3192                 return NULL;
3193         shmbuf = wl_shm_buffer_get(ev->surface->buffer_ref.buffer->resource);
3194         if (!shmbuf)
3195                 return NULL;
3196         if (wl_shm_buffer_get_format(shmbuf) != WL_SHM_FORMAT_ARGB8888)
3197                 return NULL;
3198
3199         plane_state =
3200                 drm_output_state_get_plane(output_state, output->cursor_plane);
3201
3202         if (plane_state && plane_state->fb)
3203                 return NULL;
3204
3205         /* We can't scale with the legacy API, and we don't try to account for
3206          * simple cropping/translation in cursor_bo_update. */
3207         plane_state->output = output;
3208         if (!drm_plane_state_coords_for_view(plane_state, ev))
3209                 goto err;
3210
3211         if (plane_state->src_x != 0 || plane_state->src_y != 0 ||
3212             plane_state->src_w > (unsigned) b->cursor_width << 16 ||
3213             plane_state->src_h > (unsigned) b->cursor_height << 16 ||
3214             plane_state->src_w != plane_state->dest_w << 16 ||
3215             plane_state->src_h != plane_state->dest_h << 16)
3216                 goto err;
3217
3218         /* Since we're setting plane state up front, we need to work out
3219          * whether or not we need to upload a new cursor. We can't use the
3220          * plane damage, since the planes haven't actually been calculated
3221          * yet: instead try to figure it out directly. KMS cursor planes are
3222          * pretty unique here, in that they lie partway between a Weston plane
3223          * (direct scanout) and a renderer. */
3224         if (ev != output->cursor_view ||
3225             pixman_region32_not_empty(&ev->surface->damage)) {
3226                 output->current_cursor++;
3227                 output->current_cursor =
3228                         output->current_cursor %
3229                                 ARRAY_LENGTH(output->gbm_cursor_fb);
3230                 needs_update = true;
3231         }
3232
3233         output->cursor_view = ev;
3234         plane_state->ev = ev;
3235
3236         plane_state->fb =
3237                 drm_fb_ref(output->gbm_cursor_fb[output->current_cursor]);
3238
3239         if (needs_update)
3240                 cursor_bo_update(plane_state, ev);
3241
3242         /* The cursor API is somewhat special: in cursor_bo_update(), we upload
3243          * a buffer which is always cursor_width x cursor_height, even if the
3244          * surface we want to promote is actually smaller than this. Manually
3245          * mangle the plane state to deal with this. */
3246         plane_state->src_w = b->cursor_width << 16;
3247         plane_state->src_h = b->cursor_height << 16;
3248         plane_state->dest_w = b->cursor_width;
3249         plane_state->dest_h = b->cursor_height;
3250
3251         return plane_state;
3252
3253 err:
3254         drm_plane_state_put_back(plane_state);
3255         return NULL;
3256 }
3257
3258 static void
3259 drm_output_set_cursor(struct drm_output_state *output_state)
3260 {
3261         struct drm_output *output = output_state->output;
3262         struct drm_backend *b = to_drm_backend(output->base.compositor);
3263         struct drm_plane *plane = output->cursor_plane;
3264         struct drm_plane_state *state;
3265         EGLint handle;
3266         struct gbm_bo *bo;
3267
3268         if (!plane)
3269                 return;
3270
3271         state = drm_output_state_get_existing_plane(output_state, plane);
3272         if (!state)
3273                 return;
3274
3275         if (!state->fb) {
3276                 pixman_region32_fini(&plane->base.damage);
3277                 pixman_region32_init(&plane->base.damage);
3278                 drmModeSetCursor(b->drm.fd, output->crtc_id, 0, 0, 0);
3279                 return;
3280         }
3281
3282         assert(state->fb == output->gbm_cursor_fb[output->current_cursor]);
3283         assert(!plane->state_cur->output || plane->state_cur->output == output);
3284
3285         if (plane->state_cur->fb != state->fb) {
3286                 bo = state->fb->bo;
3287                 handle = gbm_bo_get_handle(bo).s32;
3288                 if (drmModeSetCursor(b->drm.fd, output->crtc_id, handle,
3289                                      b->cursor_width, b->cursor_height)) {
3290                         weston_log("failed to set cursor: %m\n");
3291                         goto err;
3292                 }
3293         }
3294
3295         pixman_region32_fini(&plane->base.damage);
3296         pixman_region32_init(&plane->base.damage);
3297
3298         if (drmModeMoveCursor(b->drm.fd, output->crtc_id,
3299                               state->dest_x, state->dest_y)) {
3300                 weston_log("failed to move cursor: %m\n");
3301                 goto err;
3302         }
3303
3304         return;
3305
3306 err:
3307         b->cursors_are_broken = 1;
3308         drmModeSetCursor(b->drm.fd, output->crtc_id, 0, 0, 0);
3309 }
3310
3311 static struct drm_output_state *
3312 drm_output_propose_state(struct weston_output *output_base,
3313                          struct drm_pending_state *pending_state,
3314                          enum drm_output_propose_state_mode mode)
3315 {
3316         struct drm_output *output = to_drm_output(output_base);
3317         struct drm_backend *b = to_drm_backend(output->base.compositor);
3318         struct drm_output_state *state;
3319         struct weston_view *ev;
3320         pixman_region32_t surface_overlap, renderer_region, occluded_region;
3321         bool planes_ok = (mode != DRM_OUTPUT_PROPOSE_STATE_RENDERER_ONLY);
3322         bool renderer_ok = (mode != DRM_OUTPUT_PROPOSE_STATE_PLANES_ONLY);
3323         int ret;
3324
3325         assert(!output->state_last);
3326         state = drm_output_state_duplicate(output->state_cur,
3327                                            pending_state,
3328                                            DRM_OUTPUT_STATE_CLEAR_PLANES);
3329
3330         /*
3331          * Find a surface for each sprite in the output using some heuristics:
3332          * 1) size
3333          * 2) frequency of update
3334          * 3) opacity (though some hw might support alpha blending)
3335          * 4) clipping (this can be fixed with color keys)
3336          *
3337          * The idea is to save on blitting since this should save power.
3338          * If we can get a large video surface on the sprite for example,
3339          * the main display surface may not need to update at all, and
3340          * the client buffer can be used directly for the sprite surface
3341          * as we do for flipping full screen surfaces.
3342          */
3343         pixman_region32_init(&renderer_region);
3344         pixman_region32_init(&occluded_region);
3345
3346         wl_list_for_each(ev, &output_base->compositor->view_list, link) {
3347                 struct drm_plane_state *ps = NULL;
3348                 bool force_renderer = false;
3349                 pixman_region32_t clipped_view;
3350                 bool occluded = false;
3351
3352                 /* If this view doesn't touch our output at all, there's no
3353                  * reason to do anything with it. */
3354                 if (!(ev->output_mask & (1u << output->base.id)))
3355                         continue;
3356
3357                 /* We only assign planes to views which are exclusively present
3358                  * on our output. */
3359                 if (ev->output_mask != (1u << output->base.id))
3360                         force_renderer = true;
3361
3362                 if (!ev->surface->buffer_ref.buffer)
3363                         force_renderer = true;
3364
3365                 /* Ignore views we know to be totally occluded. */
3366                 pixman_region32_init(&clipped_view);
3367                 pixman_region32_intersect(&clipped_view,
3368                                           &ev->transform.boundingbox,
3369                                           &output->base.region);
3370
3371                 pixman_region32_init(&surface_overlap);
3372                 pixman_region32_subtract(&surface_overlap, &clipped_view,
3373                                          &occluded_region);
3374                 occluded = !pixman_region32_not_empty(&surface_overlap);
3375                 if (occluded) {
3376                         pixman_region32_fini(&surface_overlap);
3377                         pixman_region32_fini(&clipped_view);
3378                         continue;
3379                 }
3380
3381                 /* Since we process views from top to bottom, we know that if
3382                  * the view intersects the calculated renderer region, it must
3383                  * be part of, or occluded by, it, and cannot go on a plane. */
3384                 pixman_region32_intersect(&surface_overlap, &renderer_region,
3385                                           &clipped_view);
3386                 if (pixman_region32_not_empty(&surface_overlap))
3387                         force_renderer = true;
3388
3389                 /* We do not control the stacking order of overlay planes;
3390                  * the scanout plane is strictly stacked bottom and the cursor
3391                  * plane top, but the ordering of overlay planes with respect
3392                  * to each other is undefined. Make sure we do not have two
3393                  * planes overlapping each other. */
3394                 pixman_region32_intersect(&surface_overlap, &occluded_region,
3395                                           &clipped_view);
3396                 if (pixman_region32_not_empty(&surface_overlap))
3397                         force_renderer = true;
3398                 pixman_region32_fini(&surface_overlap);
3399
3400                 /* The cursor plane is 'special' in the sense that we can still
3401                  * place it in the legacy API, and we gate that with a separate
3402                  * cursors_are_broken flag. */
3403                 if (!force_renderer && !b->cursors_are_broken)
3404                         ps = drm_output_prepare_cursor_view(state, ev);
3405
3406                 /* If sprites are disabled or the view is not fully opaque, we
3407                  * must put the view into the renderer - unless it has already
3408                  * been placed in the cursor plane, which can handle alpha. */
3409                 if (!ps && !planes_ok)
3410                         force_renderer = true;
3411                 if (!ps && !drm_view_is_opaque(ev))
3412                         force_renderer = true;
3413
3414                 if (!ps && !force_renderer)
3415                         ps = drm_output_prepare_scanout_view(state, ev);
3416                 if (!ps && !force_renderer)
3417                         ps = drm_output_prepare_overlay_view(state, ev);
3418
3419                 if (ps) {
3420                         /* If we have been assigned to an overlay or scanout
3421                          * plane, add this area to the occluded region, so
3422                          * other views are known to be behind it. The cursor
3423                          * plane, however, is special, in that it blends with
3424                          * the content underneath it: the area should neither
3425                          * be added to the renderer region nor the occluded
3426                          * region. */
3427                         if (ps->plane->type != WDRM_PLANE_TYPE_CURSOR) {
3428                                 pixman_region32_union(&occluded_region,
3429                                                       &occluded_region,
3430                                                       &clipped_view);
3431                                 pixman_region32_fini(&clipped_view);
3432                         }
3433                         continue;
3434                 }
3435
3436                 /* We have been assigned to the primary (renderer) plane:
3437                  * check if this is OK, and add ourselves to the renderer
3438                  * region if so. */
3439                 if (!renderer_ok) {
3440                         pixman_region32_fini(&clipped_view);
3441                         goto err_region;
3442                 }
3443
3444                 pixman_region32_union(&renderer_region,
3445                                       &renderer_region,
3446                                       &clipped_view);
3447                 pixman_region32_fini(&clipped_view);
3448         }
3449         pixman_region32_fini(&renderer_region);
3450         pixman_region32_fini(&occluded_region);
3451
3452         /* Check to see if this state will actually work. */
3453         ret = drm_pending_state_test(state->pending_state);
3454         if (ret != 0)
3455                 goto err;
3456
3457         return state;
3458
3459 err_region:
3460         pixman_region32_fini(&renderer_region);
3461         pixman_region32_fini(&occluded_region);
3462 err:
3463         drm_output_state_free(state);
3464         return NULL;
3465 }
3466
3467 static void
3468 drm_assign_planes(struct weston_output *output_base, void *repaint_data)
3469 {
3470         struct drm_backend *b = to_drm_backend(output_base->compositor);
3471         struct drm_pending_state *pending_state = repaint_data;
3472         struct drm_output *output = to_drm_output(output_base);
3473         struct drm_output_state *state = NULL;
3474         struct drm_plane_state *plane_state;
3475         struct weston_view *ev;
3476         struct weston_plane *primary = &output_base->compositor->primary_plane;
3477
3478         if (!b->sprites_are_broken) {
3479                 state = drm_output_propose_state(output_base, pending_state,
3480                                                  DRM_OUTPUT_PROPOSE_STATE_PLANES_ONLY);
3481                 if (!state)
3482                         state = drm_output_propose_state(output_base, pending_state,
3483                                                          DRM_OUTPUT_PROPOSE_STATE_MIXED);
3484         }
3485
3486         if (!state)
3487                 state = drm_output_propose_state(output_base, pending_state,
3488                                                  DRM_OUTPUT_PROPOSE_STATE_RENDERER_ONLY);
3489
3490         assert(state);
3491
3492         wl_list_for_each(ev, &output_base->compositor->view_list, link) {
3493                 struct drm_plane *target_plane = NULL;
3494
3495                 /* If this view doesn't touch our output at all, there's no
3496                  * reason to do anything with it. */
3497                 if (!(ev->output_mask & (1u << output->base.id)))
3498                         continue;
3499
3500                 /* Test whether this buffer can ever go into a plane:
3501                  * non-shm, or small enough to be a cursor.
3502                  *
3503                  * Also, keep a reference when using the pixman renderer.
3504                  * That makes it possible to do a seamless switch to the GL
3505                  * renderer and since the pixman renderer keeps a reference
3506                  * to the buffer anyway, there is no side effects.
3507                  */
3508                 if (b->use_pixman ||
3509                     (ev->surface->buffer_ref.buffer &&
3510                     (!wl_shm_buffer_get(ev->surface->buffer_ref.buffer->resource) ||
3511                      (ev->surface->width <= b->cursor_width &&
3512                       ev->surface->height <= b->cursor_height))))
3513                         ev->surface->keep_buffer = true;
3514                 else
3515                         ev->surface->keep_buffer = false;
3516
3517                 /* This is a bit unpleasant, but lacking a temporary place to
3518                  * hang a plane off the view, we have to do a nested walk.
3519                  * Our first-order iteration has to be planes rather than
3520                  * views, because otherwise we won't reset views which were
3521                  * previously on planes to being on the primary plane. */
3522                 wl_list_for_each(plane_state, &state->plane_list, link) {
3523                         if (plane_state->ev == ev) {
3524                                 plane_state->ev = NULL;
3525                                 target_plane = plane_state->plane;
3526                                 break;
3527                         }
3528                 }
3529
3530                 if (target_plane)
3531                         weston_view_move_to_plane(ev, &target_plane->base);
3532                 else
3533                         weston_view_move_to_plane(ev, primary);
3534
3535                 if (!target_plane ||
3536                     target_plane->type == WDRM_PLANE_TYPE_CURSOR) {
3537                         /* cursor plane & renderer involve a copy */
3538                         ev->psf_flags = 0;
3539                 } else {
3540                         /* All other planes are a direct scanout of a
3541                          * single client buffer.
3542                          */
3543                         ev->psf_flags = WP_PRESENTATION_FEEDBACK_KIND_ZERO_COPY;
3544                 }
3545         }
3546
3547         /* We rely on output->cursor_view being both an accurate reflection of
3548          * the cursor plane's state, but also being maintained across repaints
3549          * to avoid unnecessary damage uploads, per the comment in
3550          * drm_output_prepare_cursor_view. In the event that we go from having
3551          * a cursor view to not having a cursor view, we need to clear it. */
3552         if (output->cursor_view) {
3553                 plane_state =
3554                         drm_output_state_get_existing_plane(state,
3555                                                             output->cursor_plane);
3556                 if (!plane_state || !plane_state->fb)
3557                         output->cursor_view = NULL;
3558         }
3559 }
3560
3561 /*
3562  * Get the aspect-ratio from drmModeModeInfo mode flags.
3563  *
3564  * @param drm_mode_flags- flags from drmModeModeInfo structure.
3565  * @returns aspect-ratio as encoded in enum 'weston_mode_aspect_ratio'.
3566  */
3567 static enum weston_mode_aspect_ratio
3568 drm_to_weston_mode_aspect_ratio(uint32_t drm_mode_flags)
3569 {
3570         return (drm_mode_flags & DRM_MODE_FLAG_PIC_AR_MASK) >>
3571                 DRM_MODE_FLAG_PIC_AR_BITS_POS;
3572 }
3573
3574 static const char *
3575 aspect_ratio_to_string(enum weston_mode_aspect_ratio ratio)
3576 {
3577         if (ratio < 0 || ratio >= ARRAY_LENGTH(aspect_ratio_as_string) ||
3578             !aspect_ratio_as_string[ratio])
3579                 return " (unknown aspect ratio)";
3580
3581         return aspect_ratio_as_string[ratio];
3582 }
3583
3584 /**
3585  * Find the closest-matching mode for a given target
3586  *
3587  * Given a target mode, find the most suitable mode amongst the output's
3588  * current mode list to use, preferring the current mode if possible, to
3589  * avoid an expensive mode switch.
3590  *
3591  * @param output DRM output
3592  * @param target_mode Mode to attempt to match
3593  * @returns Pointer to a mode from the output's mode list
3594  */
3595 static struct drm_mode *
3596 choose_mode (struct drm_output *output, struct weston_mode *target_mode)
3597 {
3598         struct drm_mode *tmp_mode = NULL, *mode_fall_back = NULL, *mode;
3599         enum weston_mode_aspect_ratio src_aspect = WESTON_MODE_PIC_AR_NONE;
3600         enum weston_mode_aspect_ratio target_aspect = WESTON_MODE_PIC_AR_NONE;
3601         struct drm_backend *b;
3602
3603         b = to_drm_backend(output->base.compositor);
3604         target_aspect = target_mode->aspect_ratio;
3605         src_aspect = output->base.current_mode->aspect_ratio;
3606         if (output->base.current_mode->width == target_mode->width &&
3607             output->base.current_mode->height == target_mode->height &&
3608             (output->base.current_mode->refresh == target_mode->refresh ||
3609              target_mode->refresh == 0)) {
3610                 if (!b->aspect_ratio_supported || src_aspect == target_aspect)
3611                         return to_drm_mode(output->base.current_mode);
3612         }
3613
3614         wl_list_for_each(mode, &output->base.mode_list, base.link) {
3615
3616                 src_aspect = mode->base.aspect_ratio;
3617                 if (mode->mode_info.hdisplay == target_mode->width &&
3618                     mode->mode_info.vdisplay == target_mode->height) {
3619                         if (mode->base.refresh == target_mode->refresh ||
3620                             target_mode->refresh == 0) {
3621                                 if (!b->aspect_ratio_supported ||
3622                                     src_aspect == target_aspect)
3623                                         return mode;
3624                                 else if (!mode_fall_back)
3625                                         mode_fall_back = mode;
3626                         } else if (!tmp_mode) {
3627                                 tmp_mode = mode;
3628                         }
3629                 }
3630         }
3631
3632         if (mode_fall_back)
3633                 return mode_fall_back;
3634
3635         return tmp_mode;
3636 }
3637
3638 static int
3639 drm_output_init_egl(struct drm_output *output, struct drm_backend *b);
3640 static void
3641 drm_output_fini_egl(struct drm_output *output);
3642 static int
3643 drm_output_init_pixman(struct drm_output *output, struct drm_backend *b);
3644 static void
3645 drm_output_fini_pixman(struct drm_output *output);
3646
3647 static int
3648 drm_output_switch_mode(struct weston_output *output_base, struct weston_mode *mode)
3649 {
3650         struct drm_output *output = to_drm_output(output_base);
3651         struct drm_backend *b = to_drm_backend(output_base->compositor);
3652         struct drm_mode *drm_mode = choose_mode(output, mode);
3653
3654         if (!drm_mode) {
3655                 weston_log("%s: invalid resolution %dx%d\n",
3656                            output_base->name, mode->width, mode->height);
3657                 return -1;
3658         }
3659
3660         if (&drm_mode->base == output->base.current_mode)
3661                 return 0;
3662
3663         output->base.current_mode->flags = 0;
3664
3665         output->base.current_mode = &drm_mode->base;
3666         output->base.current_mode->flags =
3667                 WL_OUTPUT_MODE_CURRENT | WL_OUTPUT_MODE_PREFERRED;
3668
3669         /* XXX: This drops our current buffer too early, before we've started
3670          *      displaying it. Ideally this should be much more atomic and
3671          *      integrated with a full repaint cycle, rather than doing a
3672          *      sledgehammer modeswitch first, and only later showing new
3673          *      content.
3674          */
3675         b->state_invalid = true;
3676
3677         if (b->use_pixman) {
3678                 drm_output_fini_pixman(output);
3679                 if (drm_output_init_pixman(output, b) < 0) {
3680                         weston_log("failed to init output pixman state with "
3681                                    "new mode\n");
3682                         return -1;
3683                 }
3684         } else {
3685                 drm_output_fini_egl(output);
3686                 if (drm_output_init_egl(output, b) < 0) {
3687                         weston_log("failed to init output egl state with "
3688                                    "new mode");
3689                         return -1;
3690                 }
3691         }
3692
3693         return 0;
3694 }
3695
3696 static int
3697 on_drm_input(int fd, uint32_t mask, void *data)
3698 {
3699 #ifdef HAVE_DRM_ATOMIC
3700         struct drm_backend *b = data;
3701 #endif
3702         drmEventContext evctx;
3703
3704         memset(&evctx, 0, sizeof evctx);
3705 #ifndef HAVE_DRM_ATOMIC
3706         evctx.version = 2;
3707 #else
3708         evctx.version = 3;
3709         if (b->atomic_modeset)
3710                 evctx.page_flip_handler2 = atomic_flip_handler;
3711         else
3712 #endif
3713                 evctx.page_flip_handler = page_flip_handler;
3714         evctx.vblank_handler = vblank_handler;
3715         drmHandleEvent(fd, &evctx);
3716
3717         return 1;
3718 }
3719
3720 static int
3721 init_kms_caps(struct drm_backend *b)
3722 {
3723         uint64_t cap;
3724         int ret;
3725         clockid_t clk_id;
3726
3727         weston_log("using %s\n", b->drm.filename);
3728
3729         ret = drmGetCap(b->drm.fd, DRM_CAP_TIMESTAMP_MONOTONIC, &cap);
3730         if (ret == 0 && cap == 1)
3731                 clk_id = CLOCK_MONOTONIC;
3732         else
3733                 clk_id = CLOCK_REALTIME;
3734
3735         if (weston_compositor_set_presentation_clock(b->compositor, clk_id) < 0) {
3736                 weston_log("Error: failed to set presentation clock %d.\n",
3737                            clk_id);
3738                 return -1;
3739         }
3740
3741         ret = drmGetCap(b->drm.fd, DRM_CAP_CURSOR_WIDTH, &cap);
3742         if (ret == 0)
3743                 b->cursor_width = cap;
3744         else
3745                 b->cursor_width = 64;
3746
3747         ret = drmGetCap(b->drm.fd, DRM_CAP_CURSOR_HEIGHT, &cap);
3748         if (ret == 0)
3749                 b->cursor_height = cap;
3750         else
3751                 b->cursor_height = 64;
3752
3753         if (!getenv("WESTON_DISABLE_UNIVERSAL_PLANES")) {
3754                 ret = drmSetClientCap(b->drm.fd, DRM_CLIENT_CAP_UNIVERSAL_PLANES, 1);
3755                 b->universal_planes = (ret == 0);
3756         }
3757         weston_log("DRM: %s universal planes\n",
3758                    b->universal_planes ? "supports" : "does not support");
3759
3760 #ifdef HAVE_DRM_ATOMIC
3761         if (b->universal_planes && !getenv("WESTON_DISABLE_ATOMIC")) {
3762                 ret = drmGetCap(b->drm.fd, DRM_CAP_CRTC_IN_VBLANK_EVENT, &cap);
3763                 if (ret != 0)
3764                         cap = 0;
3765                 ret = drmSetClientCap(b->drm.fd, DRM_CLIENT_CAP_ATOMIC, 1);
3766                 b->atomic_modeset = ((ret == 0) && (cap == 1));
3767         }
3768 #endif
3769         weston_log("DRM: %s atomic modesetting\n",
3770                    b->atomic_modeset ? "supports" : "does not support");
3771
3772         ret = drmSetClientCap(b->drm.fd, DRM_CLIENT_CAP_ASPECT_RATIO, 1);
3773         b->aspect_ratio_supported = (ret == 0);
3774         weston_log("DRM: %s picture aspect ratio\n",
3775                    b->aspect_ratio_supported ? "supports" : "does not support");
3776
3777         return 0;
3778 }
3779
3780 static struct gbm_device *
3781 create_gbm_device(int fd)
3782 {
3783         struct gbm_device *gbm;
3784
3785         gl_renderer = weston_load_module("gl-renderer.so",
3786                                          "gl_renderer_interface");
3787         if (!gl_renderer)
3788                 return NULL;
3789
3790         /* GBM will load a dri driver, but even though they need symbols from
3791          * libglapi, in some version of Mesa they are not linked to it. Since
3792          * only the gl-renderer module links to it, the call above won't make
3793          * these symbols globally available, and loading the DRI driver fails.
3794          * Workaround this by dlopen()'ing libglapi with RTLD_GLOBAL. */
3795         dlopen("libglapi.so.0", RTLD_LAZY | RTLD_GLOBAL);
3796
3797         gbm = gbm_create_device(fd);
3798
3799         return gbm;
3800 }
3801
3802 /* When initializing EGL, if the preferred buffer format isn't available
3803  * we may be able to substitute an ARGB format for an XRGB one.
3804  *
3805  * This returns 0 if substitution isn't possible, but 0 might be a
3806  * legitimate format for other EGL platforms, so the caller is
3807  * responsible for checking for 0 before calling gl_renderer->create().
3808  *
3809  * This works around https://bugs.freedesktop.org/show_bug.cgi?id=89689
3810  * but it's entirely possible we'll see this again on other implementations.
3811  */
3812 static int
3813 fallback_format_for(uint32_t format)
3814 {
3815         switch (format) {
3816         case GBM_FORMAT_XRGB8888:
3817                 return GBM_FORMAT_ARGB8888;
3818         case GBM_FORMAT_XRGB2101010:
3819                 return GBM_FORMAT_ARGB2101010;
3820         default:
3821                 return 0;
3822         }
3823 }
3824
3825 static int
3826 drm_backend_create_gl_renderer(struct drm_backend *b)
3827 {
3828         EGLint format[3] = {
3829                 b->gbm_format,
3830                 fallback_format_for(b->gbm_format),
3831                 0,
3832         };
3833         int n_formats = 2;
3834
3835         if (format[1])
3836                 n_formats = 3;
3837         if (gl_renderer->display_create(b->compositor,
3838                                         EGL_PLATFORM_GBM_KHR,
3839                                         (void *)b->gbm,
3840                                         NULL,
3841                                         gl_renderer->opaque_attribs,
3842                                         format,
3843                                         n_formats) < 0) {
3844                 return -1;
3845         }
3846
3847         return 0;
3848 }
3849
3850 static int
3851 init_egl(struct drm_backend *b)
3852 {
3853         b->gbm = create_gbm_device(b->drm.fd);
3854
3855         if (!b->gbm)
3856                 return -1;
3857
3858         if (drm_backend_create_gl_renderer(b) < 0) {
3859                 gbm_device_destroy(b->gbm);
3860                 return -1;
3861         }
3862
3863         return 0;
3864 }
3865
3866 static int
3867 init_pixman(struct drm_backend *b)
3868 {
3869         return pixman_renderer_init(b->compositor);
3870 }
3871
3872 #ifdef HAVE_DRM_FORMATS_BLOB
3873 static inline uint32_t *
3874 formats_ptr(struct drm_format_modifier_blob *blob)
3875 {
3876         return (uint32_t *)(((char *)blob) + blob->formats_offset);
3877 }
3878
3879 static inline struct drm_format_modifier *
3880 modifiers_ptr(struct drm_format_modifier_blob *blob)
3881 {
3882         return (struct drm_format_modifier *)
3883                 (((char *)blob) + blob->modifiers_offset);
3884 }
3885 #endif
3886
3887 /**
3888  * Populates the plane's formats array, using either the IN_FORMATS blob
3889  * property (if available), or the plane's format list if not.
3890  */
3891 static int
3892 drm_plane_populate_formats(struct drm_plane *plane, const drmModePlane *kplane,
3893                            const drmModeObjectProperties *props)
3894 {
3895         unsigned i;
3896 #ifdef HAVE_DRM_FORMATS_BLOB
3897         drmModePropertyBlobRes *blob;
3898         struct drm_format_modifier_blob *fmt_mod_blob;
3899         struct drm_format_modifier *blob_modifiers;
3900         uint32_t *blob_formats;
3901         uint32_t blob_id;
3902
3903         blob_id = drm_property_get_value(&plane->props[WDRM_PLANE_IN_FORMATS],
3904                                          props,
3905                                          0);
3906         if (blob_id == 0)
3907                 goto fallback;
3908
3909         blob = drmModeGetPropertyBlob(plane->backend->drm.fd, blob_id);
3910         if (!blob)
3911                 goto fallback;
3912
3913         fmt_mod_blob = blob->data;
3914         blob_formats = formats_ptr(fmt_mod_blob);
3915         blob_modifiers = modifiers_ptr(fmt_mod_blob);
3916
3917         if (plane->count_formats != fmt_mod_blob->count_formats) {
3918                 weston_log("DRM backend: format count differs between "
3919                            "plane (%d) and IN_FORMATS (%d)\n",
3920                            plane->count_formats,
3921                            fmt_mod_blob->count_formats);
3922                 weston_log("This represents a kernel bug; Weston is "
3923                            "unable to continue.\n");
3924                 abort();
3925         }
3926
3927         for (i = 0; i < fmt_mod_blob->count_formats; i++) {
3928                 uint32_t count_modifiers = 0;
3929                 uint64_t *modifiers = NULL;
3930                 unsigned j;
3931
3932                 for (j = 0; j < fmt_mod_blob->count_modifiers; j++) {
3933                         struct drm_format_modifier *mod = &blob_modifiers[j];
3934
3935                         if ((i < mod->offset) || (i > mod->offset + 63))
3936                                 continue;
3937                         if (!(mod->formats & (1 << (i - mod->offset))))
3938                                 continue;
3939
3940                         modifiers = realloc(modifiers,
3941                                             (count_modifiers + 1) *
3942                                              sizeof(modifiers[0]));
3943                         assert(modifiers);
3944                         modifiers[count_modifiers++] = mod->modifier;
3945                 }
3946
3947                 plane->formats[i].format = blob_formats[i];
3948                 plane->formats[i].modifiers = modifiers;
3949                 plane->formats[i].count_modifiers = count_modifiers;
3950         }
3951
3952         drmModeFreePropertyBlob(blob);
3953
3954         return 0;
3955
3956 fallback:
3957 #endif
3958         /* No IN_FORMATS blob available, so just use the old. */
3959         assert(plane->count_formats == kplane->count_formats);
3960         for (i = 0; i < kplane->count_formats; i++)
3961                 plane->formats[i].format = kplane->formats[i];
3962
3963         return 0;
3964 }
3965
3966 /**
3967  * Create a drm_plane for a hardware plane
3968  *
3969  * Creates one drm_plane structure for a hardware plane, and initialises its
3970  * properties and formats.
3971  *
3972  * In the absence of universal plane support, where KMS does not explicitly
3973  * expose the primary and cursor planes to userspace, this may also create
3974  * an 'internal' plane for internal management.
3975  *
3976  * This function does not add the plane to the list of usable planes in Weston
3977  * itself; the caller is responsible for this.
3978  *
3979  * Call drm_plane_destroy to clean up the plane.
3980  *
3981  * @sa drm_output_find_special_plane
3982  * @param b DRM compositor backend
3983  * @param kplane DRM plane to create, or NULL if creating internal plane
3984  * @param output Output to create internal plane for, or NULL
3985  * @param type Type to use when creating internal plane, or invalid
3986  * @param format Format to use for internal planes, or 0
3987  */
3988 static struct drm_plane *
3989 drm_plane_create(struct drm_backend *b, const drmModePlane *kplane,
3990                  struct drm_output *output, enum wdrm_plane_type type,
3991                  uint32_t format)
3992 {
3993         struct drm_plane *plane;
3994         drmModeObjectProperties *props;
3995         uint32_t num_formats = (kplane) ? kplane->count_formats : 1;
3996
3997         plane = zalloc(sizeof(*plane) +
3998                        (sizeof(plane->formats[0]) * num_formats));
3999         if (!plane) {
4000                 weston_log("%s: out of memory\n", __func__);
4001                 return NULL;
4002         }
4003
4004         plane->backend = b;
4005         plane->count_formats = num_formats;
4006         plane->state_cur = drm_plane_state_alloc(NULL, plane);
4007         plane->state_cur->complete = true;
4008
4009         if (kplane) {
4010                 plane->possible_crtcs = kplane->possible_crtcs;
4011                 plane->plane_id = kplane->plane_id;
4012
4013                 props = drmModeObjectGetProperties(b->drm.fd, kplane->plane_id,
4014                                                    DRM_MODE_OBJECT_PLANE);
4015                 if (!props) {
4016                         weston_log("couldn't get plane properties\n");
4017                         goto err;
4018                 }
4019                 drm_property_info_populate(b, plane_props, plane->props,
4020                                            WDRM_PLANE__COUNT, props);
4021                 plane->type =
4022                         drm_property_get_value(&plane->props[WDRM_PLANE_TYPE],
4023                                                props,
4024                                                WDRM_PLANE_TYPE__COUNT);
4025
4026                 if (drm_plane_populate_formats(plane, kplane, props) < 0) {
4027                         drmModeFreeObjectProperties(props);
4028                         goto err;
4029                 }
4030
4031                 drmModeFreeObjectProperties(props);
4032         }
4033         else {
4034                 plane->possible_crtcs = (1 << output->pipe);
4035                 plane->plane_id = 0;
4036                 plane->count_formats = 1;
4037                 plane->formats[0].format = format;
4038                 plane->type = type;
4039         }
4040
4041         if (plane->type == WDRM_PLANE_TYPE__COUNT)
4042                 goto err_props;
4043
4044         /* With universal planes, everything is a DRM plane; without
4045          * universal planes, the only DRM planes are overlay planes.
4046          * Everything else is a fake plane. */
4047         if (b->universal_planes) {
4048                 assert(kplane);
4049         } else {
4050                 if (kplane)
4051                         assert(plane->type == WDRM_PLANE_TYPE_OVERLAY);
4052                 else
4053                         assert(plane->type != WDRM_PLANE_TYPE_OVERLAY &&
4054                                output);
4055         }
4056
4057         weston_plane_init(&plane->base, b->compositor, 0, 0);
4058         wl_list_insert(&b->plane_list, &plane->link);
4059
4060         return plane;
4061
4062 err_props:
4063         drm_property_info_free(plane->props, WDRM_PLANE__COUNT);
4064 err:
4065         drm_plane_state_free(plane->state_cur, true);
4066         free(plane);
4067         return NULL;
4068 }
4069
4070 /**
4071  * Find, or create, a special-purpose plane
4072  *
4073  * Primary and cursor planes are a special case, in that before universal
4074  * planes, they are driven by non-plane API calls. Without universal plane
4075  * support, the only way to configure a primary plane is via drmModeSetCrtc,
4076  * and the only way to configure a cursor plane is drmModeSetCursor2.
4077  *
4078  * Although they may actually be regular planes in the hardware, without
4079  * universal plane support, these planes are not actually exposed to
4080  * userspace in the regular plane list.
4081  *
4082  * However, for ease of internal tracking, we want to manage all planes
4083  * through the same drm_plane structures. Therefore, when we are running
4084  * without universal plane support, we create fake drm_plane structures
4085  * to track these planes.
4086  *
4087  * @param b DRM backend
4088  * @param output Output to use for plane
4089  * @param type Type of plane
4090  */
4091 static struct drm_plane *
4092 drm_output_find_special_plane(struct drm_backend *b, struct drm_output *output,
4093                               enum wdrm_plane_type type)
4094 {
4095         struct drm_plane *plane;
4096
4097         if (!b->universal_planes) {
4098                 uint32_t format;
4099
4100                 switch (type) {
4101                 case WDRM_PLANE_TYPE_CURSOR:
4102                         format = GBM_FORMAT_ARGB8888;
4103                         break;
4104                 case WDRM_PLANE_TYPE_PRIMARY:
4105                         /* We don't know what formats the primary plane supports
4106                          * before universal planes, so we just assume that the
4107                          * GBM format works; however, this isn't set until after
4108                          * the output is created. */
4109                         format = 0;
4110                         break;
4111                 default:
4112                         assert(!"invalid type in drm_output_find_special_plane");
4113                         break;
4114                 }
4115
4116                 return drm_plane_create(b, NULL, output, type, format);
4117         }
4118
4119         wl_list_for_each(plane, &b->plane_list, link) {
4120                 struct drm_output *tmp;
4121                 bool found_elsewhere = false;
4122
4123                 if (plane->type != type)
4124                         continue;
4125                 if (!drm_plane_is_available(plane, output))
4126                         continue;
4127
4128                 /* On some platforms, primary/cursor planes can roam
4129                  * between different CRTCs, so make sure we don't claim the
4130                  * same plane for two outputs. */
4131                 wl_list_for_each(tmp, &b->compositor->output_list,
4132                                  base.link) {
4133                         if (tmp->cursor_plane == plane ||
4134                             tmp->scanout_plane == plane) {
4135                                 found_elsewhere = true;
4136                                 break;
4137                         }
4138                 }
4139
4140                 if (found_elsewhere)
4141                         continue;
4142
4143                 plane->possible_crtcs = (1 << output->pipe);
4144                 return plane;
4145         }
4146
4147         return NULL;
4148 }
4149
4150 /**
4151  * Destroy one DRM plane
4152  *
4153  * Destroy a DRM plane, removing it from screen and releasing its retained
4154  * buffers in the process. The counterpart to drm_plane_create.
4155  *
4156  * @param plane Plane to deallocate (will be freed)
4157  */
4158 static void
4159 drm_plane_destroy(struct drm_plane *plane)
4160 {
4161         if (plane->type == WDRM_PLANE_TYPE_OVERLAY)
4162                 drmModeSetPlane(plane->backend->drm.fd, plane->plane_id,
4163                                 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
4164         drm_plane_state_free(plane->state_cur, true);
4165         drm_property_info_free(plane->props, WDRM_PLANE__COUNT);
4166         weston_plane_release(&plane->base);
4167         wl_list_remove(&plane->link);
4168         free(plane);
4169 }
4170
4171 /**
4172  * Initialise sprites (overlay planes)
4173  *
4174  * Walk the list of provided DRM planes, and add overlay planes.
4175  *
4176  * Call destroy_sprites to free these planes.
4177  *
4178  * @param b DRM compositor backend
4179  */
4180 static void
4181 create_sprites(struct drm_backend *b)
4182 {
4183         drmModePlaneRes *kplane_res;
4184         drmModePlane *kplane;
4185         struct drm_plane *drm_plane;
4186         uint32_t i;
4187         kplane_res = drmModeGetPlaneResources(b->drm.fd);
4188         if (!kplane_res) {
4189                 weston_log("failed to get plane resources: %s\n",
4190                         strerror(errno));
4191                 return;
4192         }
4193
4194         for (i = 0; i < kplane_res->count_planes; i++) {
4195                 kplane = drmModeGetPlane(b->drm.fd, kplane_res->planes[i]);
4196                 if (!kplane)
4197                         continue;
4198
4199                 drm_plane = drm_plane_create(b, kplane, NULL,
4200                                              WDRM_PLANE_TYPE__COUNT, 0);
4201                 drmModeFreePlane(kplane);
4202                 if (!drm_plane)
4203                         continue;
4204
4205                 if (drm_plane->type == WDRM_PLANE_TYPE_OVERLAY)
4206                         weston_compositor_stack_plane(b->compositor,
4207                                                       &drm_plane->base,
4208                                                       &b->compositor->primary_plane);
4209         }
4210
4211         drmModeFreePlaneResources(kplane_res);
4212 }
4213
4214 /**
4215  * Clean up sprites (overlay planes)
4216  *
4217  * The counterpart to create_sprites.
4218  *
4219  * @param b DRM compositor backend
4220  */
4221 static void
4222 destroy_sprites(struct drm_backend *b)
4223 {
4224         struct drm_plane *plane, *next;
4225
4226         wl_list_for_each_safe(plane, next, &b->plane_list, link)
4227                 drm_plane_destroy(plane);
4228 }
4229
4230 static uint32_t
4231 drm_refresh_rate_mHz(const drmModeModeInfo *info)
4232 {
4233         uint64_t refresh;
4234
4235         /* Calculate higher precision (mHz) refresh rate */
4236         refresh = (info->clock * 1000000LL / info->htotal +
4237                    info->vtotal / 2) / info->vtotal;
4238
4239         if (info->flags & DRM_MODE_FLAG_INTERLACE)
4240                 refresh *= 2;
4241         if (info->flags & DRM_MODE_FLAG_DBLSCAN)
4242                 refresh /= 2;
4243         if (info->vscan > 1)
4244             refresh /= info->vscan;
4245
4246         return refresh;
4247 }
4248
4249 /**
4250  * Add a mode to output's mode list
4251  *
4252  * Copy the supplied DRM mode into a Weston mode structure, and add it to the
4253  * output's mode list.
4254  *
4255  * @param output DRM output to add mode to
4256  * @param info DRM mode structure to add
4257  * @returns Newly-allocated Weston/DRM mode structure
4258  */
4259 static struct drm_mode *
4260 drm_output_add_mode(struct drm_output *output, const drmModeModeInfo *info)
4261 {
4262         struct drm_mode *mode;
4263
4264         mode = malloc(sizeof *mode);
4265         if (mode == NULL)
4266                 return NULL;
4267
4268         mode->base.flags = 0;
4269         mode->base.width = info->hdisplay;
4270         mode->base.height = info->vdisplay;
4271
4272         mode->base.refresh = drm_refresh_rate_mHz(info);
4273         mode->mode_info = *info;
4274         mode->blob_id = 0;
4275
4276         if (info->type & DRM_MODE_TYPE_PREFERRED)
4277                 mode->base.flags |= WL_OUTPUT_MODE_PREFERRED;
4278
4279         mode->base.aspect_ratio = drm_to_weston_mode_aspect_ratio(info->flags);
4280
4281         wl_list_insert(output->base.mode_list.prev, &mode->base.link);
4282
4283         return mode;
4284 }
4285
4286 /**
4287  * Destroys a mode, and removes it from the list.
4288  */
4289 static void
4290 drm_output_destroy_mode(struct drm_backend *backend, struct drm_mode *mode)
4291 {
4292         if (mode->blob_id)
4293                 drmModeDestroyPropertyBlob(backend->drm.fd, mode->blob_id);
4294         wl_list_remove(&mode->base.link);
4295         free(mode);
4296 }
4297
4298 /** Destroy a list of drm_modes
4299  *
4300  * @param backend The backend for releasing mode property blobs.
4301  * @param mode_list The list linked by drm_mode::base.link.
4302  */
4303 static void
4304 drm_mode_list_destroy(struct drm_backend *backend, struct wl_list *mode_list)
4305 {
4306         struct drm_mode *mode, *next;
4307
4308         wl_list_for_each_safe(mode, next, mode_list, base.link)
4309                 drm_output_destroy_mode(backend, mode);
4310 }
4311
4312 static int
4313 drm_subpixel_to_wayland(int drm_value)
4314 {
4315         switch (drm_value) {
4316         default:
4317         case DRM_MODE_SUBPIXEL_UNKNOWN:
4318                 return WL_OUTPUT_SUBPIXEL_UNKNOWN;
4319         case DRM_MODE_SUBPIXEL_NONE:
4320                 return WL_OUTPUT_SUBPIXEL_NONE;
4321         case DRM_MODE_SUBPIXEL_HORIZONTAL_RGB:
4322                 return WL_OUTPUT_SUBPIXEL_HORIZONTAL_RGB;
4323         case DRM_MODE_SUBPIXEL_HORIZONTAL_BGR:
4324                 return WL_OUTPUT_SUBPIXEL_HORIZONTAL_BGR;
4325         case DRM_MODE_SUBPIXEL_VERTICAL_RGB:
4326                 return WL_OUTPUT_SUBPIXEL_VERTICAL_RGB;
4327         case DRM_MODE_SUBPIXEL_VERTICAL_BGR:
4328                 return WL_OUTPUT_SUBPIXEL_VERTICAL_BGR;
4329         }
4330 }
4331
4332 /* returns a value between 0-255 range, where higher is brighter */
4333 static uint32_t
4334 drm_get_backlight(struct drm_head *head)
4335 {
4336         long brightness, max_brightness, norm;
4337
4338         brightness = backlight_get_brightness(head->backlight);
4339         max_brightness = backlight_get_max_brightness(head->backlight);
4340
4341         /* convert it on a scale of 0 to 255 */
4342         norm = (brightness * 255)/(max_brightness);
4343
4344         return (uint32_t) norm;
4345 }
4346
4347 /* values accepted are between 0-255 range */
4348 static void
4349 drm_set_backlight(struct weston_output *output_base, uint32_t value)
4350 {
4351         struct drm_output *output = to_drm_output(output_base);
4352         struct drm_head *head;
4353         long max_brightness, new_brightness;
4354
4355         if (value > 255)
4356                 return;
4357
4358         wl_list_for_each(head, &output->base.head_list, base.output_link) {
4359                 if (!head->backlight)
4360                         return;
4361
4362                 max_brightness = backlight_get_max_brightness(head->backlight);
4363
4364                 /* get denormalized value */
4365                 new_brightness = (value * max_brightness) / 255;
4366
4367                 backlight_set_brightness(head->backlight, new_brightness);
4368         }
4369 }
4370
4371 static void
4372 drm_output_init_backlight(struct drm_output *output)
4373 {
4374         struct weston_head *base;
4375         struct drm_head *head;
4376
4377         output->base.set_backlight = NULL;
4378
4379         wl_list_for_each(base, &output->base.head_list, output_link) {
4380                 head = to_drm_head(base);
4381
4382                 if (head->backlight) {
4383                         weston_log("Initialized backlight for head '%s', device %s\n",
4384                                    head->base.name, head->backlight->path);
4385
4386                         if (!output->base.set_backlight) {
4387                                 output->base.set_backlight = drm_set_backlight;
4388                                 output->base.backlight_current =
4389                                                         drm_get_backlight(head);
4390                         }
4391                 }
4392         }
4393
4394         if (!output->base.set_backlight) {
4395                 weston_log("No backlight control for output '%s'\n",
4396                            output->base.name);
4397         }
4398 }
4399
4400 /**
4401  * Power output on or off
4402  *
4403  * The DPMS/power level of an output is used to switch it on or off. This
4404  * is DRM's hook for doing so, which can called either as part of repaint,
4405  * or independently of the repaint loop.
4406  *
4407  * If we are called as part of repaint, we simply set the relevant bit in
4408  * state and return.
4409  */
4410 static void
4411 drm_set_dpms(struct weston_output *output_base, enum dpms_enum level)
4412 {
4413         struct drm_output *output = to_drm_output(output_base);
4414         struct drm_backend *b = to_drm_backend(output_base->compositor);
4415         struct drm_pending_state *pending_state = b->repaint_data;
4416         struct drm_output_state *state;
4417         int ret;
4418
4419         if (output->state_cur->dpms == level)
4420                 return;
4421
4422         /* If we're being called during the repaint loop, then this is
4423          * simple: discard any previously-generated state, and create a new
4424          * state where we disable everything. When we come to flush, this
4425          * will be applied.
4426          *
4427          * However, we need to be careful: we can be called whilst another
4428          * output is in its repaint cycle (pending_state exists), but our
4429          * output still has an incomplete state application outstanding.
4430          * In that case, we need to wait until that completes. */
4431         if (pending_state && !output->state_last) {
4432                 /* The repaint loop already sets DPMS on; we don't need to
4433                  * explicitly set it on here, as it will already happen
4434                  * whilst applying the repaint state. */
4435                 if (level == WESTON_DPMS_ON)
4436                         return;
4437
4438                 state = drm_pending_state_get_output(pending_state, output);
4439                 if (state)
4440                         drm_output_state_free(state);
4441                 state = drm_output_get_disable_state(pending_state, output);
4442                 return;
4443         }
4444
4445         /* As we throw everything away when disabling, just send us back through
4446          * a repaint cycle. */
4447         if (level == WESTON_DPMS_ON) {
4448                 if (output->dpms_off_pending)
4449                         output->dpms_off_pending = 0;
4450                 weston_output_schedule_repaint(output_base);
4451                 return;
4452         }
4453
4454         /* If we've already got a request in the pipeline, then we need to
4455          * park our DPMS request until that request has quiesced. */
4456         if (output->state_last) {
4457                 output->dpms_off_pending = 1;
4458                 return;
4459         }
4460
4461         pending_state = drm_pending_state_alloc(b);
4462         drm_output_get_disable_state(pending_state, output);
4463         ret = drm_pending_state_apply_sync(pending_state);
4464         if (ret != 0)
4465                 weston_log("drm_set_dpms: couldn't disable output?\n");
4466 }
4467
4468 static const char * const connector_type_names[] = {
4469         [DRM_MODE_CONNECTOR_Unknown]     = "Unknown",
4470         [DRM_MODE_CONNECTOR_VGA]         = "VGA",
4471         [DRM_MODE_CONNECTOR_DVII]        = "DVI-I",
4472         [DRM_MODE_CONNECTOR_DVID]        = "DVI-D",
4473         [DRM_MODE_CONNECTOR_DVIA]        = "DVI-A",
4474         [DRM_MODE_CONNECTOR_Composite]   = "Composite",
4475         [DRM_MODE_CONNECTOR_SVIDEO]      = "SVIDEO",
4476         [DRM_MODE_CONNECTOR_LVDS]        = "LVDS",
4477         [DRM_MODE_CONNECTOR_Component]   = "Component",
4478         [DRM_MODE_CONNECTOR_9PinDIN]     = "DIN",
4479         [DRM_MODE_CONNECTOR_DisplayPort] = "DP",
4480         [DRM_MODE_CONNECTOR_HDMIA]       = "HDMI-A",
4481         [DRM_MODE_CONNECTOR_HDMIB]       = "HDMI-B",
4482         [DRM_MODE_CONNECTOR_TV]          = "TV",
4483         [DRM_MODE_CONNECTOR_eDP]         = "eDP",
4484 #ifdef DRM_MODE_CONNECTOR_DSI
4485         [DRM_MODE_CONNECTOR_VIRTUAL]     = "Virtual",
4486         [DRM_MODE_CONNECTOR_DSI]         = "DSI",
4487 #endif
4488 };
4489
4490 /** Create a name given a DRM connector
4491  *
4492  * \param con The DRM connector whose type and id form the name.
4493  * \return A newly allocate string, or NULL on error. Must be free()'d
4494  * after use.
4495  *
4496  * The name does not identify the DRM display device.
4497  */
4498 static char *
4499 make_connector_name(const drmModeConnector *con)
4500 {
4501         char *name;
4502         const char *type_name = NULL;
4503         int ret;
4504
4505         if (con->connector_type < ARRAY_LENGTH(connector_type_names))
4506                 type_name = connector_type_names[con->connector_type];
4507
4508         if (!type_name)
4509                 type_name = "UNNAMED";
4510
4511         ret = asprintf(&name, "%s-%d", type_name, con->connector_type_id);
4512         if (ret < 0)
4513                 return NULL;
4514
4515         return name;
4516 }
4517
4518 static void drm_output_fini_cursor_egl(struct drm_output *output)
4519 {
4520         unsigned int i;
4521
4522         for (i = 0; i < ARRAY_LENGTH(output->gbm_cursor_fb); i++) {
4523                 drm_fb_unref(output->gbm_cursor_fb[i]);
4524                 output->gbm_cursor_fb[i] = NULL;
4525         }
4526 }
4527
4528 static int
4529 drm_output_init_cursor_egl(struct drm_output *output, struct drm_backend *b)
4530 {
4531         unsigned int i;
4532
4533         /* No point creating cursors if we don't have a plane for them. */
4534         if (!output->cursor_plane)
4535                 return 0;
4536
4537         for (i = 0; i < ARRAY_LENGTH(output->gbm_cursor_fb); i++) {
4538                 struct gbm_bo *bo;
4539
4540                 bo = gbm_bo_create(b->gbm, b->cursor_width, b->cursor_height,
4541                                    GBM_FORMAT_ARGB8888,
4542                                    GBM_BO_USE_CURSOR | GBM_BO_USE_WRITE);
4543                 if (!bo)
4544                         goto err;
4545
4546                 output->gbm_cursor_fb[i] =
4547                         drm_fb_get_from_bo(bo, b, false, BUFFER_CURSOR);
4548                 if (!output->gbm_cursor_fb[i]) {
4549                         gbm_bo_destroy(bo);
4550                         goto err;
4551                 }
4552         }
4553
4554         return 0;
4555
4556 err:
4557         weston_log("cursor buffers unavailable, using gl cursors\n");
4558         b->cursors_are_broken = 1;
4559         drm_output_fini_cursor_egl(output);
4560         return -1;
4561 }
4562
4563 /* Init output state that depends on gl or gbm */
4564 static int
4565 drm_output_init_egl(struct drm_output *output, struct drm_backend *b)
4566 {
4567         EGLint format[2] = {
4568                 output->gbm_format,
4569                 fallback_format_for(output->gbm_format),
4570         };
4571         int n_formats = 1;
4572         struct weston_mode *mode = output->base.current_mode;
4573         struct drm_plane *plane = output->scanout_plane;
4574         unsigned int i;
4575
4576         for (i = 0; i < plane->count_formats; i++) {
4577                 if (plane->formats[i].format == output->gbm_format)
4578                         break;
4579         }
4580
4581         if (i == plane->count_formats) {
4582                 weston_log("format 0x%x not supported by output %s\n",
4583                            output->gbm_format, output->base.name);
4584                 return -1;
4585         }
4586
4587 #ifdef HAVE_GBM_MODIFIERS
4588         if (plane->formats[i].count_modifiers > 0) {
4589                 output->gbm_surface =
4590                         gbm_surface_create_with_modifiers(b->gbm,
4591                                                           mode->width,
4592                                                           mode->height,
4593                                                           output->gbm_format,
4594                                                           plane->formats[i].modifiers,
4595                                                           plane->formats[i].count_modifiers);
4596         } else
4597 #endif
4598         {
4599                 output->gbm_surface =
4600                     gbm_surface_create(b->gbm, mode->width, mode->height,
4601                                        output->gbm_format,
4602                                        GBM_BO_USE_RENDERING | GBM_BO_USE_SCANOUT);
4603         }
4604
4605         if (!output->gbm_surface) {
4606                 weston_log("failed to create gbm surface\n");
4607                 return -1;
4608         }
4609
4610         if (format[1])
4611                 n_formats = 2;
4612         if (gl_renderer->output_window_create(&output->base,
4613                                               (EGLNativeWindowType)output->gbm_surface,
4614                                               output->gbm_surface,
4615                                               gl_renderer->opaque_attribs,
4616                                               format,
4617                                               n_formats) < 0) {
4618                 weston_log("failed to create gl renderer output state\n");
4619                 gbm_surface_destroy(output->gbm_surface);
4620                 return -1;
4621         }
4622
4623         drm_output_init_cursor_egl(output, b);
4624
4625         return 0;
4626 }
4627
4628 static void
4629 drm_output_fini_egl(struct drm_output *output)
4630 {
4631         struct drm_backend *b = to_drm_backend(output->base.compositor);
4632
4633         /* Destroying the GBM surface will destroy all our GBM buffers,
4634          * regardless of refcount. Ensure we destroy them here. */
4635         if (!b->shutting_down &&
4636             output->scanout_plane->state_cur->fb &&
4637             output->scanout_plane->state_cur->fb->type == BUFFER_GBM_SURFACE) {
4638                 drm_plane_state_free(output->scanout_plane->state_cur, true);
4639                 output->scanout_plane->state_cur =
4640                         drm_plane_state_alloc(NULL, output->scanout_plane);
4641                 output->scanout_plane->state_cur->complete = true;
4642         }
4643
4644         gl_renderer->output_destroy(&output->base);
4645         gbm_surface_destroy(output->gbm_surface);
4646         drm_output_fini_cursor_egl(output);
4647 }
4648
4649 static int
4650 drm_output_init_pixman(struct drm_output *output, struct drm_backend *b)
4651 {
4652         int w = output->base.current_mode->width;
4653         int h = output->base.current_mode->height;
4654         uint32_t format = output->gbm_format;
4655         uint32_t pixman_format;
4656         unsigned int i;
4657         uint32_t flags = 0;
4658
4659         switch (format) {
4660                 case GBM_FORMAT_XRGB8888:
4661                         pixman_format = PIXMAN_x8r8g8b8;
4662                         break;
4663                 case GBM_FORMAT_RGB565:
4664                         pixman_format = PIXMAN_r5g6b5;
4665                         break;
4666                 default:
4667                         weston_log("Unsupported pixman format 0x%x\n", format);
4668                         return -1;
4669         }
4670
4671         /* FIXME error checking */
4672         for (i = 0; i < ARRAY_LENGTH(output->dumb); i++) {
4673                 output->dumb[i] = drm_fb_create_dumb(b, w, h, format);
4674                 if (!output->dumb[i])
4675                         goto err;
4676
4677                 output->image[i] =
4678                         pixman_image_create_bits(pixman_format, w, h,
4679                                                  output->dumb[i]->map,
4680                                                  output->dumb[i]->strides[0]);
4681                 if (!output->image[i])
4682                         goto err;
4683         }
4684
4685         if (b->use_pixman_shadow)
4686                 flags |= PIXMAN_RENDERER_OUTPUT_USE_SHADOW;
4687
4688         if (pixman_renderer_output_create(&output->base, flags) < 0)
4689                 goto err;
4690
4691         weston_log("DRM: output %s %s shadow framebuffer.\n", output->base.name,
4692                    b->use_pixman_shadow ? "uses" : "does not use");
4693
4694         pixman_region32_init_rect(&output->previous_damage,
4695                                   output->base.x, output->base.y, output->base.width, output->base.height);
4696
4697         return 0;
4698
4699 err:
4700         for (i = 0; i < ARRAY_LENGTH(output->dumb); i++) {
4701                 if (output->dumb[i])
4702                         drm_fb_unref(output->dumb[i]);
4703                 if (output->image[i])
4704                         pixman_image_unref(output->image[i]);
4705
4706                 output->dumb[i] = NULL;
4707                 output->image[i] = NULL;
4708         }
4709
4710         return -1;
4711 }
4712
4713 static void
4714 drm_output_fini_pixman(struct drm_output *output)
4715 {
4716         struct drm_backend *b = to_drm_backend(output->base.compositor);
4717         unsigned int i;
4718
4719         /* Destroying the Pixman surface will destroy all our buffers,
4720          * regardless of refcount. Ensure we destroy them here. */
4721         if (!b->shutting_down &&
4722             output->scanout_plane->state_cur->fb &&
4723             output->scanout_plane->state_cur->fb->type == BUFFER_PIXMAN_DUMB) {
4724                 drm_plane_state_free(output->scanout_plane->state_cur, true);
4725                 output->scanout_plane->state_cur =
4726                         drm_plane_state_alloc(NULL, output->scanout_plane);
4727                 output->scanout_plane->state_cur->complete = true;
4728         }
4729
4730         pixman_renderer_output_destroy(&output->base);
4731         pixman_region32_fini(&output->previous_damage);
4732
4733         for (i = 0; i < ARRAY_LENGTH(output->dumb); i++) {
4734                 pixman_image_unref(output->image[i]);
4735                 drm_fb_unref(output->dumb[i]);
4736                 output->dumb[i] = NULL;
4737                 output->image[i] = NULL;
4738         }
4739 }
4740
4741 static void
4742 edid_parse_string(const uint8_t *data, char text[])
4743 {
4744         int i;
4745         int replaced = 0;
4746
4747         /* this is always 12 bytes, but we can't guarantee it's null
4748          * terminated or not junk. */
4749         strncpy(text, (const char *) data, 12);
4750
4751         /* guarantee our new string is null-terminated */
4752         text[12] = '\0';
4753
4754         /* remove insane chars */
4755         for (i = 0; text[i] != '\0'; i++) {
4756                 if (text[i] == '\n' ||
4757                     text[i] == '\r') {
4758                         text[i] = '\0';
4759                         break;
4760                 }
4761         }
4762
4763         /* ensure string is printable */
4764         for (i = 0; text[i] != '\0'; i++) {
4765                 if (!isprint(text[i])) {
4766                         text[i] = '-';
4767                         replaced++;
4768                 }
4769         }
4770
4771         /* if the string is random junk, ignore the string */
4772         if (replaced > 4)
4773                 text[0] = '\0';
4774 }
4775
4776 #define EDID_DESCRIPTOR_ALPHANUMERIC_DATA_STRING        0xfe
4777 #define EDID_DESCRIPTOR_DISPLAY_PRODUCT_NAME            0xfc
4778 #define EDID_DESCRIPTOR_DISPLAY_PRODUCT_SERIAL_NUMBER   0xff
4779 #define EDID_OFFSET_DATA_BLOCKS                         0x36
4780 #define EDID_OFFSET_LAST_BLOCK                          0x6c
4781 #define EDID_OFFSET_PNPID                               0x08
4782 #define EDID_OFFSET_SERIAL                              0x0c
4783
4784 static int
4785 edid_parse(struct drm_edid *edid, const uint8_t *data, size_t length)
4786 {
4787         int i;
4788         uint32_t serial_number;
4789
4790         /* check header */
4791         if (length < 128)
4792                 return -1;
4793         if (data[0] != 0x00 || data[1] != 0xff)
4794                 return -1;
4795
4796         /* decode the PNP ID from three 5 bit words packed into 2 bytes
4797          * /--08--\/--09--\
4798          * 7654321076543210
4799          * |\---/\---/\---/
4800          * R  C1   C2   C3 */
4801         edid->pnp_id[0] = 'A' + ((data[EDID_OFFSET_PNPID + 0] & 0x7c) / 4) - 1;
4802         edid->pnp_id[1] = 'A' + ((data[EDID_OFFSET_PNPID + 0] & 0x3) * 8) + ((data[EDID_OFFSET_PNPID + 1] & 0xe0) / 32) - 1;
4803         edid->pnp_id[2] = 'A' + (data[EDID_OFFSET_PNPID + 1] & 0x1f) - 1;
4804         edid->pnp_id[3] = '\0';
4805
4806         /* maybe there isn't a ASCII serial number descriptor, so use this instead */
4807         serial_number = (uint32_t) data[EDID_OFFSET_SERIAL + 0];
4808         serial_number += (uint32_t) data[EDID_OFFSET_SERIAL + 1] * 0x100;
4809         serial_number += (uint32_t) data[EDID_OFFSET_SERIAL + 2] * 0x10000;
4810         serial_number += (uint32_t) data[EDID_OFFSET_SERIAL + 3] * 0x1000000;
4811         if (serial_number > 0)
4812                 sprintf(edid->serial_number, "%lu", (unsigned long) serial_number);
4813
4814         /* parse EDID data */
4815         for (i = EDID_OFFSET_DATA_BLOCKS;
4816              i <= EDID_OFFSET_LAST_BLOCK;
4817              i += 18) {
4818                 /* ignore pixel clock data */
4819                 if (data[i] != 0)
4820                         continue;
4821                 if (data[i+2] != 0)
4822                         continue;
4823
4824                 /* any useful blocks? */
4825                 if (data[i+3] == EDID_DESCRIPTOR_DISPLAY_PRODUCT_NAME) {
4826                         edid_parse_string(&data[i+5],
4827                                           edid->monitor_name);
4828                 } else if (data[i+3] == EDID_DESCRIPTOR_DISPLAY_PRODUCT_SERIAL_NUMBER) {
4829                         edid_parse_string(&data[i+5],
4830                                           edid->serial_number);
4831                 } else if (data[i+3] == EDID_DESCRIPTOR_ALPHANUMERIC_DATA_STRING) {
4832                         edid_parse_string(&data[i+5],
4833                                           edid->eisa_id);
4834                 }
4835         }
4836         return 0;
4837 }
4838
4839 /** Parse monitor make, model and serial from EDID
4840  *
4841  * \param head The head whose \c drm_edid to fill in.
4842  * \param props The DRM connector properties to get the EDID from.
4843  * \param make[out] The monitor make (PNP ID).
4844  * \param model[out] The monitor model (name).
4845  * \param serial_number[out] The monitor serial number.
4846  *
4847  * Each of \c *make, \c *model and \c *serial_number are set only if the
4848  * information is found in the EDID. The pointers they are set to must not
4849  * be free()'d explicitly, instead they get implicitly freed when the
4850  * \c drm_head is destroyed.
4851  */
4852 static void
4853 find_and_parse_output_edid(struct drm_head *head,
4854                            drmModeObjectPropertiesPtr props,
4855                            const char **make,
4856                            const char **model,
4857                            const char **serial_number)
4858 {
4859         drmModePropertyBlobPtr edid_blob = NULL;
4860         uint32_t blob_id;
4861         int rc;
4862
4863         blob_id =
4864                 drm_property_get_value(&head->props_conn[WDRM_CONNECTOR_EDID],
4865                                        props, 0);
4866         if (!blob_id)
4867                 return;
4868
4869         edid_blob = drmModeGetPropertyBlob(head->backend->drm.fd, blob_id);
4870         if (!edid_blob)
4871                 return;
4872
4873         rc = edid_parse(&head->edid,
4874                         edid_blob->data,
4875                         edid_blob->length);
4876         if (!rc) {
4877                 if (head->edid.pnp_id[0] != '\0')
4878                         *make = head->edid.pnp_id;
4879                 if (head->edid.monitor_name[0] != '\0')
4880                         *model = head->edid.monitor_name;
4881                 if (head->edid.serial_number[0] != '\0')
4882                         *serial_number = head->edid.serial_number;
4883         }
4884         drmModeFreePropertyBlob(edid_blob);
4885 }
4886
4887 static int
4888 parse_modeline(const char *s, drmModeModeInfo *mode)
4889 {
4890         char hsync[16];
4891         char vsync[16];
4892         float fclock;
4893
4894         memset(mode, 0, sizeof *mode);
4895
4896         mode->type = DRM_MODE_TYPE_USERDEF;
4897         mode->hskew = 0;
4898         mode->vscan = 0;
4899         mode->vrefresh = 0;
4900         mode->flags = 0;
4901
4902         if (sscanf(s, "%f %hd %hd %hd %hd %hd %hd %hd %hd %15s %15s",
4903                    &fclock,
4904                    &mode->hdisplay,
4905                    &mode->hsync_start,
4906                    &mode->hsync_end,
4907                    &mode->htotal,
4908                    &mode->vdisplay,
4909                    &mode->vsync_start,
4910                    &mode->vsync_end,
4911                    &mode->vtotal, hsync, vsync) != 11)
4912                 return -1;
4913
4914         mode->clock = fclock * 1000;
4915         if (strcasecmp(hsync, "+hsync") == 0)
4916                 mode->flags |= DRM_MODE_FLAG_PHSYNC;
4917         else if (strcasecmp(hsync, "-hsync") == 0)
4918                 mode->flags |= DRM_MODE_FLAG_NHSYNC;
4919         else
4920                 return -1;
4921
4922         if (strcasecmp(vsync, "+vsync") == 0)
4923                 mode->flags |= DRM_MODE_FLAG_PVSYNC;
4924         else if (strcasecmp(vsync, "-vsync") == 0)
4925                 mode->flags |= DRM_MODE_FLAG_NVSYNC;
4926         else
4927                 return -1;
4928
4929         snprintf(mode->name, sizeof mode->name, "%dx%d@%.3f",
4930                  mode->hdisplay, mode->vdisplay, fclock);
4931
4932         return 0;
4933 }
4934
4935 static void
4936 setup_output_seat_constraint(struct drm_backend *b,
4937                              struct weston_output *output,
4938                              const char *s)
4939 {
4940         if (strcmp(s, "") != 0) {
4941                 struct weston_pointer *pointer;
4942                 struct udev_seat *seat;
4943
4944                 seat = udev_seat_get_named(&b->input, s);
4945                 if (!seat)
4946                         return;
4947
4948                 seat->base.output = output;
4949
4950                 pointer = weston_seat_get_pointer(&seat->base);
4951                 if (pointer)
4952                         weston_pointer_clamp(pointer,
4953                                              &pointer->x,
4954                                              &pointer->y);
4955         }
4956 }
4957
4958 static int
4959 drm_output_attach_head(struct weston_output *output_base,
4960                        struct weston_head *head_base)
4961 {
4962         struct drm_backend *b = to_drm_backend(output_base->compositor);
4963
4964         if (wl_list_length(&output_base->head_list) >= MAX_CLONED_CONNECTORS)
4965                 return -1;
4966
4967         if (!output_base->enabled)
4968                 return 0;
4969
4970         /* XXX: ensure the configuration will work.
4971          * This is actually impossible without major infrastructure
4972          * work. */
4973
4974         /* Need to go through modeset to add connectors. */
4975         /* XXX: Ideally we'd do this per-output, not globally. */
4976         /* XXX: Doing it globally, what guarantees another output's update
4977          * will not clear the flag before this output is updated?
4978          */
4979         b->state_invalid = true;
4980
4981         weston_output_schedule_repaint(output_base);
4982
4983         return 0;
4984 }
4985
4986 static void
4987 drm_output_detach_head(struct weston_output *output_base,
4988                        struct weston_head *head_base)
4989 {
4990         struct drm_backend *b = to_drm_backend(output_base->compositor);
4991
4992         if (!output_base->enabled)
4993                 return;
4994
4995         /* Need to go through modeset to drop connectors that should no longer
4996          * be driven. */
4997         /* XXX: Ideally we'd do this per-output, not globally. */
4998         b->state_invalid = true;
4999
5000         weston_output_schedule_repaint(output_base);
5001 }
5002
5003 static int
5004 parse_gbm_format(const char *s, uint32_t default_value, uint32_t *gbm_format)
5005 {
5006         int ret = 0;
5007
5008         if (s == NULL)
5009                 *gbm_format = default_value;
5010         else if (strcmp(s, "xrgb8888") == 0)
5011                 *gbm_format = GBM_FORMAT_XRGB8888;
5012         else if (strcmp(s, "rgb565") == 0)
5013                 *gbm_format = GBM_FORMAT_RGB565;
5014         else if (strcmp(s, "xrgb2101010") == 0)
5015                 *gbm_format = GBM_FORMAT_XRGB2101010;
5016         else {
5017                 weston_log("fatal: unrecognized pixel format: %s\n", s);
5018                 ret = -1;
5019         }
5020
5021         return ret;
5022 }
5023
5024 static uint32_t
5025 u32distance(uint32_t a, uint32_t b)
5026 {
5027         if (a < b)
5028                 return b - a;
5029         else
5030                 return a - b;
5031 }
5032
5033 /** Choose equivalent mode
5034  *
5035  * If the two modes are not equivalent, return NULL.
5036  * Otherwise return the mode that is more likely to work in place of both.
5037  *
5038  * None of the fuzzy matching criteria in this function have any justification.
5039  *
5040  * typedef struct _drmModeModeInfo {
5041  *         uint32_t clock;
5042  *         uint16_t hdisplay, hsync_start, hsync_end, htotal, hskew;
5043  *         uint16_t vdisplay, vsync_start, vsync_end, vtotal, vscan;
5044  *
5045  *         uint32_t vrefresh;
5046  *
5047  *         uint32_t flags;
5048  *         uint32_t type;
5049  *         char name[DRM_DISPLAY_MODE_LEN];
5050  * } drmModeModeInfo, *drmModeModeInfoPtr;
5051  */
5052 static const drmModeModeInfo *
5053 drm_mode_pick_equivalent(const drmModeModeInfo *a, const drmModeModeInfo *b)
5054 {
5055         uint32_t refresh_a, refresh_b;
5056
5057         if (a->hdisplay != b->hdisplay || a->vdisplay != b->vdisplay)
5058                 return NULL;
5059
5060         if (a->flags != b->flags)
5061                 return NULL;
5062
5063         /* kHz */
5064         if (u32distance(a->clock, b->clock) > 500)
5065                 return NULL;
5066
5067         refresh_a = drm_refresh_rate_mHz(a);
5068         refresh_b = drm_refresh_rate_mHz(b);
5069         if (u32distance(refresh_a, refresh_b) > 50)
5070                 return NULL;
5071
5072         if ((a->type ^ b->type) & DRM_MODE_TYPE_PREFERRED) {
5073                 if (a->type & DRM_MODE_TYPE_PREFERRED)
5074                         return a;
5075                 else
5076                         return b;
5077         }
5078
5079         return a;
5080 }
5081
5082 /* If the given mode info is not already in the list, add it.
5083  * If it is in the list, either keep the existing or replace it,
5084  * depending on which one is "better".
5085  */
5086 static int
5087 drm_output_try_add_mode(struct drm_output *output, const drmModeModeInfo *info)
5088 {
5089         struct weston_mode *base;
5090         struct drm_mode *mode;
5091         struct drm_backend *backend;
5092         const drmModeModeInfo *chosen = NULL;
5093
5094         assert(info);
5095
5096         wl_list_for_each(base, &output->base.mode_list, link) {
5097                 mode = to_drm_mode(base);
5098                 chosen = drm_mode_pick_equivalent(&mode->mode_info, info);
5099                 if (chosen)
5100                         break;
5101         }
5102
5103         if (chosen == info) {
5104                 backend = to_drm_backend(output->base.compositor);
5105                 drm_output_destroy_mode(backend, mode);
5106                 chosen = NULL;
5107         }
5108
5109         if (!chosen) {
5110                 mode = drm_output_add_mode(output, info);
5111                 if (!mode)
5112                         return -1;
5113         }
5114         /* else { the equivalent mode is already in the list } */
5115
5116         return 0;
5117 }
5118
5119 /** Rewrite the output's mode list
5120  *
5121  * @param output The output.
5122  * @return 0 on success, -1 on failure.
5123  *
5124  * Destroy all existing modes in the list, and reconstruct a new list from
5125  * scratch, based on the currently attached heads.
5126  *
5127  * On failure the output's mode list may contain some modes.
5128  */
5129 static int
5130 drm_output_update_modelist_from_heads(struct drm_output *output)
5131 {
5132         struct drm_backend *backend = to_drm_backend(output->base.compositor);
5133         struct weston_head *head_base;
5134         struct drm_head *head;
5135         int i;
5136         int ret;
5137
5138         assert(!output->base.enabled);
5139
5140         drm_mode_list_destroy(backend, &output->base.mode_list);
5141
5142         wl_list_for_each(head_base, &output->base.head_list, output_link) {
5143                 head = to_drm_head(head_base);
5144                 for (i = 0; i < head->connector->count_modes; i++) {
5145                         ret = drm_output_try_add_mode(output,
5146                                                 &head->connector->modes[i]);
5147                         if (ret < 0)
5148                                 return -1;
5149                 }
5150         }
5151
5152         return 0;
5153 }
5154
5155 /**
5156  * Choose suitable mode for an output
5157  *
5158  * Find the most suitable mode to use for initial setup (or reconfiguration on
5159  * hotplug etc) for a DRM output.
5160  *
5161  * @param output DRM output to choose mode for
5162  * @param kind Strategy and preference to use when choosing mode
5163  * @param width Desired width for this output
5164  * @param height Desired height for this output
5165  * @param current_mode Mode currently being displayed on this output
5166  * @param modeline Manually-entered mode (may be NULL)
5167  * @returns A mode from the output's mode list, or NULL if none available
5168  */
5169 static struct drm_mode *
5170 drm_output_choose_initial_mode(struct drm_backend *backend,
5171                                struct drm_output *output,
5172                                enum weston_drm_backend_output_mode mode,
5173                                const char *modeline,
5174                                const drmModeModeInfo *current_mode)
5175 {
5176         struct drm_mode *preferred = NULL;
5177         struct drm_mode *current = NULL;
5178         struct drm_mode *configured = NULL;
5179         struct drm_mode *config_fall_back = NULL;
5180         struct drm_mode *best = NULL;
5181         struct drm_mode *drm_mode;
5182         drmModeModeInfo drm_modeline;
5183         int32_t width = 0;
5184         int32_t height = 0;
5185         uint32_t refresh = 0;
5186         uint32_t aspect_width = 0;
5187         uint32_t aspect_height = 0;
5188         enum weston_mode_aspect_ratio aspect_ratio = WESTON_MODE_PIC_AR_NONE;
5189         int n;
5190
5191         if (mode == WESTON_DRM_BACKEND_OUTPUT_PREFERRED && modeline) {
5192                 n = sscanf(modeline, "%dx%d@%d %u:%u", &width, &height,
5193                            &refresh, &aspect_width, &aspect_height);
5194                 if (backend->aspect_ratio_supported && n == 5) {
5195                         if (aspect_width == 4 && aspect_height == 3)
5196                                 aspect_ratio = WESTON_MODE_PIC_AR_4_3;
5197                         else if (aspect_width == 16 && aspect_height == 9)
5198                                 aspect_ratio = WESTON_MODE_PIC_AR_16_9;
5199                         else if (aspect_width == 64 && aspect_height == 27)
5200                                 aspect_ratio = WESTON_MODE_PIC_AR_64_27;
5201                         else if (aspect_width == 256 && aspect_height == 135)
5202                                 aspect_ratio = WESTON_MODE_PIC_AR_256_135;
5203                         else
5204                                 weston_log("Invalid modeline \"%s\" for output %s\n",
5205                                            modeline, output->base.name);
5206                 }
5207                 if (n != 2 && n != 3 && n != 5) {
5208                         width = -1;
5209
5210                         if (parse_modeline(modeline, &drm_modeline) == 0) {
5211                                 configured = drm_output_add_mode(output, &drm_modeline);
5212                                 if (!configured)
5213                                         return NULL;
5214                         } else {
5215                                 weston_log("Invalid modeline \"%s\" for output %s\n",
5216                                            modeline, output->base.name);
5217                         }
5218                 }
5219         }
5220
5221         wl_list_for_each_reverse(drm_mode, &output->base.mode_list, base.link) {
5222                 if (width == drm_mode->base.width &&
5223                     height == drm_mode->base.height &&
5224                     (refresh == 0 || refresh == drm_mode->mode_info.vrefresh)) {
5225                         if (!backend->aspect_ratio_supported ||
5226                             aspect_ratio == drm_mode->base.aspect_ratio)
5227                                 configured = drm_mode;
5228                         else
5229                                 config_fall_back = drm_mode;
5230                 }
5231
5232                 if (memcmp(current_mode, &drm_mode->mode_info,
5233                            sizeof *current_mode) == 0)
5234                         current = drm_mode;
5235
5236                 if (drm_mode->base.flags & WL_OUTPUT_MODE_PREFERRED)
5237                         preferred = drm_mode;
5238
5239                 best = drm_mode;
5240         }
5241
5242         if (current == NULL && current_mode->clock != 0) {
5243                 current = drm_output_add_mode(output, current_mode);
5244                 if (!current)
5245                         return NULL;
5246         }
5247
5248         if (mode == WESTON_DRM_BACKEND_OUTPUT_CURRENT)
5249                 configured = current;
5250
5251         if (configured)
5252                 return configured;
5253
5254         if (config_fall_back)
5255                 return config_fall_back;
5256
5257         if (preferred)
5258                 return preferred;
5259
5260         if (current)
5261                 return current;
5262
5263         if (best)
5264                 return best;
5265
5266         weston_log("no available modes for %s\n", output->base.name);
5267         return NULL;
5268 }
5269
5270 static int
5271 drm_head_read_current_setup(struct drm_head *head, struct drm_backend *backend)
5272 {
5273         int drm_fd = backend->drm.fd;
5274         drmModeEncoder *encoder;
5275         drmModeCrtc *crtc;
5276
5277         /* Get the current mode on the crtc that's currently driving
5278          * this connector. */
5279         encoder = drmModeGetEncoder(drm_fd, head->connector->encoder_id);
5280         if (encoder != NULL) {
5281                 head->inherited_crtc_id = encoder->crtc_id;
5282
5283                 crtc = drmModeGetCrtc(drm_fd, encoder->crtc_id);
5284                 drmModeFreeEncoder(encoder);
5285
5286                 if (crtc == NULL)
5287                         return -1;
5288                 if (crtc->mode_valid)
5289                         head->inherited_mode = crtc->mode;
5290                 drmModeFreeCrtc(crtc);
5291         }
5292
5293         return 0;
5294 }
5295
5296 static int
5297 drm_output_set_mode(struct weston_output *base,
5298                     enum weston_drm_backend_output_mode mode,
5299                     const char *modeline)
5300 {
5301         struct drm_output *output = to_drm_output(base);
5302         struct drm_backend *b = to_drm_backend(base->compositor);
5303         struct drm_head *head = to_drm_head(weston_output_get_first_head(base));
5304
5305         struct drm_mode *current;
5306
5307         if (drm_output_update_modelist_from_heads(output) < 0)
5308                 return -1;
5309
5310         current = drm_output_choose_initial_mode(b, output, mode, modeline,
5311                                                  &head->inherited_mode);
5312         if (!current)
5313                 return -1;
5314
5315         output->base.current_mode = &current->base;
5316         output->base.current_mode->flags |= WL_OUTPUT_MODE_CURRENT;
5317
5318         /* Set native_ fields, so weston_output_mode_switch_to_native() works */
5319         output->base.native_mode = output->base.current_mode;
5320         output->base.native_scale = output->base.current_scale;
5321
5322         return 0;
5323 }
5324
5325 static void
5326 drm_output_set_gbm_format(struct weston_output *base,
5327                           const char *gbm_format)
5328 {
5329         struct drm_output *output = to_drm_output(base);
5330         struct drm_backend *b = to_drm_backend(base->compositor);
5331
5332         if (parse_gbm_format(gbm_format, b->gbm_format, &output->gbm_format) == -1)
5333                 output->gbm_format = b->gbm_format;
5334
5335         /* Without universal planes, we can't discover which formats are
5336          * supported by the primary plane; we just hope that the GBM format
5337          * works. */
5338         if (!b->universal_planes)
5339                 output->scanout_plane->formats[0].format = output->gbm_format;
5340 }
5341
5342 static void
5343 drm_output_set_seat(struct weston_output *base,
5344                     const char *seat)
5345 {
5346         struct drm_output *output = to_drm_output(base);
5347         struct drm_backend *b = to_drm_backend(base->compositor);
5348
5349         setup_output_seat_constraint(b, &output->base,
5350                                      seat ? seat : "");
5351 }
5352
5353 static int
5354 drm_output_init_gamma_size(struct drm_output *output)
5355 {
5356         struct drm_backend *backend = to_drm_backend(output->base.compositor);
5357         drmModeCrtc *crtc;
5358
5359         assert(output->base.compositor);
5360         assert(output->crtc_id != 0);
5361         crtc = drmModeGetCrtc(backend->drm.fd, output->crtc_id);
5362         if (!crtc)
5363                 return -1;
5364
5365         output->base.gamma_size = crtc->gamma_size;
5366
5367         drmModeFreeCrtc(crtc);
5368
5369         return 0;
5370 }
5371
5372 static uint32_t
5373 drm_head_get_possible_crtcs_mask(struct drm_head *head)
5374 {
5375         uint32_t possible_crtcs = 0;
5376         drmModeEncoder *encoder;
5377         int i;
5378
5379         for (i = 0; i < head->connector->count_encoders; i++) {
5380                 encoder = drmModeGetEncoder(head->backend->drm.fd,
5381                                             head->connector->encoders[i]);
5382                 if (!encoder)
5383                         continue;
5384
5385                 possible_crtcs |= encoder->possible_crtcs;
5386                 drmModeFreeEncoder(encoder);
5387         }
5388
5389         return possible_crtcs;
5390 }
5391
5392 static int
5393 drm_crtc_get_index(drmModeRes *resources, uint32_t crtc_id)
5394 {
5395         int i;
5396
5397         for (i = 0; i < resources->count_crtcs; i++) {
5398                 if (resources->crtcs[i] == crtc_id)
5399                         return i;
5400         }
5401
5402         assert(0 && "unknown crtc id");
5403         return -1;
5404 }
5405
5406 /** Pick a CRTC that might be able to drive all attached connectors
5407  *
5408  * @param output The output whose attached heads to include.
5409  * @param resources The DRM KMS resources.
5410  * @return CRTC index, or -1 on failure or not found.
5411  */
5412 static int
5413 drm_output_pick_crtc(struct drm_output *output, drmModeRes *resources)
5414 {
5415         struct drm_backend *backend;
5416         struct weston_head *base;
5417         struct drm_head *head;
5418         uint32_t possible_crtcs = 0xffffffff;
5419         int existing_crtc[32];
5420         unsigned j, n = 0;
5421         uint32_t crtc_id;
5422         int best_crtc_index = -1;
5423         int fallback_crtc_index = -1;
5424         int i;
5425         bool match;
5426
5427         backend = to_drm_backend(output->base.compositor);
5428
5429         /* This algorithm ignores drmModeEncoder::possible_clones restriction,
5430          * because it is more often set wrong than not in the kernel. */
5431
5432         /* Accumulate a mask of possible crtcs and find existing routings. */
5433         wl_list_for_each(base, &output->base.head_list, output_link) {
5434                 head = to_drm_head(base);
5435
5436                 possible_crtcs &= drm_head_get_possible_crtcs_mask(head);
5437
5438                 crtc_id = head->inherited_crtc_id;
5439                 if (crtc_id > 0 && n < ARRAY_LENGTH(existing_crtc))
5440                         existing_crtc[n++] = drm_crtc_get_index(resources,
5441                                                                 crtc_id);
5442         }
5443
5444         /* Find a crtc that could drive each connector individually at least,
5445          * and prefer existing routings. */
5446         for (i = 0; i < resources->count_crtcs; i++) {
5447                 crtc_id = resources->crtcs[i];
5448
5449                 /* Could the crtc not drive each connector? */
5450                 if (!(possible_crtcs & (1 << i)))
5451                         continue;
5452
5453                 /* Is the crtc already in use? */
5454                 if (drm_output_find_by_crtc(backend, crtc_id))
5455                         continue;
5456
5457                 /* Try to preserve the existing CRTC -> connector routing;
5458                  * it makes initialisation faster, and also since we have a
5459                  * very dumb picking algorithm, may preserve a better
5460                  * choice. */
5461                 for (j = 0; j < n; j++) {
5462                         if (existing_crtc[j] == i)
5463                                 return i;
5464                 }
5465
5466                 /* Check if any other head had existing routing to this CRTC.
5467                  * If they did, this is not the best CRTC as it might be needed
5468                  * for another output we haven't enabled yet. */
5469                 match = false;
5470                 wl_list_for_each(base, &backend->compositor->head_list,
5471                                  compositor_link) {
5472                         head = to_drm_head(base);
5473
5474                         if (head->base.output == &output->base)
5475                                 continue;
5476
5477                         if (weston_head_is_enabled(&head->base))
5478                                 continue;
5479
5480                         if (head->inherited_crtc_id == crtc_id) {
5481                                 match = true;
5482                                 break;
5483                         }
5484                 }
5485                 if (!match)
5486                         best_crtc_index = i;
5487
5488                 fallback_crtc_index = i;
5489         }
5490
5491         if (best_crtc_index != -1)
5492                 return best_crtc_index;
5493
5494         if (fallback_crtc_index != -1)
5495                 return fallback_crtc_index;
5496
5497         /* Likely possible_crtcs was empty due to asking for clones,
5498          * but since the DRM documentation says the kernel lies, let's
5499          * pick one crtc anyway. Trial and error is the only way to
5500          * be sure if something doesn't work. */
5501
5502         /* First pick any existing assignment. */
5503         for (j = 0; j < n; j++) {
5504                 crtc_id = resources->crtcs[existing_crtc[j]];
5505                 if (!drm_output_find_by_crtc(backend, crtc_id))
5506                         return existing_crtc[j];
5507         }
5508
5509         /* Otherwise pick any available crtc. */
5510         for (i = 0; i < resources->count_crtcs; i++) {
5511                 crtc_id = resources->crtcs[i];
5512
5513                 if (!drm_output_find_by_crtc(backend, crtc_id))
5514                         return i;
5515         }
5516
5517         return -1;
5518 }
5519
5520 /** Allocate a CRTC for the output
5521  *
5522  * @param output The output with no allocated CRTC.
5523  * @param resources DRM KMS resources.
5524  * @return 0 on success, -1 on failure.
5525  *
5526  * Finds a free CRTC that might drive the attached connectors, reserves the CRTC
5527  * for the output, and loads the CRTC properties.
5528  *
5529  * Populates the cursor and scanout planes.
5530  *
5531  * On failure, the output remains without a CRTC.
5532  */
5533 static int
5534 drm_output_init_crtc(struct drm_output *output, drmModeRes *resources)
5535 {
5536         struct drm_backend *b = to_drm_backend(output->base.compositor);
5537         drmModeObjectPropertiesPtr props;
5538         int i;
5539
5540         assert(output->crtc_id == 0);
5541
5542         i = drm_output_pick_crtc(output, resources);
5543         if (i < 0) {
5544                 weston_log("Output '%s': No available CRTCs.\n",
5545                            output->base.name);
5546                 return -1;
5547         }
5548
5549         output->crtc_id = resources->crtcs[i];
5550         output->pipe = i;
5551
5552         props = drmModeObjectGetProperties(b->drm.fd, output->crtc_id,
5553                                            DRM_MODE_OBJECT_CRTC);
5554         if (!props) {
5555                 weston_log("failed to get CRTC properties\n");
5556                 goto err_crtc;
5557         }
5558         drm_property_info_populate(b, crtc_props, output->props_crtc,
5559                                    WDRM_CRTC__COUNT, props);
5560         drmModeFreeObjectProperties(props);
5561
5562         output->scanout_plane =
5563                 drm_output_find_special_plane(b, output,
5564                                               WDRM_PLANE_TYPE_PRIMARY);
5565         if (!output->scanout_plane) {
5566                 weston_log("Failed to find primary plane for output %s\n",
5567                            output->base.name);
5568                 goto err_crtc;
5569         }
5570
5571         /* Failing to find a cursor plane is not fatal, as we'll fall back
5572          * to software cursor. */
5573         output->cursor_plane =
5574                 drm_output_find_special_plane(b, output,
5575                                               WDRM_PLANE_TYPE_CURSOR);
5576
5577         wl_array_remove_uint32(&b->unused_crtcs, output->crtc_id);
5578
5579         return 0;
5580
5581 err_crtc:
5582         output->crtc_id = 0;
5583         output->pipe = 0;
5584
5585         return -1;
5586 }
5587
5588 /** Free the CRTC from the output
5589  *
5590  * @param output The output whose CRTC to deallocate.
5591  *
5592  * The CRTC reserved for the given output becomes free to use again.
5593  */
5594 static void
5595 drm_output_fini_crtc(struct drm_output *output)
5596 {
5597         struct drm_backend *b = to_drm_backend(output->base.compositor);
5598         uint32_t *unused;
5599
5600         if (!b->universal_planes && !b->shutting_down) {
5601                 /* With universal planes, the 'special' planes are allocated at
5602                  * startup, freed at shutdown, and live on the plane list in
5603                  * between. We want the planes to continue to exist and be freed
5604                  * up for other outputs.
5605                  *
5606                  * Without universal planes, our special planes are
5607                  * pseudo-planes allocated at output creation, freed at output
5608                  * destruction, and not usable by other outputs.
5609                  *
5610                  * On the other hand, if the compositor is already shutting down,
5611                  * the plane has already been destroyed.
5612                  */
5613                 if (output->cursor_plane)
5614                         drm_plane_destroy(output->cursor_plane);
5615                 if (output->scanout_plane)
5616                         drm_plane_destroy(output->scanout_plane);
5617         }
5618
5619         drm_property_info_free(output->props_crtc, WDRM_CRTC__COUNT);
5620
5621         assert(output->crtc_id != 0);
5622
5623         unused = wl_array_add(&b->unused_crtcs, sizeof(*unused));
5624         *unused = output->crtc_id;
5625
5626         /* Force resetting unused CRTCs */
5627         b->state_invalid = true;
5628
5629         output->crtc_id = 0;
5630         output->cursor_plane = NULL;
5631         output->scanout_plane = NULL;
5632 }
5633
5634 static void
5635 drm_output_print_modes(struct drm_output *output)
5636 {
5637         struct weston_mode *m;
5638         struct drm_mode *dm;
5639         const char *aspect_ratio;
5640
5641         wl_list_for_each(m, &output->base.mode_list, link) {
5642                 dm = to_drm_mode(m);
5643
5644                 aspect_ratio = aspect_ratio_to_string(m->aspect_ratio);
5645                 weston_log_continue(STAMP_SPACE "%dx%d@%.1f%s%s%s, %.1f MHz\n",
5646                                     m->width, m->height, m->refresh / 1000.0,
5647                                     aspect_ratio,
5648                                     m->flags & WL_OUTPUT_MODE_PREFERRED ?
5649                                     ", preferred" : "",
5650                                     m->flags & WL_OUTPUT_MODE_CURRENT ?
5651                                     ", current" : "",
5652                                     dm->mode_info.clock / 1000.0);
5653         }
5654 }
5655
5656 static int
5657 drm_output_enable(struct weston_output *base)
5658 {
5659         struct drm_output *output = to_drm_output(base);
5660         struct drm_backend *b = to_drm_backend(base->compositor);
5661         drmModeRes *resources;
5662         int ret;
5663
5664         resources = drmModeGetResources(b->drm.fd);
5665         if (!resources) {
5666                 weston_log("drmModeGetResources failed\n");
5667                 return -1;
5668         }
5669         ret = drm_output_init_crtc(output, resources);
5670         drmModeFreeResources(resources);
5671         if (ret < 0)
5672                 return -1;
5673
5674         if (drm_output_init_gamma_size(output) < 0)
5675                 goto err;
5676
5677         if (b->pageflip_timeout)
5678                 drm_output_pageflip_timer_create(output);
5679
5680         if (b->use_pixman) {
5681                 if (drm_output_init_pixman(output, b) < 0) {
5682                         weston_log("Failed to init output pixman state\n");
5683                         goto err;
5684                 }
5685         } else if (drm_output_init_egl(output, b) < 0) {
5686                 weston_log("Failed to init output gl state\n");
5687                 goto err;
5688         }
5689
5690         drm_output_init_backlight(output);
5691
5692         output->base.start_repaint_loop = drm_output_start_repaint_loop;
5693         output->base.repaint = drm_output_repaint;
5694         output->base.assign_planes = drm_assign_planes;
5695         output->base.set_dpms = drm_set_dpms;
5696         output->base.switch_mode = drm_output_switch_mode;
5697         output->base.set_gamma = drm_output_set_gamma;
5698
5699         if (output->cursor_plane)
5700                 weston_compositor_stack_plane(b->compositor,
5701                                               &output->cursor_plane->base,
5702                                               NULL);
5703         else
5704                 b->cursors_are_broken = 1;
5705
5706         weston_compositor_stack_plane(b->compositor,
5707                                       &output->scanout_plane->base,
5708                                       &b->compositor->primary_plane);
5709
5710         weston_log("Output %s (crtc %d) video modes:\n",
5711                    output->base.name, output->crtc_id);
5712         drm_output_print_modes(output);
5713
5714         return 0;
5715
5716 err:
5717         drm_output_fini_crtc(output);
5718
5719         return -1;
5720 }
5721
5722 static void
5723 drm_output_deinit(struct weston_output *base)
5724 {
5725         struct drm_output *output = to_drm_output(base);
5726         struct drm_backend *b = to_drm_backend(base->compositor);
5727
5728         if (b->use_pixman)
5729                 drm_output_fini_pixman(output);
5730         else
5731                 drm_output_fini_egl(output);
5732
5733         /* Since our planes are no longer in use anywhere, remove their base
5734          * weston_plane's link from the plane stacking list, unless we're
5735          * shutting down, in which case the plane has already been
5736          * destroyed. */
5737         if (!b->shutting_down) {
5738                 wl_list_remove(&output->scanout_plane->base.link);
5739                 wl_list_init(&output->scanout_plane->base.link);
5740
5741                 if (output->cursor_plane) {
5742                         wl_list_remove(&output->cursor_plane->base.link);
5743                         wl_list_init(&output->cursor_plane->base.link);
5744                         /* Turn off hardware cursor */
5745                         drmModeSetCursor(b->drm.fd, output->crtc_id, 0, 0, 0);
5746                 }
5747         }
5748
5749         drm_output_fini_crtc(output);
5750 }
5751
5752 static void
5753 drm_head_destroy(struct drm_head *head);
5754
5755 static void
5756 drm_output_destroy(struct weston_output *base)
5757 {
5758         struct drm_output *output = to_drm_output(base);
5759         struct drm_backend *b = to_drm_backend(base->compositor);
5760
5761         if (output->page_flip_pending || output->vblank_pending ||
5762             output->atomic_complete_pending) {
5763                 output->destroy_pending = 1;
5764                 weston_log("destroy output while page flip pending\n");
5765                 return;
5766         }
5767
5768         if (output->base.enabled)
5769                 drm_output_deinit(&output->base);
5770
5771         drm_mode_list_destroy(b, &output->base.mode_list);
5772
5773         if (output->pageflip_timer)
5774                 wl_event_source_remove(output->pageflip_timer);
5775
5776         weston_output_release(&output->base);
5777
5778         assert(!output->state_last);
5779         drm_output_state_free(output->state_cur);
5780
5781         free(output);
5782 }
5783
5784 static int
5785 drm_output_disable(struct weston_output *base)
5786 {
5787         struct drm_output *output = to_drm_output(base);
5788
5789         if (output->page_flip_pending || output->vblank_pending ||
5790             output->atomic_complete_pending) {
5791                 output->disable_pending = 1;
5792                 return -1;
5793         }
5794
5795         weston_log("Disabling output %s\n", output->base.name);
5796
5797         if (output->base.enabled)
5798                 drm_output_deinit(&output->base);
5799
5800         output->disable_pending = 0;
5801
5802         return 0;
5803 }
5804
5805 /**
5806  * Update the list of unused connectors and CRTCs
5807  *
5808  * This keeps the unused_crtc arrays up to date.
5809  *
5810  * @param b Weston backend structure
5811  * @param resources DRM resources for this device
5812  */
5813 static void
5814 drm_backend_update_unused_outputs(struct drm_backend *b, drmModeRes *resources)
5815 {
5816         int i;
5817
5818         wl_array_release(&b->unused_crtcs);
5819         wl_array_init(&b->unused_crtcs);
5820
5821         for (i = 0; i < resources->count_crtcs; i++) {
5822                 struct drm_output *output;
5823                 uint32_t *crtc_id;
5824
5825                 output = drm_output_find_by_crtc(b, resources->crtcs[i]);
5826                 if (output && output->base.enabled)
5827                         continue;
5828
5829                 crtc_id = wl_array_add(&b->unused_crtcs, sizeof(*crtc_id));
5830                 *crtc_id = resources->crtcs[i];
5831         }
5832 }
5833
5834 /** Replace connector data and monitor information
5835  *
5836  * @param head The head to update.
5837  * @param connector The connector data to be owned by the head, must match
5838  * the head's connector ID.
5839  * @return 0 on success, -1 on failure.
5840  *
5841  * Takes ownership of @c connector on success, not on failure.
5842  *
5843  * May schedule a heads changed call.
5844  */
5845 static int
5846 drm_head_assign_connector_info(struct drm_head *head,
5847                                drmModeConnector *connector)
5848 {
5849         drmModeObjectProperties *props;
5850         const char *make = "unknown";
5851         const char *model = "unknown";
5852         const char *serial_number = "unknown";
5853
5854         assert(connector);
5855         assert(head->connector_id == connector->connector_id);
5856
5857         props = drmModeObjectGetProperties(head->backend->drm.fd,
5858                                            head->connector_id,
5859                                            DRM_MODE_OBJECT_CONNECTOR);
5860         if (!props) {
5861                 weston_log("Error: failed to get connector '%s' properties\n",
5862                            head->base.name);
5863                 return -1;
5864         }
5865
5866         if (head->connector)
5867                 drmModeFreeConnector(head->connector);
5868         head->connector = connector;
5869
5870         drm_property_info_populate(head->backend, connector_props,
5871                                    head->props_conn,
5872                                    WDRM_CONNECTOR__COUNT, props);
5873         find_and_parse_output_edid(head, props, &make, &model, &serial_number);
5874         weston_head_set_monitor_strings(&head->base, make, model, serial_number);
5875         weston_head_set_subpixel(&head->base,
5876                 drm_subpixel_to_wayland(head->connector->subpixel));
5877
5878         weston_head_set_physical_size(&head->base, head->connector->mmWidth,
5879                                       head->connector->mmHeight);
5880
5881         drmModeFreeObjectProperties(props);
5882
5883         /* Unknown connection status is assumed disconnected. */
5884         weston_head_set_connection_status(&head->base,
5885                         head->connector->connection == DRM_MODE_CONNECTED);
5886
5887         return 0;
5888 }
5889
5890 static void
5891 drm_head_log_info(struct drm_head *head, const char *msg)
5892 {
5893         if (head->base.connected) {
5894                 weston_log("DRM: head '%s' %s, connector %d is connected, "
5895                            "EDID make '%s', model '%s', serial '%s'\n",
5896                            head->base.name, msg, head->connector_id,
5897                            head->base.make, head->base.model,
5898                            head->base.serial_number ?: "");
5899         } else {
5900                 weston_log("DRM: head '%s' %s, connector %d is disconnected.\n",
5901                            head->base.name, msg, head->connector_id);
5902         }
5903 }
5904
5905 /** Update connector and monitor information
5906  *
5907  * @param head The head to update.
5908  *
5909  * Re-reads the DRM property lists for the connector and updates monitor
5910  * information and connection status. This may schedule a heads changed call
5911  * to the user.
5912  */
5913 static void
5914 drm_head_update_info(struct drm_head *head)
5915 {
5916         drmModeConnector *connector;
5917
5918         connector = drmModeGetConnector(head->backend->drm.fd,
5919                                         head->connector_id);
5920         if (!connector) {
5921                 weston_log("DRM: getting connector info for '%s' failed.\n",
5922                            head->base.name);
5923                 return;
5924         }
5925
5926         if (drm_head_assign_connector_info(head, connector) < 0)
5927                 drmModeFreeConnector(connector);
5928
5929         if (head->base.device_changed)
5930                 drm_head_log_info(head, "updated");
5931 }
5932
5933 /**
5934  * Create a Weston head for a connector
5935  *
5936  * Given a DRM connector, create a matching drm_head structure and add it
5937  * to Weston's head list.
5938  *
5939  * @param b Weston backend structure
5940  * @param connector_id DRM connector ID for the head
5941  * @param drm_device udev device pointer
5942  * @returns The new head, or NULL on failure.
5943  */
5944 static struct drm_head *
5945 drm_head_create(struct drm_backend *backend, uint32_t connector_id,
5946                 struct udev_device *drm_device)
5947 {
5948         struct drm_head *head;
5949         drmModeConnector *connector;
5950         char *name;
5951
5952         head = zalloc(sizeof *head);
5953         if (!head)
5954                 return NULL;
5955
5956         connector = drmModeGetConnector(backend->drm.fd, connector_id);
5957         if (!connector)
5958                 goto err_alloc;
5959
5960         name = make_connector_name(connector);
5961         if (!name)
5962                 goto err_alloc;
5963
5964         weston_head_init(&head->base, name);
5965         free(name);
5966
5967         head->connector_id = connector_id;
5968         head->backend = backend;
5969
5970         head->backlight = backlight_init(drm_device, connector->connector_type);
5971
5972         if (drm_head_assign_connector_info(head, connector) < 0)
5973                 goto err_init;
5974
5975         if (head->connector->connector_type == DRM_MODE_CONNECTOR_LVDS ||
5976             head->connector->connector_type == DRM_MODE_CONNECTOR_eDP)
5977                 weston_head_set_internal(&head->base);
5978
5979         if (drm_head_read_current_setup(head, backend) < 0) {
5980                 weston_log("Failed to retrieve current mode from connector %d.\n",
5981                            head->connector_id);
5982                 /* Not fatal. */
5983         }
5984
5985         weston_compositor_add_head(backend->compositor, &head->base);
5986         drm_head_log_info(head, "found");
5987
5988         return head;
5989
5990 err_init:
5991         weston_head_release(&head->base);
5992
5993 err_alloc:
5994         if (connector)
5995                 drmModeFreeConnector(connector);
5996
5997         free(head);
5998
5999         return NULL;
6000 }
6001
6002 static void
6003 drm_head_destroy(struct drm_head *head)
6004 {
6005         weston_head_release(&head->base);
6006
6007         drm_property_info_free(head->props_conn, WDRM_CONNECTOR__COUNT);
6008         drmModeFreeConnector(head->connector);
6009
6010         if (head->backlight)
6011                 backlight_destroy(head->backlight);
6012
6013         free(head);
6014 }
6015
6016 /**
6017  * Create a Weston output structure
6018  *
6019  * Create an "empty" drm_output. This is the implementation of
6020  * weston_backend::create_output.
6021  *
6022  * Creating an output is usually followed by drm_output_attach_head()
6023  * and drm_output_enable() to make use of it.
6024  *
6025  * @param compositor The compositor instance.
6026  * @param name Name for the new output.
6027  * @returns The output, or NULL on failure.
6028  */
6029 static struct weston_output *
6030 drm_output_create(struct weston_compositor *compositor, const char *name)
6031 {
6032         struct drm_backend *b = to_drm_backend(compositor);
6033         struct drm_output *output;
6034
6035         output = zalloc(sizeof *output);
6036         if (output == NULL)
6037                 return NULL;
6038
6039         weston_output_init(&output->base, compositor, name);
6040
6041         output->base.enable = drm_output_enable;
6042         output->base.destroy = drm_output_destroy;
6043         output->base.disable = drm_output_disable;
6044         output->base.attach_head = drm_output_attach_head;
6045         output->base.detach_head = drm_output_detach_head;
6046
6047         output->destroy_pending = 0;
6048         output->disable_pending = 0;
6049
6050         output->state_cur = drm_output_state_alloc(output, NULL);
6051
6052         weston_compositor_add_pending_output(&output->base, b->compositor);
6053
6054         return &output->base;
6055 }
6056
6057 static int
6058 drm_backend_create_heads(struct drm_backend *b, struct udev_device *drm_device)
6059 {
6060         struct drm_head *head;
6061         drmModeRes *resources;
6062         int i;
6063
6064         resources = drmModeGetResources(b->drm.fd);
6065         if (!resources) {
6066                 weston_log("drmModeGetResources failed\n");
6067                 return -1;
6068         }
6069
6070         b->min_width  = resources->min_width;
6071         b->max_width  = resources->max_width;
6072         b->min_height = resources->min_height;
6073         b->max_height = resources->max_height;
6074
6075         for (i = 0; i < resources->count_connectors; i++) {
6076                 uint32_t connector_id = resources->connectors[i];
6077
6078                 head = drm_head_create(b, connector_id, drm_device);
6079                 if (!head) {
6080                         weston_log("DRM: failed to create head for connector %d.\n",
6081                                    connector_id);
6082                 }
6083         }
6084
6085         drm_backend_update_unused_outputs(b, resources);
6086
6087         drmModeFreeResources(resources);
6088
6089         return 0;
6090 }
6091
6092 static void
6093 drm_backend_update_heads(struct drm_backend *b, struct udev_device *drm_device)
6094 {
6095         drmModeRes *resources;
6096         struct weston_head *base, *next;
6097         struct drm_head *head;
6098         int i;
6099
6100         resources = drmModeGetResources(b->drm.fd);
6101         if (!resources) {
6102                 weston_log("drmModeGetResources failed\n");
6103                 return;
6104         }
6105
6106         /* collect new connectors that have appeared, e.g. MST */
6107         for (i = 0; i < resources->count_connectors; i++) {
6108                 uint32_t connector_id = resources->connectors[i];
6109
6110                 head = drm_head_find_by_connector(b, connector_id);
6111                 if (head) {
6112                         drm_head_update_info(head);
6113                 } else {
6114                         head = drm_head_create(b, connector_id, drm_device);
6115                         if (!head)
6116                                 weston_log("DRM: failed to create head for hot-added connector %d.\n",
6117                                            connector_id);
6118                 }
6119         }
6120
6121         /* Remove connectors that have disappeared. */
6122         wl_list_for_each_safe(base, next,
6123                               &b->compositor->head_list, compositor_link) {
6124                 bool removed = true;
6125
6126                 head = to_drm_head(base);
6127
6128                 for (i = 0; i < resources->count_connectors; i++) {
6129                         if (resources->connectors[i] == head->connector_id) {
6130                                 removed = false;
6131                                 break;
6132                         }
6133                 }
6134
6135                 if (!removed)
6136                         continue;
6137
6138                 weston_log("DRM: head '%s' (connector %d) disappeared.\n",
6139                            head->base.name, head->connector_id);
6140                 drm_head_destroy(head);
6141         }
6142
6143         drm_backend_update_unused_outputs(b, resources);
6144
6145         drmModeFreeResources(resources);
6146 }
6147
6148 static int
6149 udev_event_is_hotplug(struct drm_backend *b, struct udev_device *device)
6150 {
6151         const char *sysnum;
6152         const char *val;
6153
6154         sysnum = udev_device_get_sysnum(device);
6155         if (!sysnum || atoi(sysnum) != b->drm.id)
6156                 return 0;
6157
6158         val = udev_device_get_property_value(device, "HOTPLUG");
6159         if (!val)
6160                 return 0;
6161
6162         return strcmp(val, "1") == 0;
6163 }
6164
6165 static int
6166 udev_drm_event(int fd, uint32_t mask, void *data)
6167 {
6168         struct drm_backend *b = data;
6169         struct udev_device *event;
6170
6171         event = udev_monitor_receive_device(b->udev_monitor);
6172
6173         if (udev_event_is_hotplug(b, event))
6174                 drm_backend_update_heads(b, event);
6175
6176         udev_device_unref(event);
6177
6178         return 1;
6179 }
6180
6181 static void
6182 drm_destroy(struct weston_compositor *ec)
6183 {
6184         struct drm_backend *b = to_drm_backend(ec);
6185         struct weston_head *base, *next;
6186
6187         udev_input_destroy(&b->input);
6188
6189         wl_event_source_remove(b->udev_drm_source);
6190         wl_event_source_remove(b->drm_source);
6191
6192         b->shutting_down = true;
6193
6194         destroy_sprites(b);
6195
6196         weston_compositor_shutdown(ec);
6197
6198         wl_list_for_each_safe(base, next, &ec->head_list, compositor_link)
6199                 drm_head_destroy(to_drm_head(base));
6200
6201         if (b->gbm)
6202                 gbm_device_destroy(b->gbm);
6203
6204         udev_monitor_unref(b->udev_monitor);
6205         udev_unref(b->udev);
6206
6207         weston_launcher_destroy(ec->launcher);
6208
6209         wl_array_release(&b->unused_crtcs);
6210
6211         close(b->drm.fd);
6212         free(b->drm.filename);
6213         free(b);
6214 }
6215
6216 static void
6217 session_notify(struct wl_listener *listener, void *data)
6218 {
6219         struct weston_compositor *compositor = data;
6220         struct drm_backend *b = to_drm_backend(compositor);
6221         struct drm_plane *plane;
6222         struct drm_output *output;
6223
6224         if (compositor->session_active) {
6225                 weston_log("activating session\n");
6226                 weston_compositor_wake(compositor);
6227                 weston_compositor_damage_all(compositor);
6228                 b->state_invalid = true;
6229                 udev_input_enable(&b->input);
6230         } else {
6231                 weston_log("deactivating session\n");
6232                 udev_input_disable(&b->input);
6233
6234                 weston_compositor_offscreen(compositor);
6235
6236                 /* If we have a repaint scheduled (either from a
6237                  * pending pageflip or the idle handler), make sure we
6238                  * cancel that so we don't try to pageflip when we're
6239                  * vt switched away.  The OFFSCREEN state will prevent
6240                  * further attempts at repainting.  When we switch
6241                  * back, we schedule a repaint, which will process
6242                  * pending frame callbacks. */
6243
6244                 wl_list_for_each(output, &compositor->output_list, base.link) {
6245                         output->base.repaint_needed = false;
6246                         if (output->cursor_plane)
6247                                 drmModeSetCursor(b->drm.fd, output->crtc_id,
6248                                                  0, 0, 0);
6249                 }
6250
6251                 output = container_of(compositor->output_list.next,
6252                                       struct drm_output, base.link);
6253
6254                 wl_list_for_each(plane, &b->plane_list, link) {
6255                         if (plane->type != WDRM_PLANE_TYPE_OVERLAY)
6256                                 continue;
6257
6258                         drmModeSetPlane(b->drm.fd,
6259                                         plane->plane_id,
6260                                         output->crtc_id, 0, 0,
6261                                         0, 0, 0, 0, 0, 0, 0, 0);
6262                 }
6263         }
6264 }
6265
6266 /**
6267  * Determines whether or not a device is capable of modesetting. If successful,
6268  * sets b->drm.fd and b->drm.filename to the opened device.
6269  */
6270 static bool
6271 drm_device_is_kms(struct drm_backend *b, struct udev_device *device)
6272 {
6273         const char *filename = udev_device_get_devnode(device);
6274         const char *sysnum = udev_device_get_sysnum(device);
6275         drmModeRes *res;
6276         int id, fd;
6277
6278         if (!filename)
6279                 return false;
6280
6281         fd = weston_launcher_open(b->compositor->launcher, filename, O_RDWR);
6282         if (fd < 0)
6283                 return false;
6284
6285         res = drmModeGetResources(fd);
6286         if (!res)
6287                 goto out_fd;
6288
6289         if (res->count_crtcs <= 0 || res->count_connectors <= 0 ||
6290             res->count_encoders <= 0)
6291                 goto out_res;
6292
6293         if (sysnum)
6294                 id = atoi(sysnum);
6295         if (!sysnum || id < 0) {
6296                 weston_log("couldn't get sysnum for device %s\n", filename);
6297                 goto out_res;
6298         }
6299
6300         /* We can be called successfully on multiple devices; if we have,
6301          * clean up old entries. */
6302         if (b->drm.fd >= 0)
6303                 weston_launcher_close(b->compositor->launcher, b->drm.fd);
6304         free(b->drm.filename);
6305
6306         b->drm.fd = fd;
6307         b->drm.id = id;
6308         b->drm.filename = strdup(filename);
6309
6310         drmModeFreeResources(res);
6311
6312         return true;
6313
6314 out_res:
6315         drmModeFreeResources(res);
6316 out_fd:
6317         weston_launcher_close(b->compositor->launcher, fd);
6318         return false;
6319 }
6320
6321 /*
6322  * Find primary GPU
6323  * Some systems may have multiple DRM devices attached to a single seat. This
6324  * function loops over all devices and tries to find a PCI device with the
6325  * boot_vga sysfs attribute set to 1.
6326  * If no such device is found, the first DRM device reported by udev is used.
6327  * Devices are also vetted to make sure they are are capable of modesetting,
6328  * rather than pure render nodes (GPU with no display), or pure
6329  * memory-allocation devices (VGEM).
6330  */
6331 static struct udev_device*
6332 find_primary_gpu(struct drm_backend *b, const char *seat)
6333 {
6334         struct udev_enumerate *e;
6335         struct udev_list_entry *entry;
6336         const char *path, *device_seat, *id;
6337         struct udev_device *device, *drm_device, *pci;
6338
6339         e = udev_enumerate_new(b->udev);
6340         udev_enumerate_add_match_subsystem(e, "drm");
6341         udev_enumerate_add_match_sysname(e, "card[0-9]*");
6342
6343         udev_enumerate_scan_devices(e);
6344         drm_device = NULL;
6345         udev_list_entry_foreach(entry, udev_enumerate_get_list_entry(e)) {
6346                 bool is_boot_vga = false;
6347
6348                 path = udev_list_entry_get_name(entry);
6349                 device = udev_device_new_from_syspath(b->udev, path);
6350                 if (!device)
6351                         continue;
6352                 device_seat = udev_device_get_property_value(device, "ID_SEAT");
6353                 if (!device_seat)
6354                         device_seat = default_seat;
6355                 if (strcmp(device_seat, seat)) {
6356                         udev_device_unref(device);
6357                         continue;
6358                 }
6359
6360                 pci = udev_device_get_parent_with_subsystem_devtype(device,
6361                                                                 "pci", NULL);
6362                 if (pci) {
6363                         id = udev_device_get_sysattr_value(pci, "boot_vga");
6364                         if (id && !strcmp(id, "1"))
6365                                 is_boot_vga = true;
6366                 }
6367
6368                 /* If we already have a modesetting-capable device, and this
6369                  * device isn't our boot-VGA device, we aren't going to use
6370                  * it. */
6371                 if (!is_boot_vga && drm_device) {
6372                         udev_device_unref(device);
6373                         continue;
6374                 }
6375
6376                 /* Make sure this device is actually capable of modesetting;
6377                  * if this call succeeds, b->drm.{fd,filename} will be set,
6378                  * and any old values freed. */
6379                 if (!drm_device_is_kms(b, device)) {
6380                         udev_device_unref(device);
6381                         continue;
6382                 }
6383
6384                 /* There can only be one boot_vga device, and we try to use it
6385                  * at all costs. */
6386                 if (is_boot_vga) {
6387                         if (drm_device)
6388                                 udev_device_unref(drm_device);
6389                         drm_device = device;
6390                         break;
6391                 }
6392
6393                 /* Per the (!is_boot_vga && drm_device) test above, we only
6394                  * trump existing saved devices with boot-VGA devices, so if
6395                  * we end up here, this must be the first device we've seen. */
6396                 assert(!drm_device);
6397                 drm_device = device;
6398         }
6399
6400         /* If we're returning a device to use, we must have an open FD for
6401          * it. */
6402         assert(!!drm_device == (b->drm.fd >= 0));
6403
6404         udev_enumerate_unref(e);
6405         return drm_device;
6406 }
6407
6408 static struct udev_device *
6409 open_specific_drm_device(struct drm_backend *b, const char *name)
6410 {
6411         struct udev_device *device;
6412
6413         device = udev_device_new_from_subsystem_sysname(b->udev, "drm", name);
6414         if (!device) {
6415                 weston_log("ERROR: could not open DRM device '%s'\n", name);
6416                 return NULL;
6417         }
6418
6419         if (!drm_device_is_kms(b, device)) {
6420                 udev_device_unref(device);
6421                 weston_log("ERROR: DRM device '%s' is not a KMS device.\n", name);
6422                 return NULL;
6423         }
6424
6425         /* If we're returning a device to use, we must have an open FD for
6426          * it. */
6427         assert(b->drm.fd >= 0);
6428
6429         return device;
6430 }
6431
6432 static void
6433 planes_binding(struct weston_keyboard *keyboard, const struct timespec *time,
6434                uint32_t key, void *data)
6435 {
6436         struct drm_backend *b = data;
6437
6438         switch (key) {
6439         case KEY_C:
6440                 b->cursors_are_broken ^= 1;
6441                 break;
6442         case KEY_V:
6443                 b->sprites_are_broken ^= 1;
6444                 break;
6445         case KEY_O:
6446                 b->sprites_hidden ^= 1;
6447                 break;
6448         default:
6449                 break;
6450         }
6451 }
6452
6453 #ifdef BUILD_VAAPI_RECORDER
6454 static void
6455 recorder_destroy(struct drm_output *output)
6456 {
6457         vaapi_recorder_destroy(output->recorder);
6458         output->recorder = NULL;
6459
6460         output->base.disable_planes--;
6461
6462         wl_list_remove(&output->recorder_frame_listener.link);
6463         weston_log("[libva recorder] done\n");
6464 }
6465
6466 static void
6467 recorder_frame_notify(struct wl_listener *listener, void *data)
6468 {
6469         struct drm_output *output;
6470         struct drm_backend *b;
6471         int fd, ret;
6472
6473         output = container_of(listener, struct drm_output,
6474                               recorder_frame_listener);
6475         b = to_drm_backend(output->base.compositor);
6476
6477         if (!output->recorder)
6478                 return;
6479
6480         ret = drmPrimeHandleToFD(b->drm.fd,
6481                                  output->scanout_plane->state_cur->fb->handles[0],
6482                                  DRM_CLOEXEC, &fd);
6483         if (ret) {
6484                 weston_log("[libva recorder] "
6485                            "failed to create prime fd for front buffer\n");
6486                 return;
6487         }
6488
6489         ret = vaapi_recorder_frame(output->recorder, fd,
6490                                    output->scanout_plane->state_cur->fb->strides[0]);
6491         if (ret < 0) {
6492                 weston_log("[libva recorder] aborted: %m\n");
6493                 recorder_destroy(output);
6494         }
6495 }
6496
6497 static void *
6498 create_recorder(struct drm_backend *b, int width, int height,
6499                 const char *filename)
6500 {
6501         int fd;
6502         drm_magic_t magic;
6503
6504         fd = open(b->drm.filename, O_RDWR | O_CLOEXEC);
6505         if (fd < 0)
6506                 return NULL;
6507
6508         drmGetMagic(fd, &magic);
6509         drmAuthMagic(b->drm.fd, magic);
6510
6511         return vaapi_recorder_create(fd, width, height, filename);
6512 }
6513
6514 static void
6515 recorder_binding(struct weston_keyboard *keyboard, const struct timespec *time,
6516                  uint32_t key, void *data)
6517 {
6518         struct drm_backend *b = data;
6519         struct drm_output *output;
6520         int width, height;
6521
6522         output = container_of(b->compositor->output_list.next,
6523                               struct drm_output, base.link);
6524
6525         if (!output->recorder) {
6526                 if (output->gbm_format != GBM_FORMAT_XRGB8888) {
6527                         weston_log("failed to start vaapi recorder: "
6528                                    "output format not supported\n");
6529                         return;
6530                 }
6531
6532                 width = output->base.current_mode->width;
6533                 height = output->base.current_mode->height;
6534
6535                 output->recorder =
6536                         create_recorder(b, width, height, "capture.h264");
6537                 if (!output->recorder) {
6538                         weston_log("failed to create vaapi recorder\n");
6539                         return;
6540                 }
6541
6542                 output->base.disable_planes++;
6543
6544                 output->recorder_frame_listener.notify = recorder_frame_notify;
6545                 wl_signal_add(&output->base.frame_signal,
6546                               &output->recorder_frame_listener);
6547
6548                 weston_output_schedule_repaint(&output->base);
6549
6550                 weston_log("[libva recorder] initialized\n");
6551         } else {
6552                 recorder_destroy(output);
6553         }
6554 }
6555 #else
6556 static void
6557 recorder_binding(struct weston_keyboard *keyboard, const struct timespec *time,
6558                  uint32_t key, void *data)
6559 {
6560         weston_log("Compiled without libva support\n");
6561 }
6562 #endif
6563
6564 static void
6565 switch_to_gl_renderer(struct drm_backend *b)
6566 {
6567         struct drm_output *output;
6568         bool dmabuf_support_inited;
6569
6570         if (!b->use_pixman)
6571                 return;
6572
6573         dmabuf_support_inited = !!b->compositor->renderer->import_dmabuf;
6574
6575         weston_log("Switching to GL renderer\n");
6576
6577         b->gbm = create_gbm_device(b->drm.fd);
6578         if (!b->gbm) {
6579                 weston_log("Failed to create gbm device. "
6580                            "Aborting renderer switch\n");
6581                 return;
6582         }
6583
6584         wl_list_for_each(output, &b->compositor->output_list, base.link)
6585                 pixman_renderer_output_destroy(&output->base);
6586
6587         b->compositor->renderer->destroy(b->compositor);
6588
6589         if (drm_backend_create_gl_renderer(b) < 0) {
6590                 gbm_device_destroy(b->gbm);
6591                 weston_log("Failed to create GL renderer. Quitting.\n");
6592                 /* FIXME: we need a function to shutdown cleanly */
6593                 assert(0);
6594         }
6595
6596         wl_list_for_each(output, &b->compositor->output_list, base.link)
6597                 drm_output_init_egl(output, b);
6598
6599         b->use_pixman = 0;
6600
6601         if (!dmabuf_support_inited && b->compositor->renderer->import_dmabuf) {
6602                 if (linux_dmabuf_setup(b->compositor) < 0)
6603                         weston_log("Error: initializing dmabuf "
6604                                    "support failed.\n");
6605         }
6606 }
6607
6608 static void
6609 renderer_switch_binding(struct weston_keyboard *keyboard,
6610                         const struct timespec *time, uint32_t key, void *data)
6611 {
6612         struct drm_backend *b =
6613                 to_drm_backend(keyboard->seat->compositor);
6614
6615         switch_to_gl_renderer(b);
6616 }
6617
6618 static const struct weston_drm_output_api api = {
6619         drm_output_set_mode,
6620         drm_output_set_gbm_format,
6621         drm_output_set_seat,
6622 };
6623
6624 static struct drm_backend *
6625 drm_backend_create(struct weston_compositor *compositor,
6626                    struct weston_drm_backend_config *config)
6627 {
6628         struct drm_backend *b;
6629         struct udev_device *drm_device;
6630         struct wl_event_loop *loop;
6631         const char *seat_id = default_seat;
6632         const char *session_seat;
6633         int ret;
6634
6635         session_seat = getenv("XDG_SEAT");
6636         if (session_seat)
6637                 seat_id = session_seat;
6638
6639         if (config->seat_id)
6640                 seat_id = config->seat_id;
6641
6642         weston_log("initializing drm backend\n");
6643
6644         b = zalloc(sizeof *b);
6645         if (b == NULL)
6646                 return NULL;
6647
6648         b->state_invalid = true;
6649         b->drm.fd = -1;
6650         wl_array_init(&b->unused_crtcs);
6651
6652         /*
6653          * KMS support for hardware planes cannot properly synchronize
6654          * without nuclear page flip. Without nuclear/atomic, hw plane
6655          * and cursor plane updates would either tear or cause extra
6656          * waits for vblanks which means dropping the compositor framerate
6657          * to a fraction. For cursors, it's not so bad, so they are
6658          * enabled.
6659          *
6660          * These can be enabled again when nuclear/atomic support lands.
6661          */
6662         b->sprites_are_broken = 1;
6663         b->compositor = compositor;
6664         b->use_pixman = config->use_pixman;
6665         b->pageflip_timeout = config->pageflip_timeout;
6666         b->use_pixman_shadow = config->use_pixman_shadow;
6667
6668         compositor->backend = &b->base;
6669
6670         if (parse_gbm_format(config->gbm_format, GBM_FORMAT_XRGB8888, &b->gbm_format) < 0)
6671                 goto err_compositor;
6672
6673         /* Check if we run drm-backend using weston-launch */
6674         compositor->launcher = weston_launcher_connect(compositor, config->tty,
6675                                                        seat_id, true);
6676         if (compositor->launcher == NULL) {
6677                 weston_log("fatal: drm backend should be run using "
6678                            "weston-launch binary, or your system should "
6679                            "provide the logind D-Bus API.\n");
6680                 goto err_compositor;
6681         }
6682
6683         b->udev = udev_new();
6684         if (b->udev == NULL) {
6685                 weston_log("failed to initialize udev context\n");
6686                 goto err_launcher;
6687         }
6688
6689         b->session_listener.notify = session_notify;
6690         wl_signal_add(&compositor->session_signal, &b->session_listener);
6691
6692         if (config->specific_device)
6693                 drm_device = open_specific_drm_device(b, config->specific_device);
6694         else
6695                 drm_device = find_primary_gpu(b, seat_id);
6696         if (drm_device == NULL) {
6697                 weston_log("no drm device found\n");
6698                 goto err_udev;
6699         }
6700
6701         if (init_kms_caps(b) < 0) {
6702                 weston_log("failed to initialize kms\n");
6703                 goto err_udev_dev;
6704         }
6705
6706         if (b->use_pixman) {
6707                 if (init_pixman(b) < 0) {
6708                         weston_log("failed to initialize pixman renderer\n");
6709                         goto err_udev_dev;
6710                 }
6711         } else {
6712                 if (init_egl(b) < 0) {
6713                         weston_log("failed to initialize egl\n");
6714                         goto err_udev_dev;
6715                 }
6716         }
6717
6718         b->base.destroy = drm_destroy;
6719         b->base.repaint_begin = drm_repaint_begin;
6720         b->base.repaint_flush = drm_repaint_flush;
6721         b->base.repaint_cancel = drm_repaint_cancel;
6722         b->base.create_output = drm_output_create;
6723
6724         weston_setup_vt_switch_bindings(compositor);
6725
6726         wl_list_init(&b->plane_list);
6727         create_sprites(b);
6728
6729         if (udev_input_init(&b->input,
6730                             compositor, b->udev, seat_id,
6731                             config->configure_device) < 0) {
6732                 weston_log("failed to create input devices\n");
6733                 goto err_sprite;
6734         }
6735
6736         if (drm_backend_create_heads(b, drm_device) < 0) {
6737                 weston_log("Failed to create heads for %s\n", b->drm.filename);
6738                 goto err_udev_input;
6739         }
6740
6741         /* A this point we have some idea of whether or not we have a working
6742          * cursor plane. */
6743         if (!b->cursors_are_broken)
6744                 compositor->capabilities |= WESTON_CAP_CURSOR_PLANE;
6745
6746         loop = wl_display_get_event_loop(compositor->wl_display);
6747         b->drm_source =
6748                 wl_event_loop_add_fd(loop, b->drm.fd,
6749                                      WL_EVENT_READABLE, on_drm_input, b);
6750
6751         b->udev_monitor = udev_monitor_new_from_netlink(b->udev, "udev");
6752         if (b->udev_monitor == NULL) {
6753                 weston_log("failed to initialize udev monitor\n");
6754                 goto err_drm_source;
6755         }
6756         udev_monitor_filter_add_match_subsystem_devtype(b->udev_monitor,
6757                                                         "drm", NULL);
6758         b->udev_drm_source =
6759                 wl_event_loop_add_fd(loop,
6760                                      udev_monitor_get_fd(b->udev_monitor),
6761                                      WL_EVENT_READABLE, udev_drm_event, b);
6762
6763         if (udev_monitor_enable_receiving(b->udev_monitor) < 0) {
6764                 weston_log("failed to enable udev-monitor receiving\n");
6765                 goto err_udev_monitor;
6766         }
6767
6768         udev_device_unref(drm_device);
6769
6770         weston_compositor_add_debug_binding(compositor, KEY_O,
6771                                             planes_binding, b);
6772         weston_compositor_add_debug_binding(compositor, KEY_C,
6773                                             planes_binding, b);
6774         weston_compositor_add_debug_binding(compositor, KEY_V,
6775                                             planes_binding, b);
6776         weston_compositor_add_debug_binding(compositor, KEY_Q,
6777                                             recorder_binding, b);
6778         weston_compositor_add_debug_binding(compositor, KEY_W,
6779                                             renderer_switch_binding, b);
6780
6781         if (compositor->renderer->import_dmabuf) {
6782                 if (linux_dmabuf_setup(compositor) < 0)
6783                         weston_log("Error: initializing dmabuf "
6784                                    "support failed.\n");
6785         }
6786
6787         ret = weston_plugin_api_register(compositor, WESTON_DRM_OUTPUT_API_NAME,
6788                                          &api, sizeof(api));
6789
6790         if (ret < 0) {
6791                 weston_log("Failed to register output API.\n");
6792                 goto err_udev_monitor;
6793         }
6794
6795         return b;
6796
6797 err_udev_monitor:
6798         wl_event_source_remove(b->udev_drm_source);
6799         udev_monitor_unref(b->udev_monitor);
6800 err_drm_source:
6801         wl_event_source_remove(b->drm_source);
6802 err_udev_input:
6803         udev_input_destroy(&b->input);
6804 err_sprite:
6805         if (b->gbm)
6806                 gbm_device_destroy(b->gbm);
6807         destroy_sprites(b);
6808 err_udev_dev:
6809         udev_device_unref(drm_device);
6810 err_launcher:
6811         weston_launcher_destroy(compositor->launcher);
6812 err_udev:
6813         udev_unref(b->udev);
6814 err_compositor:
6815         weston_compositor_shutdown(compositor);
6816         free(b);
6817         return NULL;
6818 }
6819
6820 static void
6821 config_init_to_defaults(struct weston_drm_backend_config *config)
6822 {
6823         config->use_pixman_shadow = true;
6824 }
6825
6826 WL_EXPORT int
6827 weston_backend_init(struct weston_compositor *compositor,
6828                     struct weston_backend_config *config_base)
6829 {
6830         struct drm_backend *b;
6831         struct weston_drm_backend_config config = {{ 0, }};
6832
6833         if (config_base == NULL ||
6834             config_base->struct_version != WESTON_DRM_BACKEND_CONFIG_VERSION ||
6835             config_base->struct_size > sizeof(struct weston_drm_backend_config)) {
6836                 weston_log("drm backend config structure is invalid\n");
6837                 return -1;
6838         }
6839
6840         config_init_to_defaults(&config);
6841         memcpy(&config, config_base, config_base->struct_size);
6842
6843         b = drm_backend_create(compositor, &config);
6844         if (b == NULL)
6845                 return -1;
6846
6847         return 0;
6848 }