OSDN Git Service

Add drmModeGetFB2
[android-x86/external-libdrm.git] / xf86drmMode.h
1 /*
2  * \file xf86drmMode.h
3  * Header for DRM modesetting interface.
4  *
5  * \author Jakob Bornecrantz <wallbraker@gmail.com>
6  *
7  * \par Acknowledgements:
8  * Feb 2007, Dave Airlie <airlied@linux.ie>
9  */
10
11 /*
12  * Copyright (c) 2007-2008 Tungsten Graphics, Inc., Cedar Park, Texas.
13  * Copyright (c) 2007-2008 Dave Airlie <airlied@linux.ie>
14  * Copyright (c) 2007-2008 Jakob Bornecrantz <wallbraker@gmail.com>
15  *
16  * Permission is hereby granted, free of charge, to any person obtaining a
17  * copy of this software and associated documentation files (the "Software"),
18  * to deal in the Software without restriction, including without limitation
19  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
20  * and/or sell copies of the Software, and to permit persons to whom the
21  * Software is furnished to do so, subject to the following conditions:
22  *
23  * The above copyright notice and this permission notice shall be included in
24  * all copies or substantial portions of the Software.
25  *
26  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
27  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
28  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
29  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
30  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
31  * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
32  * IN THE SOFTWARE.
33  *
34  */
35
36 #ifndef _XF86DRMMODE_H_
37 #define _XF86DRMMODE_H_
38
39 #if defined(__cplusplus)
40 extern "C" {
41 #endif
42
43 #include <drm.h>
44 #include <stddef.h>
45 #include <stdint.h>
46
47 /*
48  * This is the interface for modesetting for drm.
49  *
50  * In order to use this interface you must include either <stdint.h> or another
51  * header defining uint32_t, int32_t and uint16_t.
52  *
53  * It aims to provide a randr1.2 compatible interface for modesettings in the
54  * kernel, the interface is also meant to be used by libraries like EGL.
55  *
56  * More information can be found in randrproto.txt which can be found here:
57  * http://gitweb.freedesktop.org/?p=xorg/proto/randrproto.git
58  *
59  * There are some major differences to be noted. Unlike the randr1.2 proto you
60  * need to create the memory object of the framebuffer yourself with the ttm
61  * buffer object interface. This object needs to be pinned.
62  */
63
64 /*
65  * If we pickup an old version of drm.h which doesn't include drm_mode.h
66  * we should redefine defines. This is so that builds doesn't breaks with
67  * new libdrm on old kernels.
68  */
69 #ifndef _DRM_MODE_H
70
71 #define DRM_DISPLAY_INFO_LEN    32
72 #define DRM_CONNECTOR_NAME_LEN  32
73 #define DRM_DISPLAY_MODE_LEN    32
74 #define DRM_PROP_NAME_LEN       32
75
76 #define DRM_MODE_TYPE_BUILTIN   (1<<0)
77 #define DRM_MODE_TYPE_CLOCK_C   ((1<<1) | DRM_MODE_TYPE_BUILTIN)
78 #define DRM_MODE_TYPE_CRTC_C    ((1<<2) | DRM_MODE_TYPE_BUILTIN)
79 #define DRM_MODE_TYPE_PREFERRED (1<<3)
80 #define DRM_MODE_TYPE_DEFAULT   (1<<4)
81 #define DRM_MODE_TYPE_USERDEF   (1<<5)
82 #define DRM_MODE_TYPE_DRIVER    (1<<6)
83
84 /* Video mode flags */
85 /* bit compatible with the xorg definitions. */
86 #define DRM_MODE_FLAG_PHSYNC                    (1<<0)
87 #define DRM_MODE_FLAG_NHSYNC                    (1<<1)
88 #define DRM_MODE_FLAG_PVSYNC                    (1<<2)
89 #define DRM_MODE_FLAG_NVSYNC                    (1<<3)
90 #define DRM_MODE_FLAG_INTERLACE                 (1<<4)
91 #define DRM_MODE_FLAG_DBLSCAN                   (1<<5)
92 #define DRM_MODE_FLAG_CSYNC                     (1<<6)
93 #define DRM_MODE_FLAG_PCSYNC                    (1<<7)
94 #define DRM_MODE_FLAG_NCSYNC                    (1<<8)
95 #define DRM_MODE_FLAG_HSKEW                     (1<<9) /* hskew provided */
96 #define DRM_MODE_FLAG_BCAST                     (1<<10)
97 #define DRM_MODE_FLAG_PIXMUX                    (1<<11)
98 #define DRM_MODE_FLAG_DBLCLK                    (1<<12)
99 #define DRM_MODE_FLAG_CLKDIV2                   (1<<13)
100 #define DRM_MODE_FLAG_3D_MASK                   (0x1f<<14)
101 #define  DRM_MODE_FLAG_3D_NONE                  (0<<14)
102 #define  DRM_MODE_FLAG_3D_FRAME_PACKING         (1<<14)
103 #define  DRM_MODE_FLAG_3D_FIELD_ALTERNATIVE     (2<<14)
104 #define  DRM_MODE_FLAG_3D_LINE_ALTERNATIVE      (3<<14)
105 #define  DRM_MODE_FLAG_3D_SIDE_BY_SIDE_FULL     (4<<14)
106 #define  DRM_MODE_FLAG_3D_L_DEPTH               (5<<14)
107 #define  DRM_MODE_FLAG_3D_L_DEPTH_GFX_GFX_DEPTH (6<<14)
108 #define  DRM_MODE_FLAG_3D_TOP_AND_BOTTOM        (7<<14)
109 #define  DRM_MODE_FLAG_3D_SIDE_BY_SIDE_HALF     (8<<14)
110
111 /* DPMS flags */
112 /* bit compatible with the xorg definitions. */
113 #define DRM_MODE_DPMS_ON        0
114 #define DRM_MODE_DPMS_STANDBY   1
115 #define DRM_MODE_DPMS_SUSPEND   2
116 #define DRM_MODE_DPMS_OFF       3
117
118 /* Scaling mode options */
119 #define DRM_MODE_SCALE_NON_GPU          0
120 #define DRM_MODE_SCALE_FULLSCREEN       1
121 #define DRM_MODE_SCALE_NO_SCALE         2
122 #define DRM_MODE_SCALE_ASPECT           3
123
124 /* Dithering mode options */
125 #define DRM_MODE_DITHERING_OFF  0
126 #define DRM_MODE_DITHERING_ON   1
127
128 #define DRM_MODE_ENCODER_NONE    0
129 #define DRM_MODE_ENCODER_DAC     1
130 #define DRM_MODE_ENCODER_TMDS    2
131 #define DRM_MODE_ENCODER_LVDS    3
132 #define DRM_MODE_ENCODER_TVDAC   4
133 #define DRM_MODE_ENCODER_VIRTUAL 5
134 #define DRM_MODE_ENCODER_DSI     6
135 #define DRM_MODE_ENCODER_DPMST   7
136 #define DRM_MODE_ENCODER_DPI     8
137
138 #define DRM_MODE_SUBCONNECTOR_Automatic 0
139 #define DRM_MODE_SUBCONNECTOR_Unknown   0
140 #define DRM_MODE_SUBCONNECTOR_DVID      3
141 #define DRM_MODE_SUBCONNECTOR_DVIA      4
142 #define DRM_MODE_SUBCONNECTOR_Composite 5
143 #define DRM_MODE_SUBCONNECTOR_SVIDEO    6
144 #define DRM_MODE_SUBCONNECTOR_Component 8
145 #define DRM_MODE_SUBCONNECTOR_SCART     9
146
147 #define DRM_MODE_CONNECTOR_Unknown      0
148 #define DRM_MODE_CONNECTOR_VGA          1
149 #define DRM_MODE_CONNECTOR_DVII         2
150 #define DRM_MODE_CONNECTOR_DVID         3
151 #define DRM_MODE_CONNECTOR_DVIA         4
152 #define DRM_MODE_CONNECTOR_Composite    5
153 #define DRM_MODE_CONNECTOR_SVIDEO       6
154 #define DRM_MODE_CONNECTOR_LVDS         7
155 #define DRM_MODE_CONNECTOR_Component    8
156 #define DRM_MODE_CONNECTOR_9PinDIN      9
157 #define DRM_MODE_CONNECTOR_DisplayPort  10
158 #define DRM_MODE_CONNECTOR_HDMIA        11
159 #define DRM_MODE_CONNECTOR_HDMIB        12
160 #define DRM_MODE_CONNECTOR_TV           13
161 #define DRM_MODE_CONNECTOR_eDP          14
162 #define DRM_MODE_CONNECTOR_VIRTUAL      15
163 #define DRM_MODE_CONNECTOR_DSI          16
164 #define DRM_MODE_CONNECTOR_DPI          17
165
166 #define DRM_MODE_PROP_PENDING   (1<<0)
167 #define DRM_MODE_PROP_RANGE     (1<<1)
168 #define DRM_MODE_PROP_IMMUTABLE (1<<2)
169 #define DRM_MODE_PROP_ENUM      (1<<3) /* enumerated type with text strings */
170 #define DRM_MODE_PROP_BLOB      (1<<4)
171
172 #define DRM_MODE_CURSOR_BO      (1<<0)
173 #define DRM_MODE_CURSOR_MOVE    (1<<1)
174
175 #endif /* _DRM_MODE_H */
176
177
178 /*
179  * Feature defines
180  *
181  * Just because these are defined doesn't mean that the kernel
182  * can do that feature, its just for new code vs old libdrm.
183  */
184 #define DRM_MODE_FEATURE_KMS            1
185 #define DRM_MODE_FEATURE_DIRTYFB        1
186
187
188 typedef struct _drmModeRes {
189
190         int count_fbs;
191         uint32_t *fbs;
192
193         int count_crtcs;
194         uint32_t *crtcs;
195
196         int count_connectors;
197         uint32_t *connectors;
198
199         int count_encoders;
200         uint32_t *encoders;
201
202         uint32_t min_width, max_width;
203         uint32_t min_height, max_height;
204 } drmModeRes, *drmModeResPtr;
205
206 typedef struct _drmModeModeInfo {
207         uint32_t clock;
208         uint16_t hdisplay, hsync_start, hsync_end, htotal, hskew;
209         uint16_t vdisplay, vsync_start, vsync_end, vtotal, vscan;
210
211         uint32_t vrefresh;
212
213         uint32_t flags;
214         uint32_t type;
215         char name[DRM_DISPLAY_MODE_LEN];
216 } drmModeModeInfo, *drmModeModeInfoPtr;
217
218 typedef struct _drmModeFB {
219         uint32_t fb_id;
220         uint32_t width, height;
221         uint32_t pitch;
222         uint32_t bpp;
223         uint32_t depth;
224         /* driver specific handle */
225         uint32_t handle;
226 } drmModeFB, *drmModeFBPtr;
227
228 typedef struct _drmModeFB2 {
229         uint32_t fb_id;
230         uint32_t width, height;
231         uint32_t pixel_format; /* fourcc code from drm_fourcc.h */
232         uint64_t modifier; /* applies to all buffers */
233         uint32_t flags;
234
235         /* per-plane GEM handle; may be duplicate entries for multiple planes */
236         uint32_t handles[4];
237         uint32_t pitches[4]; /* bytes */
238         uint32_t offsets[4]; /* bytes */
239 } drmModeFB2, *drmModeFB2Ptr;
240
241 typedef struct drm_clip_rect drmModeClip, *drmModeClipPtr;
242
243 typedef struct _drmModePropertyBlob {
244         uint32_t id;
245         uint32_t length;
246         void *data;
247 } drmModePropertyBlobRes, *drmModePropertyBlobPtr;
248
249 typedef struct _drmModeProperty {
250         uint32_t prop_id;
251         uint32_t flags;
252         char name[DRM_PROP_NAME_LEN];
253         int count_values;
254         uint64_t *values; /* store the blob lengths */
255         int count_enums;
256         struct drm_mode_property_enum *enums;
257         int count_blobs;
258         uint32_t *blob_ids; /* store the blob IDs */
259 } drmModePropertyRes, *drmModePropertyPtr;
260
261 static __inline int drm_property_type_is(drmModePropertyPtr property,
262                 uint32_t type)
263 {
264         /* instanceof for props.. handles extended type vs original types: */
265         if (property->flags & DRM_MODE_PROP_EXTENDED_TYPE)
266                 return (property->flags & DRM_MODE_PROP_EXTENDED_TYPE) == type;
267         return property->flags & type;
268 }
269
270 typedef struct _drmModeCrtc {
271         uint32_t crtc_id;
272         uint32_t buffer_id; /**< FB id to connect to 0 = disconnect */
273
274         uint32_t x, y; /**< Position on the framebuffer */
275         uint32_t width, height;
276         int mode_valid;
277         drmModeModeInfo mode;
278
279         int gamma_size; /**< Number of gamma stops */
280
281 } drmModeCrtc, *drmModeCrtcPtr;
282
283 typedef struct _drmModeEncoder {
284         uint32_t encoder_id;
285         uint32_t encoder_type;
286         uint32_t crtc_id;
287         uint32_t possible_crtcs;
288         uint32_t possible_clones;
289 } drmModeEncoder, *drmModeEncoderPtr;
290
291 typedef enum {
292         DRM_MODE_CONNECTED         = 1,
293         DRM_MODE_DISCONNECTED      = 2,
294         DRM_MODE_UNKNOWNCONNECTION = 3
295 } drmModeConnection;
296
297 typedef enum {
298         DRM_MODE_SUBPIXEL_UNKNOWN        = 1,
299         DRM_MODE_SUBPIXEL_HORIZONTAL_RGB = 2,
300         DRM_MODE_SUBPIXEL_HORIZONTAL_BGR = 3,
301         DRM_MODE_SUBPIXEL_VERTICAL_RGB   = 4,
302         DRM_MODE_SUBPIXEL_VERTICAL_BGR   = 5,
303         DRM_MODE_SUBPIXEL_NONE           = 6
304 } drmModeSubPixel;
305
306 typedef struct _drmModeConnector {
307         uint32_t connector_id;
308         uint32_t encoder_id; /**< Encoder currently connected to */
309         uint32_t connector_type;
310         uint32_t connector_type_id;
311         drmModeConnection connection;
312         uint32_t mmWidth, mmHeight; /**< HxW in millimeters */
313         drmModeSubPixel subpixel;
314
315         int count_modes;
316         drmModeModeInfoPtr modes;
317
318         int count_props;
319         uint32_t *props; /**< List of property ids */
320         uint64_t *prop_values; /**< List of property values */
321
322         int count_encoders;
323         uint32_t *encoders; /**< List of encoder ids */
324 } drmModeConnector, *drmModeConnectorPtr;
325
326 #define DRM_PLANE_TYPE_OVERLAY 0
327 #define DRM_PLANE_TYPE_PRIMARY 1
328 #define DRM_PLANE_TYPE_CURSOR  2
329
330 typedef struct _drmModeObjectProperties {
331         uint32_t count_props;
332         uint32_t *props;
333         uint64_t *prop_values;
334 } drmModeObjectProperties, *drmModeObjectPropertiesPtr;
335
336 typedef struct _drmModePlane {
337         uint32_t count_formats;
338         uint32_t *formats;
339         uint32_t plane_id;
340
341         uint32_t crtc_id;
342         uint32_t fb_id;
343
344         uint32_t crtc_x, crtc_y;
345         uint32_t x, y;
346
347         uint32_t possible_crtcs;
348         uint32_t gamma_size;
349 } drmModePlane, *drmModePlanePtr;
350
351 typedef struct _drmModePlaneRes {
352         uint32_t count_planes;
353         uint32_t *planes;
354 } drmModePlaneRes, *drmModePlaneResPtr;
355
356 extern void drmModeFreeModeInfo( drmModeModeInfoPtr ptr );
357 extern void drmModeFreeResources( drmModeResPtr ptr );
358 extern void drmModeFreeFB( drmModeFBPtr ptr );
359 extern void drmModeFreeFB2( drmModeFB2Ptr ptr );
360 extern void drmModeFreeCrtc( drmModeCrtcPtr ptr );
361 extern void drmModeFreeConnector( drmModeConnectorPtr ptr );
362 extern void drmModeFreeEncoder( drmModeEncoderPtr ptr );
363 extern void drmModeFreePlane( drmModePlanePtr ptr );
364 extern void drmModeFreePlaneResources(drmModePlaneResPtr ptr);
365
366 /**
367  * Retrieves all of the resources associated with a card.
368  */
369 extern drmModeResPtr drmModeGetResources(int fd);
370
371 /*
372  * FrameBuffer manipulation.
373  */
374
375 /**
376  * Retrieve information about framebuffer bufferId
377  */
378 extern drmModeFBPtr drmModeGetFB(int fd, uint32_t bufferId);
379 extern drmModeFB2Ptr drmModeGetFB2(int fd, uint32_t bufferId);
380
381 /**
382  * Creates a new framebuffer with an buffer object as its scanout buffer.
383  */
384 extern int drmModeAddFB(int fd, uint32_t width, uint32_t height, uint8_t depth,
385                         uint8_t bpp, uint32_t pitch, uint32_t bo_handle,
386                         uint32_t *buf_id);
387 /* ...with a specific pixel format */
388 extern int drmModeAddFB2(int fd, uint32_t width, uint32_t height,
389                          uint32_t pixel_format, const uint32_t bo_handles[4],
390                          const uint32_t pitches[4], const uint32_t offsets[4],
391                          uint32_t *buf_id, uint32_t flags);
392
393 /* ...with format modifiers */
394 int drmModeAddFB2WithModifiers(int fd, uint32_t width, uint32_t height,
395                                uint32_t pixel_format, const uint32_t bo_handles[4],
396                                const uint32_t pitches[4], const uint32_t offsets[4],
397                                const uint64_t modifier[4], uint32_t *buf_id,
398                                    uint32_t flags);
399
400 /**
401  * Destroies the given framebuffer.
402  */
403 extern int drmModeRmFB(int fd, uint32_t bufferId);
404
405 /**
406  * Mark a region of a framebuffer as dirty.
407  */
408 extern int drmModeDirtyFB(int fd, uint32_t bufferId,
409                           drmModeClipPtr clips, uint32_t num_clips);
410
411
412 /*
413  * Crtc functions
414  */
415
416 /**
417  * Retrieve information about the ctrt crtcId
418  */
419 extern drmModeCrtcPtr drmModeGetCrtc(int fd, uint32_t crtcId);
420
421 /**
422  * Set the mode on a crtc crtcId with the given mode modeId.
423  */
424 int drmModeSetCrtc(int fd, uint32_t crtcId, uint32_t bufferId,
425                    uint32_t x, uint32_t y, uint32_t *connectors, int count,
426                    drmModeModeInfoPtr mode);
427
428 /*
429  * Cursor functions
430  */
431
432 /**
433  * Set the cursor on crtc
434  */
435 int drmModeSetCursor(int fd, uint32_t crtcId, uint32_t bo_handle, uint32_t width, uint32_t height);
436
437 int drmModeSetCursor2(int fd, uint32_t crtcId, uint32_t bo_handle, uint32_t width, uint32_t height, int32_t hot_x, int32_t hot_y);
438 /**
439  * Move the cursor on crtc
440  */
441 int drmModeMoveCursor(int fd, uint32_t crtcId, int x, int y);
442
443 /**
444  * Encoder functions
445  */
446 drmModeEncoderPtr drmModeGetEncoder(int fd, uint32_t encoder_id);
447
448 /*
449  * Connector manipulation
450  */
451
452 /**
453  * Retrieve all information about the connector connectorId. This will do a
454  * forced probe on the connector to retrieve remote information such as EDIDs
455  * from the display device.
456  */
457 extern drmModeConnectorPtr drmModeGetConnector(int fd,
458                                                uint32_t connectorId);
459
460 /**
461  * Retrieve current information, i.e the currently active mode and encoder,
462  * about the connector connectorId. This will not do any probing on the
463  * connector or remote device, and only reports what is currently known.
464  * For the complete set of modes and encoders associated with the connector
465  * use drmModeGetConnector() which will do a probe to determine any display
466  * link changes first.
467  */
468 extern drmModeConnectorPtr drmModeGetConnectorCurrent(int fd,
469                                                       uint32_t connector_id);
470
471 /**
472  * Attaches the given mode to an connector.
473  */
474 extern int drmModeAttachMode(int fd, uint32_t connectorId, drmModeModeInfoPtr mode_info);
475
476 /**
477  * Detaches a mode from the connector
478  * must be unused, by the given mode.
479  */
480 extern int drmModeDetachMode(int fd, uint32_t connectorId, drmModeModeInfoPtr mode_info);
481
482 extern drmModePropertyPtr drmModeGetProperty(int fd, uint32_t propertyId);
483 extern void drmModeFreeProperty(drmModePropertyPtr ptr);
484
485 extern drmModePropertyBlobPtr drmModeGetPropertyBlob(int fd, uint32_t blob_id);
486 extern void drmModeFreePropertyBlob(drmModePropertyBlobPtr ptr);
487 extern int drmModeConnectorSetProperty(int fd, uint32_t connector_id, uint32_t property_id,
488                                     uint64_t value);
489 extern int drmCheckModesettingSupported(const char *busid);
490
491 extern int drmModeCrtcSetGamma(int fd, uint32_t crtc_id, uint32_t size,
492                                uint16_t *red, uint16_t *green, uint16_t *blue);
493 extern int drmModeCrtcGetGamma(int fd, uint32_t crtc_id, uint32_t size,
494                                uint16_t *red, uint16_t *green, uint16_t *blue);
495 extern int drmModePageFlip(int fd, uint32_t crtc_id, uint32_t fb_id,
496                            uint32_t flags, void *user_data);
497 extern int drmModePageFlipTarget(int fd, uint32_t crtc_id, uint32_t fb_id,
498                                  uint32_t flags, void *user_data,
499                                  uint32_t target_vblank);
500
501 extern drmModePlaneResPtr drmModeGetPlaneResources(int fd);
502 extern drmModePlanePtr drmModeGetPlane(int fd, uint32_t plane_id);
503 extern int drmModeSetPlane(int fd, uint32_t plane_id, uint32_t crtc_id,
504                            uint32_t fb_id, uint32_t flags,
505                            int32_t crtc_x, int32_t crtc_y,
506                            uint32_t crtc_w, uint32_t crtc_h,
507                            uint32_t src_x, uint32_t src_y,
508                            uint32_t src_w, uint32_t src_h);
509
510 extern drmModeObjectPropertiesPtr drmModeObjectGetProperties(int fd,
511                                                         uint32_t object_id,
512                                                         uint32_t object_type);
513 extern void drmModeFreeObjectProperties(drmModeObjectPropertiesPtr ptr);
514 extern int drmModeObjectSetProperty(int fd, uint32_t object_id,
515                                     uint32_t object_type, uint32_t property_id,
516                                     uint64_t value);
517
518
519 typedef struct _drmModeAtomicReq drmModeAtomicReq, *drmModeAtomicReqPtr;
520
521 extern drmModeAtomicReqPtr drmModeAtomicAlloc(void);
522 extern drmModeAtomicReqPtr drmModeAtomicDuplicate(drmModeAtomicReqPtr req);
523 extern int drmModeAtomicMerge(drmModeAtomicReqPtr base,
524                               drmModeAtomicReqPtr augment);
525 extern void drmModeAtomicFree(drmModeAtomicReqPtr req);
526 extern int drmModeAtomicGetCursor(drmModeAtomicReqPtr req);
527 extern void drmModeAtomicSetCursor(drmModeAtomicReqPtr req, int cursor);
528 extern int drmModeAtomicAddProperty(drmModeAtomicReqPtr req,
529                                     uint32_t object_id,
530                                     uint32_t property_id,
531                                     uint64_t value);
532 extern int drmModeAtomicCommit(int fd,
533                                drmModeAtomicReqPtr req,
534                                uint32_t flags,
535                                void *user_data);
536
537 extern int drmModeCreatePropertyBlob(int fd, const void *data, size_t size,
538                                      uint32_t *id);
539 extern int drmModeDestroyPropertyBlob(int fd, uint32_t id);
540
541 /*
542  * DRM mode lease APIs. These create and manage new drm_masters with
543  * access to a subset of the available DRM resources
544  */
545
546 extern int drmModeCreateLease(int fd, const uint32_t *objects, int num_objects, int flags, uint32_t *lessee_id);
547
548 typedef struct drmModeLesseeList {
549         uint32_t count;
550         uint32_t lessees[0];
551 } drmModeLesseeListRes, *drmModeLesseeListPtr;
552
553 extern drmModeLesseeListPtr drmModeListLessees(int fd);
554
555 typedef struct drmModeObjectList {
556         uint32_t count;
557         uint32_t objects[0];
558 } drmModeObjectListRes, *drmModeObjectListPtr;
559
560 extern drmModeObjectListPtr drmModeGetLease(int fd);
561
562 extern int drmModeRevokeLease(int fd, uint32_t lessee_id);
563
564 #if defined(__cplusplus)
565 }
566 #endif
567
568 #endif