3 * Header for the Direct Rendering Manager
5 * \author Rickard E. (Rik) Faith <faith@valinux.com>
7 * \par Acknowledgments:
8 * Dec 1999, Richard Henderson <rth@twiddle.net>, move to generic \c cmpxchg.
12 * Copyright 1999 Precision Insight, Inc., Cedar Park, Texas.
13 * Copyright 2000 VA Linux Systems, Inc., Sunnyvale, California.
14 * All rights reserved.
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:
23 * The above copyright notice and this permission notice (including the next
24 * paragraph) shall be included in all copies or substantial portions of the
27 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
28 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
29 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
30 * VA LINUX SYSTEMS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
31 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
32 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
33 * OTHER DEALINGS IN THE SOFTWARE.
39 * The Direct Rendering Manager (DRM) is a device-independent kernel-level
40 * device driver that provides support for the XFree86 Direct Rendering
41 * Infrastructure (DRI).
43 * The DRM supports the Direct Rendering Infrastructure (DRI) in four major
45 * -# The DRM provides synchronized access to the graphics hardware via
46 * the use of an optimized two-tiered lock.
47 * -# The DRM enforces the DRI security policy for access to the graphics
48 * hardware by only allowing authenticated X11 clients access to
49 * restricted regions of memory.
50 * -# The DRM provides a generic DMA engine, complete with multiple
51 * queues and the ability to detect the need for an OpenGL context
53 * -# The DRM is extensible via the use of small device-specific modules
54 * that rely extensively on the API exported by the DRM module.
69 # define DEPRECATED __attribute__ ((deprecated))
74 #if defined(__linux__)
75 #include <asm/ioctl.h> /* For _IO* macros */
76 #define DRM_IOCTL_NR(n) _IOC_NR(n)
77 #define DRM_IOC_VOID _IOC_NONE
78 #define DRM_IOC_READ _IOC_READ
79 #define DRM_IOC_WRITE _IOC_WRITE
80 #define DRM_IOC_READWRITE _IOC_READ|_IOC_WRITE
81 #define DRM_IOC(dir, group, nr, size) _IOC(dir, group, nr, size)
82 #elif defined(__FreeBSD__) || defined(__FreeBSD_kernel__) || defined(__NetBSD__) || defined(__OpenBSD__) || defined(__DragonFly__)
83 #include <sys/ioccom.h>
84 #define DRM_IOCTL_NR(n) ((n) & 0xff)
85 #define DRM_IOC_VOID IOC_VOID
86 #define DRM_IOC_READ IOC_OUT
87 #define DRM_IOC_WRITE IOC_IN
88 #define DRM_IOC_READWRITE IOC_INOUT
89 #define DRM_IOC(dir, group, nr, size) _IOC(dir, group, nr, size)
95 #if defined(__linux__) || defined(__NetBSD__)
98 #define DRM_MAX_MINOR 15
100 #define DRM_NAME "drm" /**< Name in kernel, /dev, and /proc */
101 #define DRM_MIN_ORDER 5 /**< At least 2^5 bytes = 32 bytes */
102 #define DRM_MAX_ORDER 22 /**< Up to 2^22 bytes = 4MB */
103 #define DRM_RAM_PERCENT 10 /**< How much system ram can we lock? */
105 #define _DRM_LOCK_HELD 0x80000000U /**< Hardware lock is held */
106 #define _DRM_LOCK_CONT 0x40000000U /**< Hardware lock is contended */
107 #define _DRM_LOCK_IS_HELD(lock) ((lock) & _DRM_LOCK_HELD)
108 #define _DRM_LOCK_IS_CONT(lock) ((lock) & _DRM_LOCK_CONT)
109 #define _DRM_LOCKING_CONTEXT(lock) ((lock) & ~(_DRM_LOCK_HELD|_DRM_LOCK_CONT))
111 #if defined(__linux__)
112 typedef unsigned int drm_handle_t;
114 #include <sys/types.h>
115 typedef unsigned long drm_handle_t; /**< To mapped regions */
117 typedef unsigned int drm_context_t; /**< GLXContext handle */
118 typedef unsigned int drm_drawable_t;
119 typedef unsigned int drm_magic_t; /**< Magic for authentication */
124 * \warning If you change this structure, make sure you change
125 * XF86DRIClipRectRec in the server as well
127 * \note KW: Actually it's illegal to change either for
128 * backwards-compatibility reasons.
130 struct drm_clip_rect {
140 struct drm_tex_region {
143 unsigned char in_use;
144 unsigned char padding;
151 * The lock structure is a simple cache-line aligned integer. To avoid
152 * processor bus contention on a multiprocessor system, there should not be any
153 * other data stored in the same cache line.
156 __volatile__ unsigned int lock; /**< lock variable */
157 char padding[60]; /**< Pad to cache line */
160 /* This is beyond ugly, and only works on GCC. However, it allows me to use
161 * drm.h in places (i.e., in the X-server) where I can't use size_t. The real
162 * fix is to use uint32_t instead of size_t, but that fix will break existing
163 * LP64 (i.e., PowerPC64, SPARC64, IA-64, Alpha, etc.) systems. That *will*
164 * eventually happen, though. I chose 'unsigned long' to be the fallback type
165 * because that works on all the platforms I know about. Hopefully, the
166 * real fix will happen before that bites us.
170 # define DRM_SIZE_T __SIZE_TYPE__
172 # warning "__SIZE_TYPE__ not defined. Assuming sizeof(size_t) == sizeof(unsigned long)!"
173 # define DRM_SIZE_T unsigned long
177 * DRM_IOCTL_VERSION ioctl argument type.
179 * \sa drmGetVersion().
182 int version_major; /**< Major version */
183 int version_minor; /**< Minor version */
184 int version_patchlevel; /**< Patch level */
185 DRM_SIZE_T name_len; /**< Length of name buffer */
186 char __user *name; /**< Name of driver */
187 DRM_SIZE_T date_len; /**< Length of date buffer */
188 char __user *date; /**< User-space buffer to hold date */
189 DRM_SIZE_T desc_len; /**< Length of desc buffer */
190 char __user *desc; /**< User-space buffer to hold desc */
194 * DRM_IOCTL_GET_UNIQUE ioctl argument type.
196 * \sa drmGetBusid() and drmSetBusId().
199 DRM_SIZE_T unique_len; /**< Length of unique */
200 char __user *unique; /**< Unique name for driver instantiation */
206 int count; /**< Length of user-space structures */
207 struct drm_version __user *version;
215 * DRM_IOCTL_CONTROL ioctl argument type.
217 * \sa drmCtlInstHandler() and drmCtlUninstHandler().
230 * Type of memory to map.
233 _DRM_FRAME_BUFFER = 0, /**< WC (no caching), no core dump */
234 _DRM_REGISTERS = 1, /**< no caching, no core dump */
235 _DRM_SHM = 2, /**< shared, cached */
236 _DRM_AGP = 3, /**< AGP/GART */
237 _DRM_SCATTER_GATHER = 4, /**< Scatter/gather memory for PCI DMA */
238 _DRM_CONSISTENT = 5, /**< Consistent memory for PCI DMA */
243 * Memory mapping flags.
246 _DRM_RESTRICTED = 0x01, /**< Cannot be mapped to user-virtual */
247 _DRM_READ_ONLY = 0x02,
248 _DRM_LOCKED = 0x04, /**< shared, cached, locked */
249 _DRM_KERNEL = 0x08, /**< kernel requires access */
250 _DRM_WRITE_COMBINING = 0x10, /**< use write-combining if available */
251 _DRM_CONTAINS_LOCK = 0x20, /**< SHM page that contains lock */
252 _DRM_REMOVABLE = 0x40, /**< Removable mapping */
253 _DRM_DRIVER = 0x80 /**< Managed by driver */
256 struct drm_ctx_priv_map {
257 unsigned int ctx_id; /**< Context requesting private mapping */
258 void *handle; /**< Handle of map */
262 * DRM_IOCTL_GET_MAP, DRM_IOCTL_ADD_MAP and DRM_IOCTL_RM_MAP ioctls
268 unsigned long offset; /**< Requested physical address (0 for SAREA)*/
269 unsigned long size; /**< Requested physical size (bytes) */
270 enum drm_map_type type; /**< Type of memory to map */
271 enum drm_map_flags flags; /**< Flags */
272 void *handle; /**< User-space: "Handle" to pass to mmap() */
273 /**< Kernel-space: kernel-virtual address */
274 int mtrr; /**< MTRR slot used */
279 * DRM_IOCTL_GET_CLIENT ioctl argument type.
282 int idx; /**< Which client desired? */
283 int auth; /**< Is client authenticated? */
284 unsigned long pid; /**< Process ID */
285 unsigned long uid; /**< User ID */
286 unsigned long magic; /**< Magic */
287 unsigned long iocs; /**< Ioctl count */
297 _DRM_STAT_VALUE, /**< Generic value */
298 _DRM_STAT_BYTE, /**< Generic byte counter (1024bytes/K) */
299 _DRM_STAT_COUNT, /**< Generic non-byte counter (1000/k) */
301 _DRM_STAT_IRQ, /**< IRQ */
302 _DRM_STAT_PRIMARY, /**< Primary DMA bytes */
303 _DRM_STAT_SECONDARY, /**< Secondary DMA bytes */
304 _DRM_STAT_DMA, /**< DMA */
305 _DRM_STAT_SPECIAL, /**< Special DMA (e.g., priority or polled) */
306 _DRM_STAT_MISSED /**< Missed DMA opportunity */
307 /* Add to the *END* of the list */
311 * DRM_IOCTL_GET_STATS ioctl argument type.
317 enum drm_stat_type type;
322 * Hardware locking flags.
324 enum drm_lock_flags {
325 _DRM_LOCK_READY = 0x01, /**< Wait until hardware is ready for DMA */
326 _DRM_LOCK_QUIESCENT = 0x02, /**< Wait until hardware quiescent */
327 _DRM_LOCK_FLUSH = 0x04, /**< Flush this context's DMA queue first */
328 _DRM_LOCK_FLUSH_ALL = 0x08, /**< Flush all DMA queues first */
329 /* These *HALT* flags aren't supported yet
330 -- they will be used to support the
331 full-screen DGA-like mode. */
332 _DRM_HALT_ALL_QUEUES = 0x10, /**< Halt all current and future queues */
333 _DRM_HALT_CUR_QUEUES = 0x20 /**< Halt all current queues */
337 * DRM_IOCTL_LOCK, DRM_IOCTL_UNLOCK and DRM_IOCTL_FINISH ioctl argument type.
339 * \sa drmGetLock() and drmUnlock().
343 enum drm_lock_flags flags;
350 * These values \e must match xf86drm.h.
355 /* Flags for DMA buffer dispatch */
356 _DRM_DMA_BLOCK = 0x01, /**<
357 * Block until buffer dispatched.
359 * \note The buffer may not yet have
360 * been processed by the hardware --
361 * getting a hardware lock with the
362 * hardware quiescent will ensure
363 * that the buffer has been
366 _DRM_DMA_WHILE_LOCKED = 0x02, /**< Dispatch while lock held */
367 _DRM_DMA_PRIORITY = 0x04, /**< High priority dispatch */
369 /* Flags for DMA buffer request */
370 _DRM_DMA_WAIT = 0x10, /**< Wait for free buffers */
371 _DRM_DMA_SMALLER_OK = 0x20, /**< Smaller-than-requested buffers OK */
372 _DRM_DMA_LARGER_OK = 0x40 /**< Larger-than-requested buffers OK */
376 * DRM_IOCTL_ADD_BUFS and DRM_IOCTL_MARK_BUFS ioctl argument type.
380 struct drm_buf_desc {
381 int count; /**< Number of buffers of this size */
382 int size; /**< Size in bytes */
383 int low_mark; /**< Low water mark */
384 int high_mark; /**< High water mark */
386 _DRM_PAGE_ALIGN = 0x01, /**< Align on page boundaries for DMA */
387 _DRM_AGP_BUFFER = 0x02, /**< Buffer is in AGP space */
388 _DRM_SG_BUFFER = 0x04, /**< Scatter/gather memory buffer */
389 _DRM_FB_BUFFER = 0x08, /**< Buffer is in frame buffer */
390 _DRM_PCI_BUFFER_RO = 0x10 /**< Map PCI DMA buffer read-only */
392 unsigned long agp_start; /**<
393 * Start address of where the AGP buffers are
394 * in the AGP aperture
399 * DRM_IOCTL_INFO_BUFS ioctl argument type.
401 struct drm_buf_info {
402 int count; /**< Number of buffers described in list */
403 struct drm_buf_desc __user *list; /**< List of buffer descriptions */
407 * DRM_IOCTL_FREE_BUFS ioctl argument type.
409 struct drm_buf_free {
420 int idx; /**< Index into the master buffer list */
421 int total; /**< Buffer size */
422 int used; /**< Amount of buffer in use (for DMA) */
423 void __user *address; /**< Address of buffer */
427 * DRM_IOCTL_MAP_BUFS ioctl argument type.
430 int count; /**< Length of the buffer list */
431 #if defined(__cplusplus)
432 void __user *c_virtual;
434 void __user *virtual; /**< Mmap'd area in user-virtual */
436 struct drm_buf_pub __user *list; /**< Buffer information */
440 * DRM_IOCTL_DMA ioctl argument type.
442 * Indices here refer to the offset into the buffer list in drm_buf_get.
447 int context; /**< Context handle */
448 int send_count; /**< Number of buffers to send */
449 int __user *send_indices; /**< List of handles to buffers */
450 int __user *send_sizes; /**< Lengths of data to send */
451 enum drm_dma_flags flags; /**< Flags */
452 int request_count; /**< Number of buffers requested */
453 int request_size; /**< Desired size for buffers */
454 int __user *request_indices; /**< Buffer information */
455 int __user *request_sizes;
456 int granted_count; /**< Number of buffers granted */
460 _DRM_CONTEXT_PRESERVED = 0x01,
461 _DRM_CONTEXT_2DONLY = 0x02
465 * DRM_IOCTL_ADD_CTX ioctl argument type.
467 * \sa drmCreateContext() and drmDestroyContext().
470 drm_context_t handle;
471 enum drm_ctx_flags flags;
475 * DRM_IOCTL_RES_CTX ioctl argument type.
479 struct drm_ctx __user *contexts;
483 * DRM_IOCTL_ADD_DRAW and DRM_IOCTL_RM_DRAW ioctl argument type.
486 drm_drawable_t handle;
490 * DRM_IOCTL_UPDATE_DRAW ioctl argument type.
493 DRM_DRAWABLE_CLIPRECTS,
494 } drm_drawable_info_type_t;
496 struct drm_update_draw {
497 drm_drawable_t handle;
500 unsigned long long data;
504 * DRM_IOCTL_GET_MAGIC and DRM_IOCTL_AUTH_MAGIC ioctl argument type.
511 * DRM_IOCTL_IRQ_BUSID ioctl argument type.
513 * \sa drmGetInterruptFromBusID().
515 struct drm_irq_busid {
516 int irq; /**< IRQ number */
517 int busnum; /**< bus number */
518 int devnum; /**< device number */
519 int funcnum; /**< function number */
522 enum drm_vblank_seq_type {
523 _DRM_VBLANK_ABSOLUTE = 0x0, /**< Wait for specific vblank sequence number */
524 _DRM_VBLANK_RELATIVE = 0x1, /**< Wait for given number of vblanks */
525 _DRM_VBLANK_FLIP = 0x8000000, /**< Scheduled buffer swap should flip */
526 _DRM_VBLANK_NEXTONMISS = 0x10000000, /**< If missed, wait for next vblank */
527 _DRM_VBLANK_SECONDARY = 0x20000000, /**< Secondary display controller */
528 _DRM_VBLANK_SIGNAL = 0x40000000 /**< Send signal instead of blocking */
531 #define _DRM_VBLANK_TYPES_MASK (_DRM_VBLANK_ABSOLUTE | _DRM_VBLANK_RELATIVE)
532 #define _DRM_VBLANK_FLAGS_MASK (_DRM_VBLANK_SIGNAL | _DRM_VBLANK_SECONDARY | \
533 _DRM_VBLANK_NEXTONMISS)
535 struct drm_wait_vblank_request {
536 enum drm_vblank_seq_type type;
537 unsigned int sequence;
538 unsigned long signal;
541 struct drm_wait_vblank_reply {
542 enum drm_vblank_seq_type type;
543 unsigned int sequence;
549 * DRM_IOCTL_WAIT_VBLANK ioctl argument type.
551 * \sa drmWaitVBlank().
553 union drm_wait_vblank {
554 struct drm_wait_vblank_request request;
555 struct drm_wait_vblank_reply reply;
558 /* Handle monitor hotplug.
560 * May want to extend this later to pass reply information which
561 * details the connectors which generated the hotplug event.
562 * Some chipsets can't determine that though, and we'd need to leave
563 * it to the higher levels to determine exactly what changed.
565 enum drm_hotplug_seq_type {
566 _DRM_HOTPLUG_SIGNAL = 0x00000001, /**< Send signal instead of blocking */
568 struct drm_wait_hotplug_request {
569 enum drm_hotplug_seq_type type;
570 unsigned long signal;
573 struct drm_wait_hotplug_reply {
574 enum drm_hotplug_seq_type type;
575 unsigned int counter;
581 * DRM_IOCTL_WAIT_HOTPLUG ioctl argument type.
583 * \sa drmWaitHotplug().
585 union drm_wait_hotplug {
586 struct drm_wait_hotplug_request request;
587 struct drm_wait_hotplug_reply reply;
590 enum drm_modeset_ctl_cmd {
591 _DRM_PRE_MODESET = 1,
592 _DRM_POST_MODESET = 2,
597 * DRM_IOCTL_MODESET_CTL ioctl argument type
599 * \sa drmModesetCtl().
601 struct drm_modeset_ctl {
607 * DRM_IOCTL_AGP_ENABLE ioctl argument type.
609 * \sa drmAgpEnable().
611 struct drm_agp_mode {
612 unsigned long mode; /**< AGP mode */
616 * DRM_IOCTL_AGP_ALLOC and DRM_IOCTL_AGP_FREE ioctls argument type.
618 * \sa drmAgpAlloc() and drmAgpFree().
620 struct drm_agp_buffer {
621 unsigned long size; /**< In bytes -- will round to page boundary */
622 unsigned long handle; /**< Used for binding / unbinding */
623 unsigned long type; /**< Type of memory to allocate */
624 unsigned long physical; /**< Physical used by i810 */
628 * DRM_IOCTL_AGP_BIND and DRM_IOCTL_AGP_UNBIND ioctls argument type.
630 * \sa drmAgpBind() and drmAgpUnbind().
632 struct drm_agp_binding {
633 unsigned long handle; /**< From drm_agp_buffer */
634 unsigned long offset; /**< In bytes -- will round to page boundary */
638 * DRM_IOCTL_AGP_INFO ioctl argument type.
640 * \sa drmAgpVersionMajor(), drmAgpVersionMinor(), drmAgpGetMode(),
641 * drmAgpBase(), drmAgpSize(), drmAgpMemoryUsed(), drmAgpMemoryAvail(),
642 * drmAgpVendorId() and drmAgpDeviceId().
644 struct drm_agp_info {
645 int agp_version_major;
646 int agp_version_minor;
648 unsigned long aperture_base; /**< physical address */
649 unsigned long aperture_size; /**< bytes */
650 unsigned long memory_allowed; /**< bytes */
651 unsigned long memory_used;
653 /** \name PCI information */
655 unsigned short id_vendor;
656 unsigned short id_device;
661 * DRM_IOCTL_SG_ALLOC ioctl argument type.
663 struct drm_scatter_gather {
664 unsigned long size; /**< In bytes -- will round to page boundary */
665 unsigned long handle; /**< Used for mapping / unmapping */
669 * DRM_IOCTL_SET_VERSION ioctl argument type.
671 struct drm_set_version {
678 struct drm_gem_close {
679 /** Handle of the object to be closed. */
684 struct drm_gem_flink {
685 /** Handle for the object being named */
688 /** Returned global name */
692 struct drm_gem_open {
693 /** Name of object being opened */
696 /** Returned handle for the object */
699 /** Returned size of the object */
706 #define DRM_DISPLAY_INFO_LEN 32
707 #define DRM_CONNECTOR_NAME_LEN 32
708 #define DRM_DISPLAY_MODE_LEN 32
709 #define DRM_PROP_NAME_LEN 32
711 #define DRM_MODE_TYPE_BUILTIN (1<<0)
712 #define DRM_MODE_TYPE_CLOCK_C ((1<<1) | DRM_MODE_TYPE_BUILTIN)
713 #define DRM_MODE_TYPE_CRTC_C ((1<<2) | DRM_MODE_TYPE_BUILTIN)
714 #define DRM_MODE_TYPE_PREFERRED (1<<3)
715 #define DRM_MODE_TYPE_DEFAULT (1<<4)
716 #define DRM_MODE_TYPE_USERDEF (1<<5)
717 #define DRM_MODE_TYPE_DRIVER (1<<6)
719 /* Video mode flags */
720 /* bit compatible with the xorg definitions. */
721 #define DRM_MODE_FLAG_PHSYNC (1<<0)
722 #define DRM_MODE_FLAG_NHSYNC (1<<1)
723 #define DRM_MODE_FLAG_PVSYNC (1<<2)
724 #define DRM_MODE_FLAG_NVSYNC (1<<3)
725 #define DRM_MODE_FLAG_INTERLACE (1<<4)
726 #define DRM_MODE_FLAG_DBLSCAN (1<<5)
727 #define DRM_MODE_FLAG_CSYNC (1<<6)
728 #define DRM_MODE_FLAG_PCSYNC (1<<7)
729 #define DRM_MODE_FLAG_NCSYNC (1<<8)
730 #define DRM_MODE_FLAG_HSKEW (1<<9) /* hskew provided */
731 #define DRM_MODE_FLAG_BCAST (1<<10)
732 #define DRM_MODE_FLAG_PIXMUX (1<<11)
733 #define DRM_MODE_FLAG_DBLCLK (1<<12)
734 #define DRM_MODE_FLAG_CLKDIV2 (1<<13)
737 /* bit compatible with the xorg definitions. */
738 #define DRM_MODE_DPMS_ON 0
739 #define DRM_MODE_DPMS_STANDBY 1
740 #define DRM_MODE_DPMS_SUSPEND 2
741 #define DRM_MODE_DPMS_OFF 3
743 /* Scaling mode options */
744 #define DRM_MODE_SCALE_NON_GPU 0
745 #define DRM_MODE_SCALE_FULLSCREEN 1
746 #define DRM_MODE_SCALE_NO_SCALE 2
747 #define DRM_MODE_SCALE_ASPECT 3
749 /* Dithering mode options */
750 #define DRM_MODE_DITHERING_OFF 0
751 #define DRM_MODE_DITHERING_ON 1
753 struct drm_mode_modeinfo {
755 unsigned short hdisplay, hsync_start, hsync_end, htotal, hskew;
756 unsigned short vdisplay, vsync_start, vsync_end, vtotal, vscan;
758 unsigned int vrefresh; /* vertical refresh * 1000 */
762 char name[DRM_DISPLAY_MODE_LEN];
765 struct drm_mode_card_res {
767 uint64_t crtc_id_ptr;
768 uint64_t connector_id_ptr;
769 uint64_t encoder_id_ptr;
772 int count_connectors;
774 int min_width, max_width;
775 int min_height, max_height;
778 struct drm_mode_crtc {
779 uint64_t set_connectors_ptr;
780 int count_connectors;
782 unsigned int crtc_id; /**< Id */
783 unsigned int fb_id; /**< Id of framebuffer */
785 int x, y; /**< Position on the frameuffer */
789 struct drm_mode_modeinfo mode;
792 #define DRM_MODE_ENCODER_NONE 0
793 #define DRM_MODE_ENCODER_DAC 1
794 #define DRM_MODE_ENCODER_TMDS 2
795 #define DRM_MODE_ENCODER_LVDS 3
796 #define DRM_MODE_ENCODER_TVDAC 4
798 struct drm_mode_get_encoder {
800 unsigned int encoder_type;
801 unsigned int encoder_id;
803 unsigned int crtc_id; /**< Id of crtc */
805 uint32_t possible_crtcs;
806 uint32_t possible_clones;
809 /* This is for connectors with multiple signal types. */
810 /* Try to match DRM_MODE_CONNECTOR_X as closely as possible. */
811 #define DRM_MODE_SUBCONNECTOR_Automatic 0
812 #define DRM_MODE_SUBCONNECTOR_Unknown 0
813 #define DRM_MODE_SUBCONNECTOR_DVID 3
814 #define DRM_MODE_SUBCONNECTOR_DVIA 4
815 #define DRM_MODE_SUBCONNECTOR_Composite 5
816 #define DRM_MODE_SUBCONNECTOR_SVIDEO 6
817 #define DRM_MODE_SUBCONNECTOR_Component 8
819 #define DRM_MODE_CONNECTOR_Unknown 0
820 #define DRM_MODE_CONNECTOR_VGA 1
821 #define DRM_MODE_CONNECTOR_DVII 2
822 #define DRM_MODE_CONNECTOR_DVID 3
823 #define DRM_MODE_CONNECTOR_DVIA 4
824 #define DRM_MODE_CONNECTOR_Composite 5
825 #define DRM_MODE_CONNECTOR_SVIDEO 6
826 #define DRM_MODE_CONNECTOR_LVDS 7
827 #define DRM_MODE_CONNECTOR_Component 8
828 #define DRM_MODE_CONNECTOR_9PinDIN 9
829 #define DRM_MODE_CONNECTOR_DisplayPort 10
830 #define DRM_MODE_CONNECTOR_HDMIA 11
831 #define DRM_MODE_CONNECTOR_HDMIB 12
833 struct drm_mode_get_connector {
835 uint64_t encoders_ptr;
838 uint64_t prop_values_ptr;
844 unsigned int encoder_id; /**< Current Encoder */
845 unsigned int connector_id; /**< Id */
846 unsigned int connector_type;
847 unsigned int connector_type_id;
849 unsigned int connection;
850 unsigned int mm_width, mm_height; /**< HxW in millimeters */
851 unsigned int subpixel;
854 #define DRM_MODE_PROP_PENDING (1<<0)
855 #define DRM_MODE_PROP_RANGE (1<<1)
856 #define DRM_MODE_PROP_IMMUTABLE (1<<2)
857 #define DRM_MODE_PROP_ENUM (1<<3) // enumerated type with text strings
858 #define DRM_MODE_PROP_BLOB (1<<4)
860 struct drm_mode_property_enum {
862 unsigned char name[DRM_PROP_NAME_LEN];
865 struct drm_mode_get_property {
866 uint64_t values_ptr; /* values and blob lengths */
867 uint64_t enum_blob_ptr; /* enum and blob id ptrs */
869 unsigned int prop_id;
871 unsigned char name[DRM_PROP_NAME_LEN];
874 int count_enum_blobs;
877 struct drm_mode_connector_set_property {
879 unsigned int prop_id;
880 unsigned int connector_id;
883 struct drm_mode_get_blob {
889 struct drm_mode_fb_cmd {
890 unsigned int buffer_id;
891 unsigned int width, height;
898 struct drm_mode_mode_cmd {
899 unsigned int connector_id;
900 struct drm_mode_modeinfo mode;
903 #define DRM_MODE_CURSOR_BO 0x01
904 #define DRM_MODE_CURSOR_MOVE 0x02
907 * depending on the value in flags diffrent members are used.
913 * handle - if 0 turns the cursor of
920 struct drm_mode_cursor {
933 struct drm_mode_hotplug {
937 struct drm_mode_crtc_lut {
948 * \name Ioctls Definitions
952 #define DRM_IOCTL_BASE 'd'
953 #define DRM_IO(nr) _IO(DRM_IOCTL_BASE,nr)
954 #define DRM_IOR(nr,type) _IOR(DRM_IOCTL_BASE,nr,type)
955 #define DRM_IOW(nr,type) _IOW(DRM_IOCTL_BASE,nr,type)
956 #define DRM_IOWR(nr,type) _IOWR(DRM_IOCTL_BASE,nr,type)
958 #define DRM_IOCTL_VERSION DRM_IOWR(0x00, struct drm_version)
959 #define DRM_IOCTL_GET_UNIQUE DRM_IOWR(0x01, struct drm_unique)
960 #define DRM_IOCTL_GET_MAGIC DRM_IOR( 0x02, struct drm_auth)
961 #define DRM_IOCTL_IRQ_BUSID DRM_IOWR(0x03, struct drm_irq_busid)
962 #define DRM_IOCTL_GET_MAP DRM_IOWR(0x04, struct drm_map)
963 #define DRM_IOCTL_GET_CLIENT DRM_IOWR(0x05, struct drm_client)
964 #define DRM_IOCTL_GET_STATS DRM_IOR( 0x06, struct drm_stats)
965 #define DRM_IOCTL_SET_VERSION DRM_IOWR(0x07, struct drm_set_version)
966 #define DRM_IOCTL_MODESET_CTL DRM_IOW(0x08, struct drm_modeset_ctl)
968 #define DRM_IOCTL_GEM_CLOSE DRM_IOW (0x09, struct drm_gem_close)
969 #define DRM_IOCTL_GEM_FLINK DRM_IOWR(0x0a, struct drm_gem_flink)
970 #define DRM_IOCTL_GEM_OPEN DRM_IOWR(0x0b, struct drm_gem_open)
972 #define DRM_IOCTL_SET_UNIQUE DRM_IOW( 0x10, struct drm_unique)
973 #define DRM_IOCTL_AUTH_MAGIC DRM_IOW( 0x11, struct drm_auth)
974 #define DRM_IOCTL_BLOCK DRM_IOWR(0x12, struct drm_block)
975 #define DRM_IOCTL_UNBLOCK DRM_IOWR(0x13, struct drm_block)
976 #define DRM_IOCTL_CONTROL DRM_IOW( 0x14, struct drm_control)
977 #define DRM_IOCTL_ADD_MAP DRM_IOWR(0x15, struct drm_map)
978 #define DRM_IOCTL_ADD_BUFS DRM_IOWR(0x16, struct drm_buf_desc)
979 #define DRM_IOCTL_MARK_BUFS DRM_IOW( 0x17, struct drm_buf_desc)
980 #define DRM_IOCTL_INFO_BUFS DRM_IOWR(0x18, struct drm_buf_info)
981 #define DRM_IOCTL_MAP_BUFS DRM_IOWR(0x19, struct drm_buf_map)
982 #define DRM_IOCTL_FREE_BUFS DRM_IOW( 0x1a, struct drm_buf_free)
984 #define DRM_IOCTL_RM_MAP DRM_IOW( 0x1b, struct drm_map)
986 #define DRM_IOCTL_SET_SAREA_CTX DRM_IOW( 0x1c, struct drm_ctx_priv_map)
987 #define DRM_IOCTL_GET_SAREA_CTX DRM_IOWR(0x1d, struct drm_ctx_priv_map)
989 #define DRM_IOCTL_SET_MASTER DRM_IO(0x1e)
990 #define DRM_IOCTL_DROP_MASTER DRM_IO(0x1f)
992 #define DRM_IOCTL_ADD_CTX DRM_IOWR(0x20, struct drm_ctx)
993 #define DRM_IOCTL_RM_CTX DRM_IOWR(0x21, struct drm_ctx)
994 #define DRM_IOCTL_MOD_CTX DRM_IOW( 0x22, struct drm_ctx)
995 #define DRM_IOCTL_GET_CTX DRM_IOWR(0x23, struct drm_ctx)
996 #define DRM_IOCTL_SWITCH_CTX DRM_IOW( 0x24, struct drm_ctx)
997 #define DRM_IOCTL_NEW_CTX DRM_IOW( 0x25, struct drm_ctx)
998 #define DRM_IOCTL_RES_CTX DRM_IOWR(0x26, struct drm_ctx_res)
999 #define DRM_IOCTL_ADD_DRAW DRM_IOWR(0x27, struct drm_draw)
1000 #define DRM_IOCTL_RM_DRAW DRM_IOWR(0x28, struct drm_draw)
1001 #define DRM_IOCTL_DMA DRM_IOWR(0x29, struct drm_dma)
1002 #define DRM_IOCTL_LOCK DRM_IOW( 0x2a, struct drm_lock)
1003 #define DRM_IOCTL_UNLOCK DRM_IOW( 0x2b, struct drm_lock)
1004 #define DRM_IOCTL_FINISH DRM_IOW( 0x2c, struct drm_lock)
1006 #define DRM_IOCTL_AGP_ACQUIRE DRM_IO( 0x30)
1007 #define DRM_IOCTL_AGP_RELEASE DRM_IO( 0x31)
1008 #define DRM_IOCTL_AGP_ENABLE DRM_IOW( 0x32, struct drm_agp_mode)
1009 #define DRM_IOCTL_AGP_INFO DRM_IOR( 0x33, struct drm_agp_info)
1010 #define DRM_IOCTL_AGP_ALLOC DRM_IOWR(0x34, struct drm_agp_buffer)
1011 #define DRM_IOCTL_AGP_FREE DRM_IOW( 0x35, struct drm_agp_buffer)
1012 #define DRM_IOCTL_AGP_BIND DRM_IOW( 0x36, struct drm_agp_binding)
1013 #define DRM_IOCTL_AGP_UNBIND DRM_IOW( 0x37, struct drm_agp_binding)
1015 #define DRM_IOCTL_SG_ALLOC DRM_IOW( 0x38, struct drm_scatter_gather)
1016 #define DRM_IOCTL_SG_FREE DRM_IOW( 0x39, struct drm_scatter_gather)
1018 #define DRM_IOCTL_WAIT_VBLANK DRM_IOWR(0x3a, union drm_wait_vblank)
1020 #define DRM_IOCTL_UPDATE_DRAW DRM_IOW(0x3f, struct drm_update_draw)
1022 #define DRM_IOCTL_MODE_GETRESOURCES DRM_IOWR(0xA0, struct drm_mode_card_res)
1023 #define DRM_IOCTL_MODE_GETCRTC DRM_IOWR(0xA1, struct drm_mode_crtc)
1024 #define DRM_IOCTL_MODE_GETCONNECTOR DRM_IOWR(0xA2, struct drm_mode_get_connector)
1025 #define DRM_IOCTL_MODE_SETCRTC DRM_IOWR(0xA3, struct drm_mode_crtc)
1026 #define DRM_IOCTL_MODE_ADDFB DRM_IOWR(0xA4, struct drm_mode_fb_cmd)
1027 #define DRM_IOCTL_MODE_RMFB DRM_IOWR(0xA5, unsigned int)
1028 #define DRM_IOCTL_MODE_GETFB DRM_IOWR(0xA6, struct drm_mode_fb_cmd)
1030 #define DRM_IOCTL_MODE_SETPROPERTY DRM_IOWR(0xA7, struct drm_mode_connector_set_property)
1031 #define DRM_IOCTL_MODE_GETPROPBLOB DRM_IOWR(0xA8, struct drm_mode_get_blob)
1032 #define DRM_IOCTL_MODE_ATTACHMODE DRM_IOWR(0xA9, struct drm_mode_mode_cmd)
1033 #define DRM_IOCTL_MODE_DETACHMODE DRM_IOWR(0xAA, struct drm_mode_mode_cmd)
1035 #define DRM_IOCTL_MODE_GETPROPERTY DRM_IOWR(0xAB, struct drm_mode_get_property)
1036 #define DRM_IOCTL_MODE_CURSOR DRM_IOWR(0xAC, struct drm_mode_cursor)
1037 #define DRM_IOCTL_MODE_HOTPLUG DRM_IOWR(0xAD, struct drm_mode_hotplug)
1038 #define DRM_IOCTL_WAIT_HOTPLUG DRM_IOWR(0xAE, union drm_wait_hotplug)
1040 #define DRM_IOCTL_MODE_REPLACEFB DRM_IOWR(0xAF, struct drm_mode_fb_cmd)
1041 #define DRM_IOCTL_MODE_GETENCODER DRM_IOWR(0xB0, struct drm_mode_get_encoder)
1042 #define DRM_IOCTL_MODE_GETGAMMA DRM_IOWR(0xB1, struct drm_mode_crtc_lut)
1043 #define DRM_IOCTL_MODE_SETGAMMA DRM_IOWR(0xB2, struct drm_mode_crtc_lut)
1048 * Device specific ioctls should only be in their respective headers
1049 * The device specific ioctl range is from 0x40 to 0x99.
1050 * Generic IOCTLS restart at 0xA0.
1052 * \sa drmCommandNone(), drmCommandRead(), drmCommandWrite(), and
1053 * drmCommandReadWrite().
1055 #define DRM_COMMAND_BASE 0x40
1056 #define DRM_COMMAND_END 0xA0
1059 #if !defined(__KERNEL__) || defined(__FreeBSD__) || defined(__OpenBSD__) || defined(__NetBSD__)
1060 typedef struct drm_clip_rect drm_clip_rect_t;
1061 typedef struct drm_tex_region drm_tex_region_t;
1062 typedef struct drm_hw_lock drm_hw_lock_t;
1063 typedef struct drm_version drm_version_t;
1064 typedef struct drm_unique drm_unique_t;
1065 typedef struct drm_list drm_list_t;
1066 typedef struct drm_block drm_block_t;
1067 typedef struct drm_control drm_control_t;
1068 typedef enum drm_map_type drm_map_type_t;
1069 typedef enum drm_map_flags drm_map_flags_t;
1070 typedef struct drm_ctx_priv_map drm_ctx_priv_map_t;
1071 typedef struct drm_map drm_map_t;
1072 typedef struct drm_client drm_client_t;
1073 typedef enum drm_stat_type drm_stat_type_t;
1074 typedef struct drm_stats drm_stats_t;
1075 typedef enum drm_lock_flags drm_lock_flags_t;
1076 typedef struct drm_lock drm_lock_t;
1077 typedef enum drm_dma_flags drm_dma_flags_t;
1078 typedef struct drm_buf_desc drm_buf_desc_t;
1079 typedef struct drm_buf_info drm_buf_info_t;
1080 typedef struct drm_buf_free drm_buf_free_t;
1081 typedef struct drm_buf_pub drm_buf_pub_t;
1082 typedef struct drm_buf_map drm_buf_map_t;
1083 typedef struct drm_dma drm_dma_t;
1084 typedef union drm_wait_vblank drm_wait_vblank_t;
1085 typedef struct drm_agp_mode drm_agp_mode_t;
1086 typedef enum drm_ctx_flags drm_ctx_flags_t;
1087 typedef struct drm_ctx drm_ctx_t;
1088 typedef struct drm_ctx_res drm_ctx_res_t;
1089 typedef struct drm_draw drm_draw_t;
1090 typedef struct drm_update_draw drm_update_draw_t;
1091 typedef struct drm_auth drm_auth_t;
1092 typedef struct drm_irq_busid drm_irq_busid_t;
1093 typedef enum drm_vblank_seq_type drm_vblank_seq_type_t;
1094 typedef struct drm_agp_buffer drm_agp_buffer_t;
1095 typedef struct drm_agp_binding drm_agp_binding_t;
1096 typedef struct drm_agp_info drm_agp_info_t;
1097 typedef struct drm_scatter_gather drm_scatter_gather_t;
1098 typedef struct drm_set_version drm_set_version_t;
1100 typedef struct drm_fence_arg drm_fence_arg_t;
1101 typedef struct drm_mm_type_arg drm_mm_type_arg_t;
1102 typedef struct drm_mm_init_arg drm_mm_init_arg_t;
1103 typedef enum drm_bo_type drm_bo_type_t;