]> git.karo-electronics.de Git - karo-tx-linux.git/blob - include/drm/drm_mode_config.h
drm: Add mode_config .get_format_info() hook
[karo-tx-linux.git] / include / drm / drm_mode_config.h
1 /*
2  * Copyright (c) 2016 Intel Corporation
3  *
4  * Permission to use, copy, modify, distribute, and sell this software and its
5  * documentation for any purpose is hereby granted without fee, provided that
6  * the above copyright notice appear in all copies and that both that copyright
7  * notice and this permission notice appear in supporting documentation, and
8  * that the name of the copyright holders not be used in advertising or
9  * publicity pertaining to distribution of the software without specific,
10  * written prior permission.  The copyright holders make no representations
11  * about the suitability of this software for any purpose.  It is provided "as
12  * is" without express or implied warranty.
13  *
14  * THE COPYRIGHT HOLDERS DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
15  * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
16  * EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY SPECIAL, INDIRECT OR
17  * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
18  * DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
19  * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
20  * OF THIS SOFTWARE.
21  */
22
23 #ifndef __DRM_MODE_CONFIG_H__
24 #define __DRM_MODE_CONFIG_H__
25
26 #include <linux/mutex.h>
27 #include <linux/types.h>
28 #include <linux/idr.h>
29 #include <linux/workqueue.h>
30
31 #include <drm/drm_modeset_lock.h>
32
33 struct drm_file;
34 struct drm_device;
35 struct drm_atomic_state;
36 struct drm_mode_fb_cmd2;
37 struct drm_format_info;
38
39 /**
40  * struct drm_mode_config_funcs - basic driver provided mode setting functions
41  *
42  * Some global (i.e. not per-CRTC, connector, etc) mode setting functions that
43  * involve drivers.
44  */
45 struct drm_mode_config_funcs {
46         /**
47          * @fb_create:
48          *
49          * Create a new framebuffer object. The core does basic checks on the
50          * requested metadata, but most of that is left to the driver. See
51          * &struct drm_mode_fb_cmd2 for details.
52          *
53          * If the parameters are deemed valid and the backing storage objects in
54          * the underlying memory manager all exist, then the driver allocates
55          * a new &drm_framebuffer structure, subclassed to contain
56          * driver-specific information (like the internal native buffer object
57          * references). It also needs to fill out all relevant metadata, which
58          * should be done by calling drm_helper_mode_fill_fb_struct().
59          *
60          * The initialization is finalized by calling drm_framebuffer_init(),
61          * which registers the framebuffer and makes it accessible to other
62          * threads.
63          *
64          * RETURNS:
65          *
66          * A new framebuffer with an initial reference count of 1 or a negative
67          * error code encoded with ERR_PTR().
68          */
69         struct drm_framebuffer *(*fb_create)(struct drm_device *dev,
70                                              struct drm_file *file_priv,
71                                              const struct drm_mode_fb_cmd2 *mode_cmd);
72
73         /**
74          * @get_format_info:
75          *
76          * Allows a driver to return custom format information for special
77          * fb layouts (eg. ones with auxiliary compression control planes).
78          *
79          * RETURNS:
80          *
81          * The format information specific to the given fb metadata, or
82          * NULL if none is found.
83          */
84         const struct drm_format_info *(*get_format_info)(const struct drm_mode_fb_cmd2 *mode_cmd);
85
86         /**
87          * @output_poll_changed:
88          *
89          * Callback used by helpers to inform the driver of output configuration
90          * changes.
91          *
92          * Drivers implementing fbdev emulation with the helpers can call
93          * drm_fb_helper_hotplug_changed from this hook to inform the fbdev
94          * helper of output changes.
95          *
96          * FIXME:
97          *
98          * Except that there's no vtable for device-level helper callbacks
99          * there's no reason this is a core function.
100          */
101         void (*output_poll_changed)(struct drm_device *dev);
102
103         /**
104          * @atomic_check:
105          *
106          * This is the only hook to validate an atomic modeset update. This
107          * function must reject any modeset and state changes which the hardware
108          * or driver doesn't support. This includes but is of course not limited
109          * to:
110          *
111          *  - Checking that the modes, framebuffers, scaling and placement
112          *    requirements and so on are within the limits of the hardware.
113          *
114          *  - Checking that any hidden shared resources are not oversubscribed.
115          *    This can be shared PLLs, shared lanes, overall memory bandwidth,
116          *    display fifo space (where shared between planes or maybe even
117          *    CRTCs).
118          *
119          *  - Checking that virtualized resources exported to userspace are not
120          *    oversubscribed. For various reasons it can make sense to expose
121          *    more planes, crtcs or encoders than which are physically there. One
122          *    example is dual-pipe operations (which generally should be hidden
123          *    from userspace if when lockstepped in hardware, exposed otherwise),
124          *    where a plane might need 1 hardware plane (if it's just on one
125          *    pipe), 2 hardware planes (when it spans both pipes) or maybe even
126          *    shared a hardware plane with a 2nd plane (if there's a compatible
127          *    plane requested on the area handled by the other pipe).
128          *
129          *  - Check that any transitional state is possible and that if
130          *    requested, the update can indeed be done in the vblank period
131          *    without temporarily disabling some functions.
132          *
133          *  - Check any other constraints the driver or hardware might have.
134          *
135          *  - This callback also needs to correctly fill out the &drm_crtc_state
136          *    in this update to make sure that drm_atomic_crtc_needs_modeset()
137          *    reflects the nature of the possible update and returns true if and
138          *    only if the update cannot be applied without tearing within one
139          *    vblank on that CRTC. The core uses that information to reject
140          *    updates which require a full modeset (i.e. blanking the screen, or
141          *    at least pausing updates for a substantial amount of time) if
142          *    userspace has disallowed that in its request.
143          *
144          *  - The driver also does not need to repeat basic input validation
145          *    like done for the corresponding legacy entry points. The core does
146          *    that before calling this hook.
147          *
148          * See the documentation of @atomic_commit for an exhaustive list of
149          * error conditions which don't have to be checked at the in this
150          * callback.
151          *
152          * See the documentation for &struct drm_atomic_state for how exactly
153          * an atomic modeset update is described.
154          *
155          * Drivers using the atomic helpers can implement this hook using
156          * drm_atomic_helper_check(), or one of the exported sub-functions of
157          * it.
158          *
159          * RETURNS:
160          *
161          * 0 on success or one of the below negative error codes:
162          *
163          *  - -EINVAL, if any of the above constraints are violated.
164          *
165          *  - -EDEADLK, when returned from an attempt to acquire an additional
166          *    &drm_modeset_lock through drm_modeset_lock().
167          *
168          *  - -ENOMEM, if allocating additional state sub-structures failed due
169          *    to lack of memory.
170          *
171          *  - -EINTR, -EAGAIN or -ERESTARTSYS, if the IOCTL should be restarted.
172          *    This can either be due to a pending signal, or because the driver
173          *    needs to completely bail out to recover from an exceptional
174          *    situation like a GPU hang. From a userspace point all errors are
175          *    treated equally.
176          */
177         int (*atomic_check)(struct drm_device *dev,
178                             struct drm_atomic_state *state);
179
180         /**
181          * @atomic_commit:
182          *
183          * This is the only hook to commit an atomic modeset update. The core
184          * guarantees that @atomic_check has been called successfully before
185          * calling this function, and that nothing has been changed in the
186          * interim.
187          *
188          * See the documentation for &struct drm_atomic_state for how exactly
189          * an atomic modeset update is described.
190          *
191          * Drivers using the atomic helpers can implement this hook using
192          * drm_atomic_helper_commit(), or one of the exported sub-functions of
193          * it.
194          *
195          * Nonblocking commits (as indicated with the nonblock parameter) must
196          * do any preparatory work which might result in an unsuccessful commit
197          * in the context of this callback. The only exceptions are hardware
198          * errors resulting in -EIO. But even in that case the driver must
199          * ensure that the display pipe is at least running, to avoid
200          * compositors crashing when pageflips don't work. Anything else,
201          * specifically committing the update to the hardware, should be done
202          * without blocking the caller. For updates which do not require a
203          * modeset this must be guaranteed.
204          *
205          * The driver must wait for any pending rendering to the new
206          * framebuffers to complete before executing the flip. It should also
207          * wait for any pending rendering from other drivers if the underlying
208          * buffer is a shared dma-buf. Nonblocking commits must not wait for
209          * rendering in the context of this callback.
210          *
211          * An application can request to be notified when the atomic commit has
212          * completed. These events are per-CRTC and can be distinguished by the
213          * CRTC index supplied in &drm_event to userspace.
214          *
215          * The drm core will supply a &struct drm_event in each CRTC's
216          * &drm_crtc_state.event. See the documentation for
217          * &drm_crtc_state.event for more details about the precise semantics of
218          * this event.
219          *
220          * NOTE:
221          *
222          * Drivers are not allowed to shut down any display pipe successfully
223          * enabled through an atomic commit on their own. Doing so can result in
224          * compositors crashing if a page flip is suddenly rejected because the
225          * pipe is off.
226          *
227          * RETURNS:
228          *
229          * 0 on success or one of the below negative error codes:
230          *
231          *  - -EBUSY, if a nonblocking updated is requested and there is
232          *    an earlier updated pending. Drivers are allowed to support a queue
233          *    of outstanding updates, but currently no driver supports that.
234          *    Note that drivers must wait for preceding updates to complete if a
235          *    synchronous update is requested, they are not allowed to fail the
236          *    commit in that case.
237          *
238          *  - -ENOMEM, if the driver failed to allocate memory. Specifically
239          *    this can happen when trying to pin framebuffers, which must only
240          *    be done when committing the state.
241          *
242          *  - -ENOSPC, as a refinement of the more generic -ENOMEM to indicate
243          *    that the driver has run out of vram, iommu space or similar GPU
244          *    address space needed for framebuffer.
245          *
246          *  - -EIO, if the hardware completely died.
247          *
248          *  - -EINTR, -EAGAIN or -ERESTARTSYS, if the IOCTL should be restarted.
249          *    This can either be due to a pending signal, or because the driver
250          *    needs to completely bail out to recover from an exceptional
251          *    situation like a GPU hang. From a userspace point of view all errors are
252          *    treated equally.
253          *
254          * This list is exhaustive. Specifically this hook is not allowed to
255          * return -EINVAL (any invalid requests should be caught in
256          * @atomic_check) or -EDEADLK (this function must not acquire
257          * additional modeset locks).
258          */
259         int (*atomic_commit)(struct drm_device *dev,
260                              struct drm_atomic_state *state,
261                              bool nonblock);
262
263         /**
264          * @atomic_state_alloc:
265          *
266          * This optional hook can be used by drivers that want to subclass struct
267          * &drm_atomic_state to be able to track their own driver-private global
268          * state easily. If this hook is implemented, drivers must also
269          * implement @atomic_state_clear and @atomic_state_free.
270          *
271          * RETURNS:
272          *
273          * A new &drm_atomic_state on success or NULL on failure.
274          */
275         struct drm_atomic_state *(*atomic_state_alloc)(struct drm_device *dev);
276
277         /**
278          * @atomic_state_clear:
279          *
280          * This hook must clear any driver private state duplicated into the
281          * passed-in &drm_atomic_state. This hook is called when the caller
282          * encountered a &drm_modeset_lock deadlock and needs to drop all
283          * already acquired locks as part of the deadlock avoidance dance
284          * implemented in drm_modeset_backoff().
285          *
286          * Any duplicated state must be invalidated since a concurrent atomic
287          * update might change it, and the drm atomic interfaces always apply
288          * updates as relative changes to the current state.
289          *
290          * Drivers that implement this must call drm_atomic_state_default_clear()
291          * to clear common state.
292          */
293         void (*atomic_state_clear)(struct drm_atomic_state *state);
294
295         /**
296          * @atomic_state_free:
297          *
298          * This hook needs driver private resources and the &drm_atomic_state
299          * itself. Note that the core first calls drm_atomic_state_clear() to
300          * avoid code duplicate between the clear and free hooks.
301          *
302          * Drivers that implement this must call
303          * drm_atomic_state_default_release() to release common resources.
304          */
305         void (*atomic_state_free)(struct drm_atomic_state *state);
306 };
307
308 /**
309  * struct drm_mode_config - Mode configuration control structure
310  * @mutex: mutex protecting KMS related lists and structures
311  * @connection_mutex: ww mutex protecting connector state and routing
312  * @acquire_ctx: global implicit acquire context used by atomic drivers for
313  *      legacy IOCTLs
314  * @fb_lock: mutex to protect fb state and lists
315  * @num_fb: number of fbs available
316  * @fb_list: list of framebuffers available
317  * @num_encoder: number of encoders on this device
318  * @encoder_list: list of encoder objects
319  * @num_overlay_plane: number of overlay planes on this device
320  * @num_total_plane: number of universal (i.e. with primary/curso) planes on this device
321  * @plane_list: list of plane objects
322  * @num_crtc: number of CRTCs on this device
323  * @crtc_list: list of CRTC objects
324  * @property_list: list of property objects
325  * @min_width: minimum pixel width on this device
326  * @min_height: minimum pixel height on this device
327  * @max_width: maximum pixel width on this device
328  * @max_height: maximum pixel height on this device
329  * @funcs: core driver provided mode setting functions
330  * @fb_base: base address of the framebuffer
331  * @poll_enabled: track polling support for this device
332  * @poll_running: track polling status for this device
333  * @delayed_event: track delayed poll uevent deliver for this device
334  * @output_poll_work: delayed work for polling in process context
335  * @property_blob_list: list of all the blob property objects
336  * @blob_lock: mutex for blob property allocation and management
337  * @*_property: core property tracking
338  * @preferred_depth: preferred RBG pixel depth, used by fb helpers
339  * @prefer_shadow: hint to userspace to prefer shadow-fb rendering
340  * @cursor_width: hint to userspace for max cursor width
341  * @cursor_height: hint to userspace for max cursor height
342  * @helper_private: mid-layer private data
343  *
344  * Core mode resource tracking structure.  All CRTC, encoders, and connectors
345  * enumerated by the driver are added here, as are global properties.  Some
346  * global restrictions are also here, e.g. dimension restrictions.
347  */
348 struct drm_mode_config {
349         struct mutex mutex; /* protects configuration (mode lists etc.) */
350         struct drm_modeset_lock connection_mutex; /* protects connector->encoder and encoder->crtc links */
351         struct drm_modeset_acquire_ctx *acquire_ctx; /* for legacy _lock_all() / _unlock_all() */
352
353         /**
354          * @idr_mutex:
355          *
356          * Mutex for KMS ID allocation and management. Protects both @crtc_idr
357          * and @tile_idr.
358          */
359         struct mutex idr_mutex;
360
361         /**
362          * @crtc_idr:
363          *
364          * Main KMS ID tracking object. Use this idr for all IDs, fb, crtc,
365          * connector, modes - just makes life easier to have only one.
366          */
367         struct idr crtc_idr;
368
369         /**
370          * @tile_idr:
371          *
372          * Use this idr for allocating new IDs for tiled sinks like use in some
373          * high-res DP MST screens.
374          */
375         struct idr tile_idr;
376
377         struct mutex fb_lock; /* proctects global and per-file fb lists */
378         int num_fb;
379         struct list_head fb_list;
380
381         /**
382          * @connector_list_lock: Protects @num_connector and
383          * @connector_list.
384          */
385         spinlock_t connector_list_lock;
386         /**
387          * @num_connector: Number of connectors on this device. Protected by
388          * @connector_list_lock.
389          */
390         int num_connector;
391         /**
392          * @connector_ida: ID allocator for connector indices.
393          */
394         struct ida connector_ida;
395         /**
396          * @connector_list: List of connector objects. Protected by
397          * @connector_list_lock. Only use drm_for_each_connector_iter() and
398          * &struct drm_connector_list_iter to walk this list.
399          */
400         struct list_head connector_list;
401         int num_encoder;
402         struct list_head encoder_list;
403
404         /*
405          * Track # of overlay planes separately from # of total planes.  By
406          * default we only advertise overlay planes to userspace; if userspace
407          * sets the "universal plane" capability bit, we'll go ahead and
408          * expose all planes.
409          */
410         int num_overlay_plane;
411         int num_total_plane;
412         struct list_head plane_list;
413
414         int num_crtc;
415         struct list_head crtc_list;
416
417         struct list_head property_list;
418
419         int min_width, min_height;
420         int max_width, max_height;
421         const struct drm_mode_config_funcs *funcs;
422         resource_size_t fb_base;
423
424         /* output poll support */
425         bool poll_enabled;
426         bool poll_running;
427         bool delayed_event;
428         struct delayed_work output_poll_work;
429
430         struct mutex blob_lock;
431
432         /* pointers to standard properties */
433         struct list_head property_blob_list;
434         /**
435          * @edid_property: Default connector property to hold the EDID of the
436          * currently connected sink, if any.
437          */
438         struct drm_property *edid_property;
439         /**
440          * @dpms_property: Default connector property to control the
441          * connector's DPMS state.
442          */
443         struct drm_property *dpms_property;
444         /**
445          * @path_property: Default connector property to hold the DP MST path
446          * for the port.
447          */
448         struct drm_property *path_property;
449         /**
450          * @tile_property: Default connector property to store the tile
451          * position of a tiled screen, for sinks which need to be driven with
452          * multiple CRTCs.
453          */
454         struct drm_property *tile_property;
455         /**
456          * @link_status_property: Default connector property for link status
457          * of a connector
458          */
459         struct drm_property *link_status_property;
460         /**
461          * @plane_type_property: Default plane property to differentiate
462          * CURSOR, PRIMARY and OVERLAY legacy uses of planes.
463          */
464         struct drm_property *plane_type_property;
465         /**
466          * @prop_src_x: Default atomic plane property for the plane source
467          * position in the connected &drm_framebuffer.
468          */
469         struct drm_property *prop_src_x;
470         /**
471          * @prop_src_y: Default atomic plane property for the plane source
472          * position in the connected &drm_framebuffer.
473          */
474         struct drm_property *prop_src_y;
475         /**
476          * @prop_src_w: Default atomic plane property for the plane source
477          * position in the connected &drm_framebuffer.
478          */
479         struct drm_property *prop_src_w;
480         /**
481          * @prop_src_h: Default atomic plane property for the plane source
482          * position in the connected &drm_framebuffer.
483          */
484         struct drm_property *prop_src_h;
485         /**
486          * @prop_crtc_x: Default atomic plane property for the plane destination
487          * position in the &drm_crtc is is being shown on.
488          */
489         struct drm_property *prop_crtc_x;
490         /**
491          * @prop_crtc_y: Default atomic plane property for the plane destination
492          * position in the &drm_crtc is is being shown on.
493          */
494         struct drm_property *prop_crtc_y;
495         /**
496          * @prop_crtc_w: Default atomic plane property for the plane destination
497          * position in the &drm_crtc is is being shown on.
498          */
499         struct drm_property *prop_crtc_w;
500         /**
501          * @prop_crtc_h: Default atomic plane property for the plane destination
502          * position in the &drm_crtc is is being shown on.
503          */
504         struct drm_property *prop_crtc_h;
505         /**
506          * @prop_fb_id: Default atomic plane property to specify the
507          * &drm_framebuffer.
508          */
509         struct drm_property *prop_fb_id;
510         /**
511          * @prop_in_fence_fd: Sync File fd representing the incoming fences
512          * for a Plane.
513          */
514         struct drm_property *prop_in_fence_fd;
515         /**
516          * @prop_out_fence_ptr: Sync File fd pointer representing the
517          * outgoing fences for a CRTC. Userspace should provide a pointer to a
518          * value of type s32, and then cast that pointer to u64.
519          */
520         struct drm_property *prop_out_fence_ptr;
521         /**
522          * @prop_crtc_id: Default atomic plane property to specify the
523          * &drm_crtc.
524          */
525         struct drm_property *prop_crtc_id;
526         /**
527          * @prop_active: Default atomic CRTC property to control the active
528          * state, which is the simplified implementation for DPMS in atomic
529          * drivers.
530          */
531         struct drm_property *prop_active;
532         /**
533          * @prop_mode_id: Default atomic CRTC property to set the mode for a
534          * CRTC. A 0 mode implies that the CRTC is entirely disabled - all
535          * connectors must be of and active must be set to disabled, too.
536          */
537         struct drm_property *prop_mode_id;
538
539         /**
540          * @dvi_i_subconnector_property: Optional DVI-I property to
541          * differentiate between analog or digital mode.
542          */
543         struct drm_property *dvi_i_subconnector_property;
544         /**
545          * @dvi_i_select_subconnector_property: Optional DVI-I property to
546          * select between analog or digital mode.
547          */
548         struct drm_property *dvi_i_select_subconnector_property;
549
550         /**
551          * @tv_subconnector_property: Optional TV property to differentiate
552          * between different TV connector types.
553          */
554         struct drm_property *tv_subconnector_property;
555         /**
556          * @tv_select_subconnector_property: Optional TV property to select
557          * between different TV connector types.
558          */
559         struct drm_property *tv_select_subconnector_property;
560         /**
561          * @tv_mode_property: Optional TV property to select
562          * the output TV mode.
563          */
564         struct drm_property *tv_mode_property;
565         /**
566          * @tv_left_margin_property: Optional TV property to set the left
567          * margin.
568          */
569         struct drm_property *tv_left_margin_property;
570         /**
571          * @tv_right_margin_property: Optional TV property to set the right
572          * margin.
573          */
574         struct drm_property *tv_right_margin_property;
575         /**
576          * @tv_top_margin_property: Optional TV property to set the right
577          * margin.
578          */
579         struct drm_property *tv_top_margin_property;
580         /**
581          * @tv_bottom_margin_property: Optional TV property to set the right
582          * margin.
583          */
584         struct drm_property *tv_bottom_margin_property;
585         /**
586          * @tv_brightness_property: Optional TV property to set the
587          * brightness.
588          */
589         struct drm_property *tv_brightness_property;
590         /**
591          * @tv_contrast_property: Optional TV property to set the
592          * contrast.
593          */
594         struct drm_property *tv_contrast_property;
595         /**
596          * @tv_flicker_reduction_property: Optional TV property to control the
597          * flicker reduction mode.
598          */
599         struct drm_property *tv_flicker_reduction_property;
600         /**
601          * @tv_overscan_property: Optional TV property to control the overscan
602          * setting.
603          */
604         struct drm_property *tv_overscan_property;
605         /**
606          * @tv_saturation_property: Optional TV property to set the
607          * saturation.
608          */
609         struct drm_property *tv_saturation_property;
610         /**
611          * @tv_hue_property: Optional TV property to set the hue.
612          */
613         struct drm_property *tv_hue_property;
614
615         /**
616          * @scaling_mode_property: Optional connector property to control the
617          * upscaling, mostly used for built-in panels.
618          */
619         struct drm_property *scaling_mode_property;
620         /**
621          * @aspect_ratio_property: Optional connector property to control the
622          * HDMI infoframe aspect ratio setting.
623          */
624         struct drm_property *aspect_ratio_property;
625         /**
626          * @degamma_lut_property: Optional CRTC property to set the LUT used to
627          * convert the framebuffer's colors to linear gamma.
628          */
629         struct drm_property *degamma_lut_property;
630         /**
631          * @degamma_lut_size_property: Optional CRTC property for the size of
632          * the degamma LUT as supported by the driver (read-only).
633          */
634         struct drm_property *degamma_lut_size_property;
635         /**
636          * @ctm_property: Optional CRTC property to set the
637          * matrix used to convert colors after the lookup in the
638          * degamma LUT.
639          */
640         struct drm_property *ctm_property;
641         /**
642          * @gamma_lut_property: Optional CRTC property to set the LUT used to
643          * convert the colors, after the CTM matrix, to the gamma space of the
644          * connected screen.
645          */
646         struct drm_property *gamma_lut_property;
647         /**
648          * @gamma_lut_size_property: Optional CRTC property for the size of the
649          * gamma LUT as supported by the driver (read-only).
650          */
651         struct drm_property *gamma_lut_size_property;
652
653         /**
654          * @suggested_x_property: Optional connector property with a hint for
655          * the position of the output on the host's screen.
656          */
657         struct drm_property *suggested_x_property;
658         /**
659          * @suggested_y_property: Optional connector property with a hint for
660          * the position of the output on the host's screen.
661          */
662         struct drm_property *suggested_y_property;
663
664         /* dumb ioctl parameters */
665         uint32_t preferred_depth, prefer_shadow;
666
667         /**
668          * @async_page_flip: Does this device support async flips on the primary
669          * plane?
670          */
671         bool async_page_flip;
672
673         /**
674          * @allow_fb_modifiers:
675          *
676          * Whether the driver supports fb modifiers in the ADDFB2.1 ioctl call.
677          */
678         bool allow_fb_modifiers;
679
680         /* cursor size */
681         uint32_t cursor_width, cursor_height;
682
683         const struct drm_mode_config_helper_funcs *helper_private;
684 };
685
686 void drm_mode_config_init(struct drm_device *dev);
687 void drm_mode_config_reset(struct drm_device *dev);
688 void drm_mode_config_cleanup(struct drm_device *dev);
689
690 #endif