OSDN Git Service

modesetting-101: Move some defines used for enumeration into the public header.
[android-x86/external-libdrm.git] / shared-core / drm.h
1 /**
2  * \file drm.h
3  * Header for the Direct Rendering Manager
4  *
5  * \author Rickard E. (Rik) Faith <faith@valinux.com>
6  *
7  * \par Acknowledgments:
8  * Dec 1999, Richard Henderson <rth@twiddle.net>, move to generic \c cmpxchg.
9  */
10
11 /*
12  * Copyright 1999 Precision Insight, Inc., Cedar Park, Texas.
13  * Copyright 2000 VA Linux Systems, Inc., Sunnyvale, California.
14  * All rights reserved.
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 (including the next
24  * paragraph) shall be included in all copies or substantial portions of the
25  * Software.
26  *
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.
34  */
35
36 /**
37  * \mainpage
38  *
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).
42  *
43  * The DRM supports the Direct Rendering Infrastructure (DRI) in four major
44  * ways:
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
52  *        switch.
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.
55  *
56  */
57
58 #ifndef _DRM_H_
59 #define _DRM_H_
60
61 #ifndef __user
62 #define __user
63 #endif
64 #ifndef __iomem
65 #define __iomem
66 #endif
67
68 #ifdef __GNUC__
69 # define DEPRECATED  __attribute__ ((deprecated))
70 #else
71 # define DEPRECATED
72 #endif
73
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)
90 #endif
91
92 #ifdef __OpenBSD__
93 #define DRM_MAJOR       81
94 #endif
95 #if defined(__linux__) || defined(__NetBSD__)
96 #define DRM_MAJOR       226
97 #endif
98 #define DRM_MAX_MINOR   15
99
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? */
104
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))
110
111 #if defined(__linux__)
112 typedef unsigned int drm_handle_t;
113 #else
114 #include <sys/types.h>
115 typedef unsigned long drm_handle_t;     /**< To mapped regions */
116 #endif
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 */
120
121 /**
122  * Cliprect.
123  *
124  * \warning If you change this structure, make sure you change
125  * XF86DRIClipRectRec in the server as well
126  *
127  * \note KW: Actually it's illegal to change either for
128  * backwards-compatibility reasons.
129  */
130 struct drm_clip_rect {
131         unsigned short x1;
132         unsigned short y1;
133         unsigned short x2;
134         unsigned short y2;
135 };
136
137 /**
138  * Texture region,
139  */
140 struct drm_tex_region {
141         unsigned char next;
142         unsigned char prev;
143         unsigned char in_use;
144         unsigned char padding;
145         unsigned int age;
146 };
147
148 /**
149  * Hardware lock.
150  *
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.
154  */
155 struct drm_hw_lock {
156         __volatile__ unsigned int lock;         /**< lock variable */
157         char padding[60];                       /**< Pad to cache line */
158 };
159
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.
167  */
168
169 #ifdef __SIZE_TYPE__
170 # define DRM_SIZE_T __SIZE_TYPE__
171 #else
172 # warning "__SIZE_TYPE__ not defined.  Assuming sizeof(size_t) == sizeof(unsigned long)!"
173 # define DRM_SIZE_T unsigned long
174 #endif
175
176 /**
177  * DRM_IOCTL_VERSION ioctl argument type.
178  *
179  * \sa drmGetVersion().
180  */
181 struct drm_version {
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 */
191 };
192
193 /**
194  * DRM_IOCTL_GET_UNIQUE ioctl argument type.
195  *
196  * \sa drmGetBusid() and drmSetBusId().
197  */
198 struct drm_unique {
199         DRM_SIZE_T unique_len;    /**< Length of unique */
200         char __user *unique;              /**< Unique name for driver instantiation */
201 };
202
203 #undef DRM_SIZE_T
204
205 struct drm_list {
206         int count;                /**< Length of user-space structures */
207         struct drm_version __user *version;
208 };
209
210 struct drm_block {
211         int unused;
212 };
213
214 /**
215  * DRM_IOCTL_CONTROL ioctl argument type.
216  *
217  * \sa drmCtlInstHandler() and drmCtlUninstHandler().
218  */
219 struct drm_control {
220         enum {
221                 DRM_ADD_COMMAND,
222                 DRM_RM_COMMAND,
223                 DRM_INST_HANDLER,
224                 DRM_UNINST_HANDLER
225         } func;
226         int irq;
227 };
228
229 /**
230  * Type of memory to map.
231  */
232 enum drm_map_type {
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 */
239         _DRM_TTM = 6
240 };
241
242 /**
243  * Memory mapping flags.
244  */
245 enum drm_map_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 */
254 };
255
256 struct drm_ctx_priv_map {
257         unsigned int ctx_id;     /**< Context requesting private mapping */
258         void *handle;            /**< Handle of map */
259 };
260
261 /**
262  * DRM_IOCTL_GET_MAP, DRM_IOCTL_ADD_MAP and DRM_IOCTL_RM_MAP ioctls
263  * argument type.
264  *
265  * \sa drmAddMap().
266  */
267 struct drm_map {
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 */
275         /*   Private data */
276 };
277
278 /**
279  * DRM_IOCTL_GET_CLIENT ioctl argument type.
280  */
281 struct drm_client {
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 */
288 };
289
290 enum drm_stat_type {
291         _DRM_STAT_LOCK,
292         _DRM_STAT_OPENS,
293         _DRM_STAT_CLOSES,
294         _DRM_STAT_IOCTLS,
295         _DRM_STAT_LOCKS,
296         _DRM_STAT_UNLOCKS,
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) */
300
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 */
308 };
309
310 /**
311  * DRM_IOCTL_GET_STATS ioctl argument type.
312  */
313 struct drm_stats {
314         unsigned long count;
315         struct {
316                 unsigned long value;
317                 enum drm_stat_type type;
318         } data[15];
319 };
320
321 /**
322  * Hardware locking flags.
323  */
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 */
334 };
335
336 /**
337  * DRM_IOCTL_LOCK, DRM_IOCTL_UNLOCK and DRM_IOCTL_FINISH ioctl argument type.
338  *
339  * \sa drmGetLock() and drmUnlock().
340  */
341 struct drm_lock {
342         int context;
343         enum drm_lock_flags flags;
344 };
345
346 /**
347  * DMA flags
348  *
349  * \warning
350  * These values \e must match xf86drm.h.
351  *
352  * \sa drm_dma.
353  */
354 enum drm_dma_flags {
355         /* Flags for DMA buffer dispatch */
356         _DRM_DMA_BLOCK = 0x01,        /**<
357                                        * Block until buffer dispatched.
358                                        *
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
364                                        * processed.
365                                        */
366         _DRM_DMA_WHILE_LOCKED = 0x02, /**< Dispatch while lock held */
367         _DRM_DMA_PRIORITY = 0x04,     /**< High priority dispatch */
368
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 */
373 };
374
375 /**
376  * DRM_IOCTL_ADD_BUFS and DRM_IOCTL_MARK_BUFS ioctl argument type.
377  *
378  * \sa drmAddBufs().
379  */
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 */
385         enum {
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 */
391         } flags;
392         unsigned long agp_start; /**<
393                                   * Start address of where the AGP buffers are
394                                   * in the AGP aperture
395                                   */
396 };
397
398 /**
399  * DRM_IOCTL_INFO_BUFS ioctl argument type.
400  */
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 */
404 };
405
406 /**
407  * DRM_IOCTL_FREE_BUFS ioctl argument type.
408  */
409 struct drm_buf_free {
410         int count;
411         int __user *list;
412 };
413
414 /**
415  * Buffer information
416  *
417  * \sa drm_buf_map.
418  */
419 struct drm_buf_pub {
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 */
424 };
425
426 /**
427  * DRM_IOCTL_MAP_BUFS ioctl argument type.
428  */
429 struct drm_buf_map {
430         int count;              /**< Length of the buffer list */
431 #if defined(__cplusplus)
432         void __user *c_virtual;
433 #else
434         void __user *virtual;           /**< Mmap'd area in user-virtual */
435 #endif
436         struct drm_buf_pub __user *list;        /**< Buffer information */
437 };
438
439 /**
440  * DRM_IOCTL_DMA ioctl argument type.
441  *
442  * Indices here refer to the offset into the buffer list in drm_buf_get.
443  *
444  * \sa drmDMA().
445  */
446 struct drm_dma {
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 */
457 };
458
459 enum drm_ctx_flags {
460         _DRM_CONTEXT_PRESERVED = 0x01,
461         _DRM_CONTEXT_2DONLY = 0x02
462 };
463
464 /**
465  * DRM_IOCTL_ADD_CTX ioctl argument type.
466  *
467  * \sa drmCreateContext() and drmDestroyContext().
468  */
469 struct drm_ctx {
470         drm_context_t handle;
471         enum drm_ctx_flags flags;
472 };
473
474 /**
475  * DRM_IOCTL_RES_CTX ioctl argument type.
476  */
477 struct drm_ctx_res {
478         int count;
479         struct drm_ctx __user *contexts;
480 };
481
482 /**
483  * DRM_IOCTL_ADD_DRAW and DRM_IOCTL_RM_DRAW ioctl argument type.
484  */
485 struct drm_draw {
486         drm_drawable_t handle;
487 };
488
489 /**
490  * DRM_IOCTL_UPDATE_DRAW ioctl argument type.
491  */
492 typedef enum {
493         DRM_DRAWABLE_CLIPRECTS,
494 } drm_drawable_info_type_t;
495
496 struct drm_update_draw {
497         drm_drawable_t handle;
498         unsigned int type;
499         unsigned int num;
500         unsigned long long data;
501 };
502
503 /**
504  * DRM_IOCTL_GET_MAGIC and DRM_IOCTL_AUTH_MAGIC ioctl argument type.
505  */
506 struct drm_auth {
507         drm_magic_t magic;
508 };
509
510 /**
511  * DRM_IOCTL_IRQ_BUSID ioctl argument type.
512  *
513  * \sa drmGetInterruptFromBusID().
514  */
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 */
520 };
521
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 */
529 };
530
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)
534
535 struct drm_wait_vblank_request {
536         enum drm_vblank_seq_type type;
537         unsigned int sequence;
538         unsigned long signal;
539 };
540
541 struct drm_wait_vblank_reply {
542         enum drm_vblank_seq_type type;
543         unsigned int sequence;
544         long tval_sec;
545         long tval_usec;
546 };
547
548 /**
549  * DRM_IOCTL_WAIT_VBLANK ioctl argument type.
550  *
551  * \sa drmWaitVBlank().
552  */
553 union drm_wait_vblank {
554         struct drm_wait_vblank_request request;
555         struct drm_wait_vblank_reply reply;
556 };
557
558 /* Handle monitor hotplug.
559  *
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.
564  */
565 enum drm_hotplug_seq_type {
566         _DRM_HOTPLUG_SIGNAL = 0x00000001, /**< Send signal instead of blocking */
567 };
568 struct drm_wait_hotplug_request {
569         enum drm_hotplug_seq_type type;
570         unsigned long signal;
571 };
572
573 struct drm_wait_hotplug_reply {
574         enum drm_hotplug_seq_type type;
575         unsigned int counter;
576         long tval_sec;
577         long tval_usec;
578 };
579
580 /**
581  * DRM_IOCTL_WAIT_HOTPLUG ioctl argument type.
582  *
583  * \sa drmWaitHotplug().
584  */
585 union drm_wait_hotplug {
586         struct drm_wait_hotplug_request request;
587         struct drm_wait_hotplug_reply reply;
588 };
589
590 enum drm_modeset_ctl_cmd {
591         _DRM_PRE_MODESET = 1,
592         _DRM_POST_MODESET = 2,
593 };
594
595
596 /**
597  * DRM_IOCTL_MODESET_CTL ioctl argument type
598  *
599  * \sa drmModesetCtl().
600  */
601 struct drm_modeset_ctl {
602         uint32_t crtc;
603         uint32_t cmd;
604 };
605
606 /**
607  * DRM_IOCTL_AGP_ENABLE ioctl argument type.
608  *
609  * \sa drmAgpEnable().
610  */
611 struct drm_agp_mode {
612         unsigned long mode;     /**< AGP mode */
613 };
614
615 /**
616  * DRM_IOCTL_AGP_ALLOC and DRM_IOCTL_AGP_FREE ioctls argument type.
617  *
618  * \sa drmAgpAlloc() and drmAgpFree().
619  */
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 */
625 };
626
627 /**
628  * DRM_IOCTL_AGP_BIND and DRM_IOCTL_AGP_UNBIND ioctls argument type.
629  *
630  * \sa drmAgpBind() and drmAgpUnbind().
631  */
632 struct drm_agp_binding {
633         unsigned long handle;   /**< From drm_agp_buffer */
634         unsigned long offset;   /**< In bytes -- will round to page boundary */
635 };
636
637 /**
638  * DRM_IOCTL_AGP_INFO ioctl argument type.
639  *
640  * \sa drmAgpVersionMajor(), drmAgpVersionMinor(), drmAgpGetMode(),
641  * drmAgpBase(), drmAgpSize(), drmAgpMemoryUsed(), drmAgpMemoryAvail(),
642  * drmAgpVendorId() and drmAgpDeviceId().
643  */
644 struct drm_agp_info {
645         int agp_version_major;
646         int agp_version_minor;
647         unsigned long mode;
648         unsigned long aperture_base;   /**< physical address */
649         unsigned long aperture_size;   /**< bytes */
650         unsigned long memory_allowed;  /**< bytes */
651         unsigned long memory_used;
652
653         /** \name PCI information */
654         /*@{ */
655         unsigned short id_vendor;
656         unsigned short id_device;
657         /*@} */
658 };
659
660 /**
661  * DRM_IOCTL_SG_ALLOC ioctl argument type.
662  */
663 struct drm_scatter_gather {
664         unsigned long size;     /**< In bytes -- will round to page boundary */
665         unsigned long handle;   /**< Used for mapping / unmapping */
666 };
667
668 /**
669  * DRM_IOCTL_SET_VERSION ioctl argument type.
670  */
671 struct drm_set_version {
672         int drm_di_major;
673         int drm_di_minor;
674         int drm_dd_major;
675         int drm_dd_minor;
676 };
677
678
679 #define DRM_FENCE_FLAG_EMIT                0x00000001
680 #define DRM_FENCE_FLAG_SHAREABLE           0x00000002
681 /**
682  * On hardware with no interrupt events for operation completion,
683  * indicates that the kernel should sleep while waiting for any blocking
684  * operation to complete rather than spinning.
685  *
686  * Has no effect otherwise.
687  */
688 #define DRM_FENCE_FLAG_WAIT_LAZY           0x00000004
689 #define DRM_FENCE_FLAG_NO_USER             0x00000010
690
691 /* Reserved for driver use */
692 #define DRM_FENCE_MASK_DRIVER              0xFF000000
693
694 #define DRM_FENCE_TYPE_EXE                 0x00000001
695
696 struct drm_fence_arg {
697         unsigned int handle;
698         unsigned int fence_class;
699         unsigned int type;
700         unsigned int flags;
701         unsigned int signaled;
702         unsigned int error;
703         unsigned int sequence;
704         unsigned int pad64;
705         uint64_t expand_pad[2]; /*Future expansion */
706 };
707
708 /* Buffer permissions, referring to how the GPU uses the buffers.
709  * these translate to fence types used for the buffers.
710  * Typically a texture buffer is read, A destination buffer is write and
711  *  a command (batch-) buffer is exe. Can be or-ed together.
712  */
713
714 #define DRM_BO_FLAG_READ        (1ULL << 0)
715 #define DRM_BO_FLAG_WRITE       (1ULL << 1)
716 #define DRM_BO_FLAG_EXE         (1ULL << 2)
717
718 /*
719  * All of the bits related to access mode
720  */
721 #define DRM_BO_MASK_ACCESS      (DRM_BO_FLAG_READ | DRM_BO_FLAG_WRITE | DRM_BO_FLAG_EXE)
722 /*
723  * Status flags. Can be read to determine the actual state of a buffer.
724  * Can also be set in the buffer mask before validation.
725  */
726
727 /*
728  * Mask: Never evict this buffer. Not even with force. This type of buffer is only
729  * available to root and must be manually removed before buffer manager shutdown
730  * or lock.
731  * Flags: Acknowledge
732  */
733 #define DRM_BO_FLAG_NO_EVICT    (1ULL << 4)
734
735 /*
736  * Mask: Require that the buffer is placed in mappable memory when validated.
737  *       If not set the buffer may or may not be in mappable memory when validated.
738  * Flags: If set, the buffer is in mappable memory.
739  */
740 #define DRM_BO_FLAG_MAPPABLE    (1ULL << 5)
741
742 /* Mask: The buffer should be shareable with other processes.
743  * Flags: The buffer is shareable with other processes.
744  */
745 #define DRM_BO_FLAG_SHAREABLE   (1ULL << 6)
746
747 /* Mask: If set, place the buffer in cache-coherent memory if available.
748  *       If clear, never place the buffer in cache coherent memory if validated.
749  * Flags: The buffer is currently in cache-coherent memory.
750  */
751 #define DRM_BO_FLAG_CACHED      (1ULL << 7)
752
753 /* Mask: Make sure that every time this buffer is validated,
754  *       it ends up on the same location provided that the memory mask is the same.
755  *       The buffer will also not be evicted when claiming space for
756  *       other buffers. Basically a pinned buffer but it may be thrown out as
757  *       part of buffer manager shutdown or locking.
758  * Flags: Acknowledge.
759  */
760 #define DRM_BO_FLAG_NO_MOVE     (1ULL << 8)
761
762 /* Mask: Make sure the buffer is in cached memory when mapped.  In conjunction
763  * with DRM_BO_FLAG_CACHED it also allows the buffer to be bound into the GART
764  * with unsnooped PTEs instead of snooped, by using chipset-specific cache
765  * flushing at bind time.  A better name might be DRM_BO_FLAG_TT_UNSNOOPED,
766  * as the eviction to local memory (TTM unbind) on map is just a side effect
767  * to prevent aggressive cache prefetch from the GPU disturbing the cache
768  * management that the DRM is doing.
769  *
770  * Flags: Acknowledge.
771  * Buffers allocated with this flag should not be used for suballocators
772  * This type may have issues on CPUs with over-aggressive caching
773  * http://marc.info/?l=linux-kernel&m=102376926732464&w=2
774  */
775 #define DRM_BO_FLAG_CACHED_MAPPED    (1ULL << 19)
776
777
778 /* Mask: Force DRM_BO_FLAG_CACHED flag strictly also if it is set.
779  * Flags: Acknowledge.
780  */
781 #define DRM_BO_FLAG_FORCE_CACHING  (1ULL << 13)
782
783 /*
784  * Mask: Force DRM_BO_FLAG_MAPPABLE flag strictly also if it is clear.
785  * Flags: Acknowledge.
786  */
787 #define DRM_BO_FLAG_FORCE_MAPPABLE (1ULL << 14)
788 #define DRM_BO_FLAG_TILE           (1ULL << 15)
789
790 /*
791  * Memory type flags that can be or'ed together in the mask, but only
792  * one appears in flags.
793  */
794
795 /* System memory */
796 #define DRM_BO_FLAG_MEM_LOCAL  (1ULL << 24)
797 /* Translation table memory */
798 #define DRM_BO_FLAG_MEM_TT     (1ULL << 25)
799 /* Vram memory */
800 #define DRM_BO_FLAG_MEM_VRAM   (1ULL << 26)
801 /* Up to the driver to define. */
802 #define DRM_BO_FLAG_MEM_PRIV0  (1ULL << 27)
803 #define DRM_BO_FLAG_MEM_PRIV1  (1ULL << 28)
804 #define DRM_BO_FLAG_MEM_PRIV2  (1ULL << 29)
805 #define DRM_BO_FLAG_MEM_PRIV3  (1ULL << 30)
806 #define DRM_BO_FLAG_MEM_PRIV4  (1ULL << 31)
807 /* We can add more of these now with a 64-bit flag type */
808
809 /*
810  * This is a mask covering all of the memory type flags; easier to just
811  * use a single constant than a bunch of | values. It covers
812  * DRM_BO_FLAG_MEM_LOCAL through DRM_BO_FLAG_MEM_PRIV4
813  */
814 #define DRM_BO_MASK_MEM         0x00000000FF000000ULL
815 /*
816  * This adds all of the CPU-mapping options in with the memory
817  * type to label all bits which change how the page gets mapped
818  */
819 #define DRM_BO_MASK_MEMTYPE     (DRM_BO_MASK_MEM | \
820                                  DRM_BO_FLAG_CACHED_MAPPED | \
821                                  DRM_BO_FLAG_CACHED | \
822                                  DRM_BO_FLAG_MAPPABLE)
823                                  
824 /* Driver-private flags */
825 #define DRM_BO_MASK_DRIVER      0xFFFF000000000000ULL
826
827 /*
828  * Don't block on validate and map. Instead, return EBUSY.
829  */
830 #define DRM_BO_HINT_DONT_BLOCK  0x00000002
831 /*
832  * Don't place this buffer on the unfenced list. This means
833  * that the buffer will not end up having a fence associated
834  * with it as a result of this operation
835  */
836 #define DRM_BO_HINT_DONT_FENCE  0x00000004
837 /**
838  * On hardware with no interrupt events for operation completion,
839  * indicates that the kernel should sleep while waiting for any blocking
840  * operation to complete rather than spinning.
841  *
842  * Has no effect otherwise.
843  */
844 #define DRM_BO_HINT_WAIT_LAZY   0x00000008
845 /*
846  * The client has compute relocations refering to this buffer using the
847  * offset in the presumed_offset field. If that offset ends up matching
848  * where this buffer lands, the kernel is free to skip executing those
849  * relocations
850  */
851 #define DRM_BO_HINT_PRESUMED_OFFSET 0x00000010
852
853 #define DRM_BO_INIT_MAGIC 0xfe769812
854 #define DRM_BO_INIT_MAJOR 1
855 #define DRM_BO_INIT_MINOR 0
856 #define DRM_BO_INIT_PATCH 0
857
858
859 struct drm_bo_info_req {
860         uint64_t mask;
861         uint64_t flags;
862         unsigned int handle;
863         unsigned int hint;
864         unsigned int fence_class;
865         unsigned int desired_tile_stride;
866         unsigned int tile_info;
867         unsigned int pad64;
868         uint64_t presumed_offset;
869 };
870
871 struct drm_bo_create_req {
872         uint64_t flags;
873         uint64_t size;
874         uint64_t buffer_start;
875         unsigned int hint;
876         unsigned int page_alignment;
877 };
878
879
880 /*
881  * Reply flags
882  */
883
884 #define DRM_BO_REP_BUSY 0x00000001
885
886 struct drm_bo_info_rep {
887         uint64_t flags;
888         uint64_t proposed_flags;
889         uint64_t size;
890         uint64_t offset;
891         uint64_t arg_handle;
892         uint64_t buffer_start;
893         unsigned int handle;
894         unsigned int fence_flags;
895         unsigned int rep_flags;
896         unsigned int page_alignment;
897         unsigned int desired_tile_stride;
898         unsigned int hw_tile_stride;
899         unsigned int tile_info;
900         unsigned int pad64;
901         uint64_t expand_pad[4]; /*Future expansion */
902 };
903
904 struct drm_bo_arg_rep {
905         struct drm_bo_info_rep bo_info;
906         int ret;
907         unsigned int pad64;
908 };
909
910 struct drm_bo_create_arg {
911         union {
912                 struct drm_bo_create_req req;
913                 struct drm_bo_info_rep rep;
914         } d;
915 };
916
917 struct drm_bo_handle_arg {
918         unsigned int handle;
919 };
920
921 struct drm_bo_reference_info_arg {
922         union {
923                 struct drm_bo_handle_arg req;
924                 struct drm_bo_info_rep rep;
925         } d;
926 };
927
928 struct drm_bo_map_wait_idle_arg {
929         union {
930                 struct drm_bo_info_req req;
931                 struct drm_bo_info_rep rep;
932         } d;
933 };
934
935 struct drm_bo_op_req {
936         enum {
937                 drm_bo_validate,
938                 drm_bo_fence,
939                 drm_bo_ref_fence,
940         } op;
941         unsigned int arg_handle;
942         struct drm_bo_info_req bo_req;
943 };
944
945
946 struct drm_bo_op_arg {
947         uint64_t next;
948         union {
949                 struct drm_bo_op_req req;
950                 struct drm_bo_arg_rep rep;
951         } d;
952         int handled;
953         unsigned int pad64;
954 };
955
956
957 #define DRM_BO_MEM_LOCAL 0
958 #define DRM_BO_MEM_TT 1
959 #define DRM_BO_MEM_VRAM 2
960 #define DRM_BO_MEM_PRIV0 3
961 #define DRM_BO_MEM_PRIV1 4
962 #define DRM_BO_MEM_PRIV2 5
963 #define DRM_BO_MEM_PRIV3 6
964 #define DRM_BO_MEM_PRIV4 7
965
966 #define DRM_BO_MEM_TYPES 8 /* For now. */
967
968 #define DRM_BO_LOCK_UNLOCK_BM       (1 << 0)
969 #define DRM_BO_LOCK_IGNORE_NO_EVICT (1 << 1)
970
971 struct drm_bo_version_arg {
972         uint32_t major;
973         uint32_t minor;
974         uint32_t patchlevel;
975 };
976
977 struct drm_mm_type_arg {
978         unsigned int mem_type;
979         unsigned int lock_flags;
980 };
981
982 struct drm_mm_init_arg {
983         unsigned int magic;
984         unsigned int major;
985         unsigned int minor;
986         unsigned int mem_type;
987         uint64_t p_offset;
988         uint64_t p_size;
989 };
990
991 struct drm_mm_info_arg {
992         unsigned int mem_type;
993         uint64_t p_size;
994 };
995
996
997 /*
998  * Drm mode setting
999  */
1000 #define DRM_DISPLAY_INFO_LEN 32
1001 #define DRM_CONNECTOR_NAME_LEN 32
1002 #define DRM_DISPLAY_MODE_LEN 32
1003 #define DRM_PROP_NAME_LEN 32
1004
1005 #define DRM_MODE_TYPE_BUILTIN   (1<<0)
1006 #define DRM_MODE_TYPE_CLOCK_C   ((1<<1) | DRM_MODE_TYPE_BUILTIN)
1007 #define DRM_MODE_TYPE_CRTC_C    ((1<<2) | DRM_MODE_TYPE_BUILTIN)
1008 #define DRM_MODE_TYPE_PREFERRED (1<<3)
1009 #define DRM_MODE_TYPE_DEFAULT   (1<<4)
1010 #define DRM_MODE_TYPE_USERDEF   (1<<5)
1011 #define DRM_MODE_TYPE_DRIVER    (1<<6)
1012
1013 /* Video mode flags */
1014 #define V_PHSYNC        (1<<0)
1015 #define V_NHSYNC        (1<<1)
1016 #define V_PVSYNC        (1<<2)
1017 #define V_NVSYNC        (1<<3)
1018 #define V_INTERLACE     (1<<4)
1019 #define V_DBLSCAN       (1<<5)
1020 #define V_CSYNC         (1<<6)
1021 #define V_PCSYNC        (1<<7)
1022 #define V_NCSYNC        (1<<8)
1023 #define V_HSKEW         (1<<9) /* hskew provided */
1024 #define V_BCAST         (1<<10)
1025 #define V_PIXMUX        (1<<11)
1026 #define V_DBLCLK        (1<<12)
1027 #define V_CLKDIV2       (1<<13)
1028
1029 /* DPMS flags */
1030 #define DPMSModeOn 0
1031 #define DPMSModeStandby 1
1032 #define DPMSModeSuspend 2
1033 #define DPMSModeOff 3
1034
1035 struct drm_mode_modeinfo {
1036         unsigned int clock;
1037         unsigned short hdisplay, hsync_start, hsync_end, htotal, hskew;
1038         unsigned short vdisplay, vsync_start, vsync_end, vtotal, vscan;
1039
1040         unsigned int vrefresh; /* vertical refresh * 1000 */
1041
1042         unsigned int flags;
1043         unsigned int type;
1044         char name[DRM_DISPLAY_MODE_LEN];
1045 };
1046
1047 struct drm_mode_card_res {
1048         uint64_t fb_id_ptr;
1049         uint64_t crtc_id_ptr;
1050         uint64_t connector_id_ptr;
1051         uint64_t encoder_id_ptr;
1052         int count_fbs;
1053         int count_crtcs;
1054         int count_connectors;
1055         int count_encoders;
1056         int min_width, max_width;
1057         int min_height, max_height;
1058 };
1059
1060 struct drm_mode_crtc {
1061         uint64_t set_connectors_ptr;
1062
1063         unsigned int crtc_id; /**< Id */
1064         unsigned int fb_id; /**< Id of framebuffer */
1065
1066         int x, y; /**< Position on the frameuffer */
1067
1068         int count_connectors;
1069         unsigned int connectors; /**< Connectors that are connected */
1070
1071         int count_possibles;
1072         unsigned int possibles; /**< Connectors that can be connected */
1073         uint32_t gamma_size;
1074         int mode_valid;
1075         struct drm_mode_modeinfo mode;
1076 };
1077
1078 #define DRM_MODE_ENCODER_NONE 0
1079 #define DRM_MODE_ENCODER_DAC  1
1080 #define DRM_MODE_ENCODER_TMDS 2
1081 #define DRM_MODE_ENCODER_LVDS 3
1082 #define DRM_MODE_ENCODER_TVDAC 4
1083
1084 struct drm_mode_get_encoder {
1085
1086         uint32_t encoder_type;
1087         uint32_t encoder_id;
1088
1089         unsigned int crtc; /**< Id of crtc */
1090         uint32_t crtcs;
1091         uint32_t clones;
1092 };
1093
1094 /* This is for connectors with multiple signal types. */
1095 /* Try to match DRM_MODE_CONNECTOR_X as closely as possible. */
1096 #define DRM_MODE_SUBCONNECTOR_Automatic 0
1097 #define DRM_MODE_SUBCONNECTOR_Unknown 0
1098 #define DRM_MODE_SUBCONNECTOR_DVID 3
1099 #define DRM_MODE_SUBCONNECTOR_DVIA 4
1100 #define DRM_MODE_SUBCONNECTOR_Composite 5
1101 #define DRM_MODE_SUBCONNECTOR_SVIDEO 6
1102 #define DRM_MODE_SUBCONNECTOR_Component 8
1103
1104 #define DRM_MODE_CONNECTOR_Unknown 0
1105 #define DRM_MODE_CONNECTOR_VGA 1
1106 #define DRM_MODE_CONNECTOR_DVII 2
1107 #define DRM_MODE_CONNECTOR_DVID 3
1108 #define DRM_MODE_CONNECTOR_DVIA 4
1109 #define DRM_MODE_CONNECTOR_Composite 5
1110 #define DRM_MODE_CONNECTOR_SVIDEO 6
1111 #define DRM_MODE_CONNECTOR_LVDS 7
1112 #define DRM_MODE_CONNECTOR_Component 8
1113 #define DRM_MODE_CONNECTOR_9PinDIN 9
1114 #define DRM_MODE_CONNECTOR_DisplayPort 10
1115 #define DRM_MODE_CONNECTOR_HDMIA 11
1116 #define DRM_MODE_CONNECTOR_HDMIB 12
1117
1118 struct drm_mode_get_connector {
1119
1120         uint64_t encoders_ptr;
1121         uint64_t modes_ptr;
1122         uint64_t props_ptr;
1123         uint64_t prop_values_ptr;
1124
1125         int count_modes;
1126         int count_props;
1127         int count_encoders;
1128
1129         unsigned int encoder; /**< Current Encoder */
1130         unsigned int connector; /**< Id */
1131         unsigned int connector_type;
1132         unsigned int connector_type_id;
1133
1134         unsigned int connection;
1135         unsigned int mm_width, mm_height; /**< HxW in millimeters */
1136         unsigned int subpixel;
1137 };
1138
1139 #define DRM_MODE_PROP_PENDING (1<<0)
1140 #define DRM_MODE_PROP_RANGE (1<<1)
1141 #define DRM_MODE_PROP_IMMUTABLE (1<<2)
1142 #define DRM_MODE_PROP_ENUM (1<<3) // enumerated type with text strings
1143 #define DRM_MODE_PROP_BLOB (1<<4)
1144
1145 struct drm_mode_property_enum {
1146         uint64_t value;
1147         unsigned char name[DRM_PROP_NAME_LEN];
1148 };
1149
1150 struct drm_mode_get_property {
1151         uint64_t values_ptr; /* values and blob lengths */
1152         uint64_t enum_blob_ptr; /* enum and blob id ptrs */
1153
1154         unsigned int prop_id;
1155         unsigned int flags;
1156         unsigned char name[DRM_PROP_NAME_LEN];
1157
1158         int count_values;
1159         int count_enum_blobs;
1160 };
1161
1162 struct drm_mode_connector_set_property {
1163         uint64_t value;
1164         unsigned int prop_id;
1165         unsigned int connector_id;
1166 };
1167
1168 struct drm_mode_get_blob {
1169         uint32_t blob_id;
1170         uint32_t length;
1171         uint64_t data;
1172 };
1173
1174 struct drm_mode_fb_cmd {
1175         unsigned int buffer_id;
1176         unsigned int width, height;
1177         unsigned int pitch;
1178         unsigned int bpp;
1179         unsigned int handle;
1180         unsigned int depth;
1181 };
1182
1183 struct drm_mode_mode_cmd {
1184         unsigned int connector_id;
1185         struct drm_mode_modeinfo mode;
1186 };
1187
1188 #define DRM_MODE_CURSOR_BO   0x01
1189 #define DRM_MODE_CURSOR_MOVE 0x02
1190
1191 /*
1192  * depending on the value in flags diffrent members are used.
1193  *
1194  * CURSOR_BO uses
1195  *    crtc
1196  *    width
1197  *    height
1198  *    handle - if 0 turns the cursor of
1199  *
1200  * CURSOR_MOVE uses
1201  *    crtc
1202  *    x
1203  *    y
1204  */
1205 struct drm_mode_cursor {
1206         unsigned int flags;
1207         unsigned int crtc;
1208         int x;
1209         int y;
1210         uint32_t width;
1211         uint32_t height;
1212         unsigned int handle;
1213 };
1214
1215 /*
1216  * oh so ugly hotplug
1217  */
1218 struct drm_mode_hotplug {
1219         uint32_t counter;
1220 };
1221
1222 struct drm_mode_crtc_lut {
1223
1224         uint32_t crtc_id;
1225         uint32_t gamma_size;
1226
1227         uint64_t red;
1228         uint64_t green;
1229         uint64_t blue;
1230 };
1231
1232 /**
1233  * \name Ioctls Definitions
1234  */
1235 /*@{*/
1236
1237 #define DRM_IOCTL_BASE                  'd'
1238 #define DRM_IO(nr)                      _IO(DRM_IOCTL_BASE,nr)
1239 #define DRM_IOR(nr,type)                _IOR(DRM_IOCTL_BASE,nr,type)
1240 #define DRM_IOW(nr,type)                _IOW(DRM_IOCTL_BASE,nr,type)
1241 #define DRM_IOWR(nr,type)               _IOWR(DRM_IOCTL_BASE,nr,type)
1242
1243 #define DRM_IOCTL_VERSION               DRM_IOWR(0x00, struct drm_version)
1244 #define DRM_IOCTL_GET_UNIQUE            DRM_IOWR(0x01, struct drm_unique)
1245 #define DRM_IOCTL_GET_MAGIC             DRM_IOR( 0x02, struct drm_auth)
1246 #define DRM_IOCTL_IRQ_BUSID             DRM_IOWR(0x03, struct drm_irq_busid)
1247 #define DRM_IOCTL_GET_MAP               DRM_IOWR(0x04, struct drm_map)
1248 #define DRM_IOCTL_GET_CLIENT            DRM_IOWR(0x05, struct drm_client)
1249 #define DRM_IOCTL_GET_STATS             DRM_IOR( 0x06, struct drm_stats)
1250 #define DRM_IOCTL_SET_VERSION           DRM_IOWR(0x07, struct drm_set_version)
1251 #define DRM_IOCTL_MODESET_CTL           DRM_IOW(0x08, struct drm_modeset_ctl)
1252
1253 #define DRM_IOCTL_SET_UNIQUE            DRM_IOW( 0x10, struct drm_unique)
1254 #define DRM_IOCTL_AUTH_MAGIC            DRM_IOW( 0x11, struct drm_auth)
1255 #define DRM_IOCTL_BLOCK                 DRM_IOWR(0x12, struct drm_block)
1256 #define DRM_IOCTL_UNBLOCK               DRM_IOWR(0x13, struct drm_block)
1257 #define DRM_IOCTL_CONTROL               DRM_IOW( 0x14, struct drm_control)
1258 #define DRM_IOCTL_ADD_MAP               DRM_IOWR(0x15, struct drm_map)
1259 #define DRM_IOCTL_ADD_BUFS              DRM_IOWR(0x16, struct drm_buf_desc)
1260 #define DRM_IOCTL_MARK_BUFS             DRM_IOW( 0x17, struct drm_buf_desc)
1261 #define DRM_IOCTL_INFO_BUFS             DRM_IOWR(0x18, struct drm_buf_info)
1262 #define DRM_IOCTL_MAP_BUFS              DRM_IOWR(0x19, struct drm_buf_map)
1263 #define DRM_IOCTL_FREE_BUFS             DRM_IOW( 0x1a, struct drm_buf_free)
1264
1265 #define DRM_IOCTL_RM_MAP                DRM_IOW( 0x1b, struct drm_map)
1266
1267 #define DRM_IOCTL_SET_SAREA_CTX         DRM_IOW( 0x1c, struct drm_ctx_priv_map)
1268 #define DRM_IOCTL_GET_SAREA_CTX         DRM_IOWR(0x1d, struct drm_ctx_priv_map)
1269
1270 #define DRM_IOCTL_SET_MASTER            DRM_IO(0x1e)
1271 #define DRM_IOCTL_DROP_MASTER           DRM_IO(0x1f)
1272
1273 #define DRM_IOCTL_ADD_CTX               DRM_IOWR(0x20, struct drm_ctx)
1274 #define DRM_IOCTL_RM_CTX                DRM_IOWR(0x21, struct drm_ctx)
1275 #define DRM_IOCTL_MOD_CTX               DRM_IOW( 0x22, struct drm_ctx)
1276 #define DRM_IOCTL_GET_CTX               DRM_IOWR(0x23, struct drm_ctx)
1277 #define DRM_IOCTL_SWITCH_CTX            DRM_IOW( 0x24, struct drm_ctx)
1278 #define DRM_IOCTL_NEW_CTX               DRM_IOW( 0x25, struct drm_ctx)
1279 #define DRM_IOCTL_RES_CTX               DRM_IOWR(0x26, struct drm_ctx_res)
1280 #define DRM_IOCTL_ADD_DRAW              DRM_IOWR(0x27, struct drm_draw)
1281 #define DRM_IOCTL_RM_DRAW               DRM_IOWR(0x28, struct drm_draw)
1282 #define DRM_IOCTL_DMA                   DRM_IOWR(0x29, struct drm_dma)
1283 #define DRM_IOCTL_LOCK                  DRM_IOW( 0x2a, struct drm_lock)
1284 #define DRM_IOCTL_UNLOCK                DRM_IOW( 0x2b, struct drm_lock)
1285 #define DRM_IOCTL_FINISH                DRM_IOW( 0x2c, struct drm_lock)
1286
1287 #define DRM_IOCTL_AGP_ACQUIRE           DRM_IO(  0x30)
1288 #define DRM_IOCTL_AGP_RELEASE           DRM_IO(  0x31)
1289 #define DRM_IOCTL_AGP_ENABLE            DRM_IOW( 0x32, struct drm_agp_mode)
1290 #define DRM_IOCTL_AGP_INFO              DRM_IOR( 0x33, struct drm_agp_info)
1291 #define DRM_IOCTL_AGP_ALLOC             DRM_IOWR(0x34, struct drm_agp_buffer)
1292 #define DRM_IOCTL_AGP_FREE              DRM_IOW( 0x35, struct drm_agp_buffer)
1293 #define DRM_IOCTL_AGP_BIND              DRM_IOW( 0x36, struct drm_agp_binding)
1294 #define DRM_IOCTL_AGP_UNBIND            DRM_IOW( 0x37, struct drm_agp_binding)
1295
1296 #define DRM_IOCTL_SG_ALLOC              DRM_IOW( 0x38, struct drm_scatter_gather)
1297 #define DRM_IOCTL_SG_FREE               DRM_IOW( 0x39, struct drm_scatter_gather)
1298
1299 #define DRM_IOCTL_WAIT_VBLANK           DRM_IOWR(0x3a, union drm_wait_vblank)
1300
1301 #define DRM_IOCTL_UPDATE_DRAW           DRM_IOW(0x3f, struct drm_update_draw)
1302
1303 #define DRM_IOCTL_MM_INIT               DRM_IOWR(0xc0, struct drm_mm_init_arg)
1304 #define DRM_IOCTL_MM_TAKEDOWN           DRM_IOWR(0xc1, struct drm_mm_type_arg)
1305 #define DRM_IOCTL_MM_LOCK               DRM_IOWR(0xc2, struct drm_mm_type_arg)
1306 #define DRM_IOCTL_MM_UNLOCK             DRM_IOWR(0xc3, struct drm_mm_type_arg)
1307
1308 #define DRM_IOCTL_FENCE_CREATE          DRM_IOWR(0xc4, struct drm_fence_arg)
1309 #define DRM_IOCTL_FENCE_REFERENCE       DRM_IOWR(0xc6, struct drm_fence_arg)
1310 #define DRM_IOCTL_FENCE_UNREFERENCE     DRM_IOWR(0xc7, struct drm_fence_arg)
1311 #define DRM_IOCTL_FENCE_SIGNALED        DRM_IOWR(0xc8, struct drm_fence_arg)
1312 #define DRM_IOCTL_FENCE_FLUSH           DRM_IOWR(0xc9, struct drm_fence_arg)
1313 #define DRM_IOCTL_FENCE_WAIT            DRM_IOWR(0xca, struct drm_fence_arg)
1314 #define DRM_IOCTL_FENCE_EMIT            DRM_IOWR(0xcb, struct drm_fence_arg)
1315 #define DRM_IOCTL_FENCE_BUFFERS         DRM_IOWR(0xcc, struct drm_fence_arg)
1316
1317 #define DRM_IOCTL_BO_CREATE             DRM_IOWR(0xcd, struct drm_bo_create_arg)
1318 #define DRM_IOCTL_BO_MAP                DRM_IOWR(0xcf, struct drm_bo_map_wait_idle_arg)
1319 #define DRM_IOCTL_BO_UNMAP              DRM_IOWR(0xd0, struct drm_bo_handle_arg)
1320 #define DRM_IOCTL_BO_REFERENCE          DRM_IOWR(0xd1, struct drm_bo_reference_info_arg)
1321 #define DRM_IOCTL_BO_UNREFERENCE        DRM_IOWR(0xd2, struct drm_bo_handle_arg)
1322 #define DRM_IOCTL_BO_SETSTATUS          DRM_IOWR(0xd3, struct drm_bo_map_wait_idle_arg)
1323 #define DRM_IOCTL_BO_INFO               DRM_IOWR(0xd4, struct drm_bo_reference_info_arg)
1324 #define DRM_IOCTL_BO_WAIT_IDLE          DRM_IOWR(0xd5, struct drm_bo_map_wait_idle_arg)
1325 #define DRM_IOCTL_BO_VERSION          DRM_IOR(0xd6, struct drm_bo_version_arg)
1326 #define DRM_IOCTL_MM_INFO               DRM_IOWR(0xd7, struct drm_mm_info_arg)
1327
1328 #define DRM_IOCTL_MODE_GETRESOURCES     DRM_IOWR(0xA0, struct drm_mode_card_res)
1329 #define DRM_IOCTL_MODE_GETCRTC          DRM_IOWR(0xA1, struct drm_mode_crtc)
1330 #define DRM_IOCTL_MODE_GETCONNECTOR        DRM_IOWR(0xA2, struct drm_mode_get_connector)
1331 #define DRM_IOCTL_MODE_SETCRTC          DRM_IOWR(0xA3, struct drm_mode_crtc)
1332 #define DRM_IOCTL_MODE_ADDFB            DRM_IOWR(0xA4, struct drm_mode_fb_cmd)
1333 #define DRM_IOCTL_MODE_RMFB             DRM_IOWR(0xA5, unsigned int)
1334 #define DRM_IOCTL_MODE_GETFB            DRM_IOWR(0xA6, struct drm_mode_fb_cmd)
1335
1336 #define DRM_IOCTL_MODE_SETPROPERTY     DRM_IOWR(0xA7, struct drm_mode_connector_set_property)
1337 #define DRM_IOCTL_MODE_GETPROPBLOB     DRM_IOWR(0xA8, struct drm_mode_get_blob)
1338 #define DRM_IOCTL_MODE_ATTACHMODE      DRM_IOWR(0xA9, struct drm_mode_mode_cmd)
1339 #define DRM_IOCTL_MODE_DETACHMODE      DRM_IOWR(0xAA, struct drm_mode_mode_cmd)
1340
1341 #define DRM_IOCTL_MODE_GETPROPERTY     DRM_IOWR(0xAB, struct drm_mode_get_property)
1342 #define DRM_IOCTL_MODE_CURSOR          DRM_IOWR(0xAC, struct drm_mode_cursor)
1343 #define DRM_IOCTL_MODE_HOTPLUG         DRM_IOWR(0xAD, struct drm_mode_hotplug)
1344 #define DRM_IOCTL_WAIT_HOTPLUG          DRM_IOWR(0xAE, union drm_wait_hotplug)
1345
1346 #define DRM_IOCTL_MODE_REPLACEFB       DRM_IOWR(0xAF, struct drm_mode_fb_cmd)
1347 #define DRM_IOCTL_MODE_GETENCODER      DRM_IOWR(0xB0, struct drm_mode_get_encoder)
1348 #define DRM_IOCTL_MODE_GETGAMMA        DRM_IOWR(0xB1, struct drm_mode_crtc_lut)
1349 #define DRM_IOCTL_MODE_SETGAMMA        DRM_IOWR(0xB2, struct drm_mode_crtc_lut)
1350
1351 /*@}*/
1352
1353 /**
1354  * Device specific ioctls should only be in their respective headers
1355  * The device specific ioctl range is from 0x40 to 0x99.
1356  * Generic IOCTLS restart at 0xA0.
1357  *
1358  * \sa drmCommandNone(), drmCommandRead(), drmCommandWrite(), and
1359  * drmCommandReadWrite().
1360  */
1361 #define DRM_COMMAND_BASE                0x40
1362 #define DRM_COMMAND_END                 0xA0
1363
1364 /* typedef area */
1365 #if !defined(__KERNEL__) || defined(__FreeBSD__) || defined(__OpenBSD__) || defined(__NetBSD__)
1366 typedef struct drm_clip_rect drm_clip_rect_t;
1367 typedef struct drm_tex_region drm_tex_region_t;
1368 typedef struct drm_hw_lock drm_hw_lock_t;
1369 typedef struct drm_version drm_version_t;
1370 typedef struct drm_unique drm_unique_t;
1371 typedef struct drm_list drm_list_t;
1372 typedef struct drm_block drm_block_t;
1373 typedef struct drm_control drm_control_t;
1374 typedef enum drm_map_type drm_map_type_t;
1375 typedef enum drm_map_flags drm_map_flags_t;
1376 typedef struct drm_ctx_priv_map drm_ctx_priv_map_t;
1377 typedef struct drm_map drm_map_t;
1378 typedef struct drm_client drm_client_t;
1379 typedef enum drm_stat_type drm_stat_type_t;
1380 typedef struct drm_stats drm_stats_t;
1381 typedef enum drm_lock_flags drm_lock_flags_t;
1382 typedef struct drm_lock drm_lock_t;
1383 typedef enum drm_dma_flags drm_dma_flags_t;
1384 typedef struct drm_buf_desc drm_buf_desc_t;
1385 typedef struct drm_buf_info drm_buf_info_t;
1386 typedef struct drm_buf_free drm_buf_free_t;
1387 typedef struct drm_buf_pub drm_buf_pub_t;
1388 typedef struct drm_buf_map drm_buf_map_t;
1389 typedef struct drm_dma drm_dma_t;
1390 typedef union drm_wait_vblank drm_wait_vblank_t;
1391 typedef struct drm_agp_mode drm_agp_mode_t;
1392 typedef enum drm_ctx_flags drm_ctx_flags_t;
1393 typedef struct drm_ctx drm_ctx_t;
1394 typedef struct drm_ctx_res drm_ctx_res_t;
1395 typedef struct drm_draw drm_draw_t;
1396 typedef struct drm_update_draw drm_update_draw_t;
1397 typedef struct drm_auth drm_auth_t;
1398 typedef struct drm_irq_busid drm_irq_busid_t;
1399 typedef enum drm_vblank_seq_type drm_vblank_seq_type_t;
1400 typedef struct drm_agp_buffer drm_agp_buffer_t;
1401 typedef struct drm_agp_binding drm_agp_binding_t;
1402 typedef struct drm_agp_info drm_agp_info_t;
1403 typedef struct drm_scatter_gather drm_scatter_gather_t;
1404 typedef struct drm_set_version drm_set_version_t;
1405
1406 typedef struct drm_fence_arg drm_fence_arg_t;
1407 typedef struct drm_mm_type_arg drm_mm_type_arg_t;
1408 typedef struct drm_mm_init_arg drm_mm_init_arg_t;
1409 typedef enum drm_bo_type drm_bo_type_t;
1410 #endif
1411
1412 #endif