ARM64: DTS: Add rk3399-firefly uart4 device, node as /dev/ttyS1
[firefly-linux-kernel-4.4.55.git] / include / uapi / drm / drm_mode.h
1 /*
2  * Copyright (c) 2007 Dave Airlie <airlied@linux.ie>
3  * Copyright (c) 2007 Jakob Bornecrantz <wallbraker@gmail.com>
4  * Copyright (c) 2008 Red Hat Inc.
5  * Copyright (c) 2007-2008 Tungsten Graphics, Inc., Cedar Park, TX., USA
6  * Copyright (c) 2007-2008 Intel Corporation
7  *
8  * Permission is hereby granted, free of charge, to any person obtaining a
9  * copy of this software and associated documentation files (the "Software"),
10  * to deal in the Software without restriction, including without limitation
11  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
12  * and/or sell copies of the Software, and to permit persons to whom the
13  * Software is furnished to do so, subject to the following conditions:
14  *
15  * The above copyright notice and this permission notice shall be included in
16  * all copies or substantial portions of the Software.
17  *
18  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
21  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
22  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
23  * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
24  * IN THE SOFTWARE.
25  */
26
27 #ifndef _DRM_MODE_H
28 #define _DRM_MODE_H
29
30 #include <linux/types.h>
31
32 #define DRM_DISPLAY_INFO_LEN    32
33 #define DRM_CONNECTOR_NAME_LEN  32
34 #define DRM_DISPLAY_MODE_LEN    32
35 #define DRM_PROP_NAME_LEN       32
36
37 #define DRM_MODE_TYPE_BUILTIN   (1<<0)
38 #define DRM_MODE_TYPE_CLOCK_C   ((1<<1) | DRM_MODE_TYPE_BUILTIN)
39 #define DRM_MODE_TYPE_CRTC_C    ((1<<2) | DRM_MODE_TYPE_BUILTIN)
40 #define DRM_MODE_TYPE_PREFERRED (1<<3)
41 #define DRM_MODE_TYPE_DEFAULT   (1<<4)
42 #define DRM_MODE_TYPE_USERDEF   (1<<5)
43 #define DRM_MODE_TYPE_DRIVER    (1<<6)
44
45 /* Video mode flags */
46 /* bit compatible with the xorg definitions. */
47 #define DRM_MODE_FLAG_PHSYNC                    (1<<0)
48 #define DRM_MODE_FLAG_NHSYNC                    (1<<1)
49 #define DRM_MODE_FLAG_PVSYNC                    (1<<2)
50 #define DRM_MODE_FLAG_NVSYNC                    (1<<3)
51 #define DRM_MODE_FLAG_INTERLACE                 (1<<4)
52 #define DRM_MODE_FLAG_DBLSCAN                   (1<<5)
53 #define DRM_MODE_FLAG_CSYNC                     (1<<6)
54 #define DRM_MODE_FLAG_PCSYNC                    (1<<7)
55 #define DRM_MODE_FLAG_NCSYNC                    (1<<8)
56 #define DRM_MODE_FLAG_HSKEW                     (1<<9) /* hskew provided */
57 #define DRM_MODE_FLAG_BCAST                     (1<<10)
58 #define DRM_MODE_FLAG_PIXMUX                    (1<<11)
59 #define DRM_MODE_FLAG_DBLCLK                    (1<<12)
60 #define DRM_MODE_FLAG_CLKDIV2                   (1<<13)
61  /*
62   * When adding a new stereo mode don't forget to adjust DRM_MODE_FLAGS_3D_MAX
63   * (define not exposed to user space).
64   */
65 #define DRM_MODE_FLAG_3D_MASK                   (0x1f<<14)
66 #define  DRM_MODE_FLAG_3D_NONE                  (0<<14)
67 #define  DRM_MODE_FLAG_3D_FRAME_PACKING         (1<<14)
68 #define  DRM_MODE_FLAG_3D_FIELD_ALTERNATIVE     (2<<14)
69 #define  DRM_MODE_FLAG_3D_LINE_ALTERNATIVE      (3<<14)
70 #define  DRM_MODE_FLAG_3D_SIDE_BY_SIDE_FULL     (4<<14)
71 #define  DRM_MODE_FLAG_3D_L_DEPTH               (5<<14)
72 #define  DRM_MODE_FLAG_3D_L_DEPTH_GFX_GFX_DEPTH (6<<14)
73 #define  DRM_MODE_FLAG_3D_TOP_AND_BOTTOM        (7<<14)
74 #define  DRM_MODE_FLAG_3D_SIDE_BY_SIDE_HALF     (8<<14)
75
76 /* Picture aspect ratio options */
77 #define DRM_MODE_PICTURE_ASPECT_NONE            0
78 #define DRM_MODE_PICTURE_ASPECT_4_3             1
79 #define DRM_MODE_PICTURE_ASPECT_16_9            2
80
81 /* Aspect ratio flag bitmask (4 bits 22:19) */
82 #define DRM_MODE_FLAG_PIC_AR_MASK               (0x0F<<19)
83 #define  DRM_MODE_FLAG_PIC_AR_NONE \
84                         (DRM_MODE_PICTURE_ASPECT_NONE<<19)
85 #define  DRM_MODE_FLAG_PIC_AR_4_3 \
86                         (DRM_MODE_PICTURE_ASPECT_4_3<<19)
87 #define  DRM_MODE_FLAG_PIC_AR_16_9 \
88                         (DRM_MODE_PICTURE_ASPECT_16_9<<19)
89
90 /*
91  * HDMI 2.0
92  */
93 #define DRM_MODE_FLAG_420_MASK                  (0x03<<23)
94 #define  DRM_MODE_FLAG_420                      (1<<23)
95 #define  DRM_MODE_FLAG_420_ONLY                 (1<<24)
96
97 /* DPMS flags */
98 /* bit compatible with the xorg definitions. */
99 #define DRM_MODE_DPMS_ON        0
100 #define DRM_MODE_DPMS_STANDBY   1
101 #define DRM_MODE_DPMS_SUSPEND   2
102 #define DRM_MODE_DPMS_OFF       3
103
104 /* Scaling mode options */
105 #define DRM_MODE_SCALE_NONE             0 /* Unmodified timing (display or
106                                              software can still scale) */
107 #define DRM_MODE_SCALE_FULLSCREEN       1 /* Full screen, ignore aspect */
108 #define DRM_MODE_SCALE_CENTER           2 /* Centered, no scaling */
109 #define DRM_MODE_SCALE_ASPECT           3 /* Full screen, preserve aspect */
110
111 /* Dithering mode options */
112 #define DRM_MODE_DITHERING_OFF  0
113 #define DRM_MODE_DITHERING_ON   1
114 #define DRM_MODE_DITHERING_AUTO 2
115
116 /* Dirty info options */
117 #define DRM_MODE_DIRTY_OFF      0
118 #define DRM_MODE_DIRTY_ON       1
119 #define DRM_MODE_DIRTY_ANNOTATE 2
120
121 struct drm_mode_modeinfo {
122         __u32 clock;
123         __u16 hdisplay;
124         __u16 hsync_start;
125         __u16 hsync_end;
126         __u16 htotal;
127         __u16 hskew;
128         __u16 vdisplay;
129         __u16 vsync_start;
130         __u16 vsync_end;
131         __u16 vtotal;
132         __u16 vscan;
133
134         __u32 vrefresh;
135
136         __u32 flags;
137         __u32 type;
138         char name[DRM_DISPLAY_MODE_LEN];
139 };
140
141 struct drm_mode_card_res {
142         __u64 fb_id_ptr;
143         __u64 crtc_id_ptr;
144         __u64 connector_id_ptr;
145         __u64 encoder_id_ptr;
146         __u32 count_fbs;
147         __u32 count_crtcs;
148         __u32 count_connectors;
149         __u32 count_encoders;
150         __u32 min_width;
151         __u32 max_width;
152         __u32 min_height;
153         __u32 max_height;
154 };
155
156 struct drm_mode_crtc {
157         __u64 set_connectors_ptr;
158         __u32 count_connectors;
159
160         __u32 crtc_id; /**< Id */
161         __u32 fb_id; /**< Id of framebuffer */
162
163         __u32 x; /**< x Position on the framebuffer */
164         __u32 y; /**< y Position on the framebuffer */
165
166         __u32 gamma_size;
167         __u32 mode_valid;
168         struct drm_mode_modeinfo mode;
169 };
170
171 #define DRM_MODE_PRESENT_TOP_FIELD      (1<<0)
172 #define DRM_MODE_PRESENT_BOTTOM_FIELD   (1<<1)
173
174 /* Planes blend with or override other bits on the CRTC */
175 struct drm_mode_set_plane {
176         __u32 plane_id;
177         __u32 crtc_id;
178         __u32 fb_id; /* fb object contains surface format type */
179         __u32 flags; /* see above flags */
180
181         /* Signed dest location allows it to be partially off screen */
182         __s32 crtc_x;
183         __s32 crtc_y;
184         __u32 crtc_w;
185         __u32 crtc_h;
186
187         /* Source values are 16.16 fixed point */
188         __u32 src_x;
189         __u32 src_y;
190         __u32 src_h;
191         __u32 src_w;
192 };
193
194 struct drm_mode_get_plane {
195         __u32 plane_id;
196
197         __u32 crtc_id;
198         __u32 fb_id;
199
200         __u32 possible_crtcs;
201         __u32 gamma_size;
202
203         __u32 count_format_types;
204         __u64 format_type_ptr;
205 };
206
207 struct drm_mode_get_plane_res {
208         __u64 plane_id_ptr;
209         __u32 count_planes;
210 };
211
212 #define DRM_MODE_ENCODER_NONE   0
213 #define DRM_MODE_ENCODER_DAC    1
214 #define DRM_MODE_ENCODER_TMDS   2
215 #define DRM_MODE_ENCODER_LVDS   3
216 #define DRM_MODE_ENCODER_TVDAC  4
217 #define DRM_MODE_ENCODER_VIRTUAL 5
218 #define DRM_MODE_ENCODER_DSI    6
219 #define DRM_MODE_ENCODER_DPMST  7
220
221 struct drm_mode_get_encoder {
222         __u32 encoder_id;
223         __u32 encoder_type;
224
225         __u32 crtc_id; /**< Id of crtc */
226
227         __u32 possible_crtcs;
228         __u32 possible_clones;
229 };
230
231 /* This is for connectors with multiple signal types. */
232 /* Try to match DRM_MODE_CONNECTOR_X as closely as possible. */
233 #define DRM_MODE_SUBCONNECTOR_Automatic 0
234 #define DRM_MODE_SUBCONNECTOR_Unknown   0
235 #define DRM_MODE_SUBCONNECTOR_DVID      3
236 #define DRM_MODE_SUBCONNECTOR_DVIA      4
237 #define DRM_MODE_SUBCONNECTOR_Composite 5
238 #define DRM_MODE_SUBCONNECTOR_SVIDEO    6
239 #define DRM_MODE_SUBCONNECTOR_Component 8
240 #define DRM_MODE_SUBCONNECTOR_SCART     9
241
242 #define DRM_MODE_CONNECTOR_Unknown      0
243 #define DRM_MODE_CONNECTOR_VGA          1
244 #define DRM_MODE_CONNECTOR_DVII         2
245 #define DRM_MODE_CONNECTOR_DVID         3
246 #define DRM_MODE_CONNECTOR_DVIA         4
247 #define DRM_MODE_CONNECTOR_Composite    5
248 #define DRM_MODE_CONNECTOR_SVIDEO       6
249 #define DRM_MODE_CONNECTOR_LVDS         7
250 #define DRM_MODE_CONNECTOR_Component    8
251 #define DRM_MODE_CONNECTOR_9PinDIN      9
252 #define DRM_MODE_CONNECTOR_DisplayPort  10
253 #define DRM_MODE_CONNECTOR_HDMIA        11
254 #define DRM_MODE_CONNECTOR_HDMIB        12
255 #define DRM_MODE_CONNECTOR_TV           13
256 #define DRM_MODE_CONNECTOR_eDP          14
257 #define DRM_MODE_CONNECTOR_VIRTUAL      15
258 #define DRM_MODE_CONNECTOR_DSI          16
259
260 struct drm_mode_get_connector {
261
262         __u64 encoders_ptr;
263         __u64 modes_ptr;
264         __u64 props_ptr;
265         __u64 prop_values_ptr;
266
267         __u32 count_modes;
268         __u32 count_props;
269         __u32 count_encoders;
270
271         __u32 encoder_id; /**< Current Encoder */
272         __u32 connector_id; /**< Id */
273         __u32 connector_type;
274         __u32 connector_type_id;
275
276         __u32 connection;
277         __u32 mm_width;  /**< width in millimeters */
278         __u32 mm_height; /**< height in millimeters */
279         __u32 subpixel;
280
281         __u32 pad;
282 };
283
284 #define DRM_MODE_PROP_PENDING   (1<<0)
285 #define DRM_MODE_PROP_RANGE     (1<<1)
286 #define DRM_MODE_PROP_IMMUTABLE (1<<2)
287 #define DRM_MODE_PROP_ENUM      (1<<3) /* enumerated type with text strings */
288 #define DRM_MODE_PROP_BLOB      (1<<4)
289 #define DRM_MODE_PROP_BITMASK   (1<<5) /* bitmask of enumerated types */
290
291 /* non-extended types: legacy bitmask, one bit per type: */
292 #define DRM_MODE_PROP_LEGACY_TYPE  ( \
293                 DRM_MODE_PROP_RANGE | \
294                 DRM_MODE_PROP_ENUM | \
295                 DRM_MODE_PROP_BLOB | \
296                 DRM_MODE_PROP_BITMASK)
297
298 /* extended-types: rather than continue to consume a bit per type,
299  * grab a chunk of the bits to use as integer type id.
300  */
301 #define DRM_MODE_PROP_EXTENDED_TYPE     0x0000ffc0
302 #define DRM_MODE_PROP_TYPE(n)           ((n) << 6)
303 #define DRM_MODE_PROP_OBJECT            DRM_MODE_PROP_TYPE(1)
304 #define DRM_MODE_PROP_SIGNED_RANGE      DRM_MODE_PROP_TYPE(2)
305
306 /* the PROP_ATOMIC flag is used to hide properties from userspace that
307  * is not aware of atomic properties.  This is mostly to work around
308  * older userspace (DDX drivers) that read/write each prop they find,
309  * witout being aware that this could be triggering a lengthy modeset.
310  */
311 #define DRM_MODE_PROP_ATOMIC        0x80000000
312
313 struct drm_mode_property_enum {
314         __u64 value;
315         char name[DRM_PROP_NAME_LEN];
316 };
317
318 struct drm_mode_get_property {
319         __u64 values_ptr; /* values and blob lengths */
320         __u64 enum_blob_ptr; /* enum and blob id ptrs */
321
322         __u32 prop_id;
323         __u32 flags;
324         char name[DRM_PROP_NAME_LEN];
325
326         __u32 count_values;
327         /* This is only used to count enum values, not blobs. The _blobs is
328          * simply because of a historical reason, i.e. backwards compat. */
329         __u32 count_enum_blobs;
330 };
331
332 struct drm_mode_connector_set_property {
333         __u64 value;
334         __u32 prop_id;
335         __u32 connector_id;
336 };
337
338 struct drm_mode_obj_get_properties {
339         __u64 props_ptr;
340         __u64 prop_values_ptr;
341         __u32 count_props;
342         __u32 obj_id;
343         __u32 obj_type;
344 };
345
346 struct drm_mode_obj_set_property {
347         __u64 value;
348         __u32 prop_id;
349         __u32 obj_id;
350         __u32 obj_type;
351 };
352
353 struct drm_mode_get_blob {
354         __u32 blob_id;
355         __u32 length;
356         __u64 data;
357 };
358
359 struct drm_mode_fb_cmd {
360         __u32 fb_id;
361         __u32 width;
362         __u32 height;
363         __u32 pitch;
364         __u32 bpp;
365         __u32 depth;
366         /* driver specific handle */
367         __u32 handle;
368 };
369
370 #define DRM_MODE_FB_INTERLACED  (1<<0) /* for interlaced framebuffers */
371 #define DRM_MODE_FB_MODIFIERS   (1<<1) /* enables ->modifer[] */
372
373 struct drm_mode_fb_cmd2 {
374         __u32 fb_id;
375         __u32 width;
376         __u32 height;
377         __u32 pixel_format; /* fourcc code from drm_fourcc.h */
378         __u32 flags; /* see above flags */
379
380         /*
381          * In case of planar formats, this ioctl allows up to 4
382          * buffer objects with offsets and pitches per plane.
383          * The pitch and offset order is dictated by the fourcc,
384          * e.g. NV12 (http://fourcc.org/yuv.php#NV12) is described as:
385          *
386          *   YUV 4:2:0 image with a plane of 8 bit Y samples
387          *   followed by an interleaved U/V plane containing
388          *   8 bit 2x2 subsampled colour difference samples.
389          *
390          * So it would consist of Y as offsets[0] and UV as
391          * offsets[1].  Note that offsets[0] will generally
392          * be 0 (but this is not required).
393          *
394          * To accommodate tiled, compressed, etc formats, a per-plane
395          * modifier can be specified.  The default value of zero
396          * indicates "native" format as specified by the fourcc.
397          * Vendor specific modifier token.  This allows, for example,
398          * different tiling/swizzling pattern on different planes.
399          * See discussion above of DRM_FORMAT_MOD_xxx.
400          */
401         __u32 handles[4];
402         __u32 pitches[4]; /* pitch for each plane */
403         __u32 offsets[4]; /* offset of each plane */
404         __u64 modifier[4]; /* ie, tiling, compressed (per plane) */
405 };
406
407 #define DRM_MODE_FB_DIRTY_ANNOTATE_COPY 0x01
408 #define DRM_MODE_FB_DIRTY_ANNOTATE_FILL 0x02
409 #define DRM_MODE_FB_DIRTY_FLAGS         0x03
410
411 #define DRM_MODE_FB_DIRTY_MAX_CLIPS     256
412
413 /*
414  * Mark a region of a framebuffer as dirty.
415  *
416  * Some hardware does not automatically update display contents
417  * as a hardware or software draw to a framebuffer. This ioctl
418  * allows userspace to tell the kernel and the hardware what
419  * regions of the framebuffer have changed.
420  *
421  * The kernel or hardware is free to update more then just the
422  * region specified by the clip rects. The kernel or hardware
423  * may also delay and/or coalesce several calls to dirty into a
424  * single update.
425  *
426  * Userspace may annotate the updates, the annotates are a
427  * promise made by the caller that the change is either a copy
428  * of pixels or a fill of a single color in the region specified.
429  *
430  * If the DRM_MODE_FB_DIRTY_ANNOTATE_COPY flag is given then
431  * the number of updated regions are half of num_clips given,
432  * where the clip rects are paired in src and dst. The width and
433  * height of each one of the pairs must match.
434  *
435  * If the DRM_MODE_FB_DIRTY_ANNOTATE_FILL flag is given the caller
436  * promises that the region specified of the clip rects is filled
437  * completely with a single color as given in the color argument.
438  */
439
440 struct drm_mode_fb_dirty_cmd {
441         __u32 fb_id;
442         __u32 flags;
443         __u32 color;
444         __u32 num_clips;
445         __u64 clips_ptr;
446 };
447
448 struct drm_mode_mode_cmd {
449         __u32 connector_id;
450         struct drm_mode_modeinfo mode;
451 };
452
453 #define DRM_MODE_CURSOR_BO      0x01
454 #define DRM_MODE_CURSOR_MOVE    0x02
455 #define DRM_MODE_CURSOR_FLAGS   0x03
456
457 /*
458  * depending on the value in flags different members are used.
459  *
460  * CURSOR_BO uses
461  *    crtc_id
462  *    width
463  *    height
464  *    handle - if 0 turns the cursor off
465  *
466  * CURSOR_MOVE uses
467  *    crtc_id
468  *    x
469  *    y
470  */
471 struct drm_mode_cursor {
472         __u32 flags;
473         __u32 crtc_id;
474         __s32 x;
475         __s32 y;
476         __u32 width;
477         __u32 height;
478         /* driver specific handle */
479         __u32 handle;
480 };
481
482 struct drm_mode_cursor2 {
483         __u32 flags;
484         __u32 crtc_id;
485         __s32 x;
486         __s32 y;
487         __u32 width;
488         __u32 height;
489         /* driver specific handle */
490         __u32 handle;
491         __s32 hot_x;
492         __s32 hot_y;
493 };
494
495 struct drm_mode_crtc_lut {
496         __u32 crtc_id;
497         __u32 gamma_size;
498
499         /* pointers to arrays */
500         __u64 red;
501         __u64 green;
502         __u64 blue;
503 };
504
505 #define DRM_MODE_PAGE_FLIP_EVENT 0x01
506 #define DRM_MODE_PAGE_FLIP_ASYNC 0x02
507 #define DRM_MODE_PAGE_FLIP_FLAGS (DRM_MODE_PAGE_FLIP_EVENT|DRM_MODE_PAGE_FLIP_ASYNC)
508
509 /*
510  * Request a page flip on the specified crtc.
511  *
512  * This ioctl will ask KMS to schedule a page flip for the specified
513  * crtc.  Once any pending rendering targeting the specified fb (as of
514  * ioctl time) has completed, the crtc will be reprogrammed to display
515  * that fb after the next vertical refresh.  The ioctl returns
516  * immediately, but subsequent rendering to the current fb will block
517  * in the execbuffer ioctl until the page flip happens.  If a page
518  * flip is already pending as the ioctl is called, EBUSY will be
519  * returned.
520  *
521  * Flag DRM_MODE_PAGE_FLIP_EVENT requests that drm sends back a vblank
522  * event (see drm.h: struct drm_event_vblank) when the page flip is
523  * done.  The user_data field passed in with this ioctl will be
524  * returned as the user_data field in the vblank event struct.
525  *
526  * Flag DRM_MODE_PAGE_FLIP_ASYNC requests that the flip happen
527  * 'as soon as possible', meaning that it not delay waiting for vblank.
528  * This may cause tearing on the screen.
529  *
530  * The reserved field must be zero until we figure out something
531  * clever to use it for.
532  */
533
534 struct drm_mode_crtc_page_flip {
535         __u32 crtc_id;
536         __u32 fb_id;
537         __u32 flags;
538         __u32 reserved;
539         __u64 user_data;
540 };
541
542 /* create a dumb scanout buffer */
543 struct drm_mode_create_dumb {
544         uint32_t height;
545         uint32_t width;
546         uint32_t bpp;
547         uint32_t flags;
548         /* handle, pitch, size will be returned */
549         uint32_t handle;
550         uint32_t pitch;
551         uint64_t size;
552 };
553
554 /* set up for mmap of a dumb scanout buffer */
555 struct drm_mode_map_dumb {
556         /** Handle for the object being mapped. */
557         __u32 handle;
558         __u32 pad;
559         /**
560          * Fake offset to use for subsequent mmap call
561          *
562          * This is a fixed-size type for 32/64 compatibility.
563          */
564         __u64 offset;
565 };
566
567 struct drm_mode_destroy_dumb {
568         uint32_t handle;
569 };
570
571 /* page-flip flags are valid, plus: */
572 #define DRM_MODE_ATOMIC_TEST_ONLY 0x0100
573 #define DRM_MODE_ATOMIC_NONBLOCK  0x0200
574 #define DRM_MODE_ATOMIC_ALLOW_MODESET 0x0400
575
576 #define DRM_MODE_ATOMIC_FLAGS (\
577                 DRM_MODE_PAGE_FLIP_EVENT |\
578                 DRM_MODE_PAGE_FLIP_ASYNC |\
579                 DRM_MODE_ATOMIC_TEST_ONLY |\
580                 DRM_MODE_ATOMIC_NONBLOCK |\
581                 DRM_MODE_ATOMIC_ALLOW_MODESET)
582
583 struct drm_mode_atomic {
584         __u32 flags;
585         __u32 count_objs;
586         __u64 objs_ptr;
587         __u64 count_props_ptr;
588         __u64 props_ptr;
589         __u64 prop_values_ptr;
590         __u64 reserved;
591         __u64 user_data;
592 };
593
594 /**
595  * Create a new 'blob' data property, copying length bytes from data pointer,
596  * and returning new blob ID.
597  */
598 struct drm_mode_create_blob {
599         /** Pointer to data to copy. */
600         __u64 data;
601         /** Length of data to copy. */
602         __u32 length;
603         /** Return: new property ID. */
604         __u32 blob_id;
605 };
606
607 /**
608  * Destroy a user-created blob property.
609  */
610 struct drm_mode_destroy_blob {
611         __u32 blob_id;
612 };
613
614 #endif