VirtualBox

source: vbox/trunk/src/VBox/Additions/x11/x11include/libdrm-2.4.5/xf86drm.h@ 17232

Last change on this file since 17232 was 17232, checked in by vboxsync, 16 years ago

Additions/x11/x11include: added header files needed for DRI support in vboxvideo

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 25.8 KB
Line 
1/**
2 * \file xf86drm.h
3 * OS-independent header for DRM user-level library interface.
4 *
5 * \author Rickard E. (Rik) Faith <faith@valinux.com>
6 */
7
8/*
9 * Copyright 1999, 2000 Precision Insight, Inc., Cedar Park, Texas.
10 * Copyright 2000 VA Linux Systems, Inc., Sunnyvale, California.
11 * All Rights Reserved.
12 *
13 * Permission is hereby granted, free of charge, to any person obtaining a
14 * copy of this software and associated documentation files (the "Software"),
15 * to deal in the Software without restriction, including without limitation
16 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
17 * and/or sell copies of the Software, and to permit persons to whom the
18 * Software is furnished to do so, subject to the following conditions:
19 *
20 * The above copyright notice and this permission notice (including the next
21 * paragraph) shall be included in all copies or substantial portions of the
22 * Software.
23 *
24 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
25 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
26 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
27 * PRECISION INSIGHT AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
28 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
29 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
30 * DEALINGS IN THE SOFTWARE.
31 *
32 */
33
34#ifndef _XF86DRM_H_
35#define _XF86DRM_H_
36
37#include <stdarg.h>
38#include <sys/types.h>
39#include <stdint.h>
40#include <drm.h>
41
42 /* Defaults, if nothing set in xf86config */
43#define DRM_DEV_UID 0
44#define DRM_DEV_GID 0
45/* Default /dev/dri directory permissions 0755 */
46#define DRM_DEV_DIRMODE \
47 (S_IRUSR|S_IWUSR|S_IXUSR|S_IRGRP|S_IXGRP|S_IROTH|S_IXOTH)
48#define DRM_DEV_MODE (S_IRUSR|S_IWUSR|S_IRGRP|S_IWGRP)
49
50#define DRM_DIR_NAME "/dev/dri"
51#define DRM_DEV_NAME "%s/card%d"
52#define DRM_CONTROL_DEV_NAME "%s/controlD%d"
53#define DRM_PROC_NAME "/proc/dri/" /* For backward Linux compatibility */
54
55#define DRM_ERR_NO_DEVICE (-1001)
56#define DRM_ERR_NO_ACCESS (-1002)
57#define DRM_ERR_NOT_ROOT (-1003)
58#define DRM_ERR_INVALID (-1004)
59#define DRM_ERR_NO_FD (-1005)
60
61#define DRM_AGP_NO_HANDLE 0
62
63typedef unsigned int drmSize, *drmSizePtr; /**< For mapped regions */
64typedef void *drmAddress, **drmAddressPtr; /**< For mapped regions */
65
66typedef struct _drmServerInfo {
67 int (*debug_print)(const char *format, va_list ap);
68 int (*load_module)(const char *name);
69 void (*get_perms)(gid_t *, mode_t *);
70} drmServerInfo, *drmServerInfoPtr;
71
72typedef struct drmHashEntry {
73 int fd;
74 void (*f)(int, void *, void *);
75 void *tagTable;
76} drmHashEntry;
77
78extern int drmIoctl(int fd, unsigned long request, void *arg);
79extern void *drmGetHashTable(void);
80extern drmHashEntry *drmGetEntry(int fd);
81
82/**
83 * Driver version information.
84 *
85 * \sa drmGetVersion() and drmSetVersion().
86 */
87typedef struct _drmVersion {
88 int version_major; /**< Major version */
89 int version_minor; /**< Minor version */
90 int version_patchlevel; /**< Patch level */
91 int name_len; /**< Length of name buffer */
92 char *name; /**< Name of driver */
93 int date_len; /**< Length of date buffer */
94 char *date; /**< User-space buffer to hold date */
95 int desc_len; /**< Length of desc buffer */
96 char *desc; /**< User-space buffer to hold desc */
97} drmVersion, *drmVersionPtr;
98
99typedef struct _drmStats {
100 unsigned long count; /**< Number of data */
101 struct {
102 unsigned long value; /**< Value from kernel */
103 const char *long_format; /**< Suggested format for long_name */
104 const char *long_name; /**< Long name for value */
105 const char *rate_format; /**< Suggested format for rate_name */
106 const char *rate_name; /**< Short name for value per second */
107 int isvalue; /**< True if value (vs. counter) */
108 const char *mult_names; /**< Multiplier names (e.g., "KGM") */
109 int mult; /**< Multiplier value (e.g., 1024) */
110 int verbose; /**< Suggest only in verbose output */
111 } data[15];
112} drmStatsT;
113
114
115 /* All of these enums *MUST* match with the
116 kernel implementation -- so do *NOT*
117 change them! (The drmlib implementation
118 will just copy the flags instead of
119 translating them.) */
120typedef enum {
121 DRM_FRAME_BUFFER = 0, /**< WC, no caching, no core dump */
122 DRM_REGISTERS = 1, /**< no caching, no core dump */
123 DRM_SHM = 2, /**< shared, cached */
124 DRM_AGP = 3, /**< AGP/GART */
125 DRM_SCATTER_GATHER = 4, /**< PCI scatter/gather */
126 DRM_CONSISTENT = 5 /**< PCI consistent */
127} drmMapType;
128
129typedef enum {
130 DRM_RESTRICTED = 0x0001, /**< Cannot be mapped to client-virtual */
131 DRM_READ_ONLY = 0x0002, /**< Read-only in client-virtual */
132 DRM_LOCKED = 0x0004, /**< Physical pages locked */
133 DRM_KERNEL = 0x0008, /**< Kernel requires access */
134 DRM_WRITE_COMBINING = 0x0010, /**< Use write-combining, if available */
135 DRM_CONTAINS_LOCK = 0x0020, /**< SHM page that contains lock */
136 DRM_REMOVABLE = 0x0040 /**< Removable mapping */
137} drmMapFlags;
138
139/**
140 * \warning These values *MUST* match drm.h
141 */
142typedef enum {
143 /** \name Flags for DMA buffer dispatch */
144 /*@{*/
145 DRM_DMA_BLOCK = 0x01, /**<
146 * Block until buffer dispatched.
147 *
148 * \note the buffer may not yet have been
149 * processed by the hardware -- getting a
150 * hardware lock with the hardware quiescent
151 * will ensure that the buffer has been
152 * processed.
153 */
154 DRM_DMA_WHILE_LOCKED = 0x02, /**< Dispatch while lock held */
155 DRM_DMA_PRIORITY = 0x04, /**< High priority dispatch */
156 /*@}*/
157
158 /** \name Flags for DMA buffer request */
159 /*@{*/
160 DRM_DMA_WAIT = 0x10, /**< Wait for free buffers */
161 DRM_DMA_SMALLER_OK = 0x20, /**< Smaller-than-requested buffers OK */
162 DRM_DMA_LARGER_OK = 0x40 /**< Larger-than-requested buffers OK */
163 /*@}*/
164} drmDMAFlags;
165
166typedef enum {
167 DRM_PAGE_ALIGN = 0x01,
168 DRM_AGP_BUFFER = 0x02,
169 DRM_SG_BUFFER = 0x04,
170 DRM_FB_BUFFER = 0x08,
171 DRM_PCI_BUFFER_RO = 0x10
172} drmBufDescFlags;
173
174typedef enum {
175 DRM_LOCK_READY = 0x01, /**< Wait until hardware is ready for DMA */
176 DRM_LOCK_QUIESCENT = 0x02, /**< Wait until hardware quiescent */
177 DRM_LOCK_FLUSH = 0x04, /**< Flush this context's DMA queue first */
178 DRM_LOCK_FLUSH_ALL = 0x08, /**< Flush all DMA queues first */
179 /* These *HALT* flags aren't supported yet
180 -- they will be used to support the
181 full-screen DGA-like mode. */
182 DRM_HALT_ALL_QUEUES = 0x10, /**< Halt all current and future queues */
183 DRM_HALT_CUR_QUEUES = 0x20 /**< Halt all current queues */
184} drmLockFlags;
185
186typedef enum {
187 DRM_CONTEXT_PRESERVED = 0x01, /**< This context is preserved and
188 never swapped. */
189 DRM_CONTEXT_2DONLY = 0x02 /**< This context is for 2D rendering only. */
190} drm_context_tFlags, *drm_context_tFlagsPtr;
191
192typedef struct _drmBufDesc {
193 int count; /**< Number of buffers of this size */
194 int size; /**< Size in bytes */
195 int low_mark; /**< Low water mark */
196 int high_mark; /**< High water mark */
197} drmBufDesc, *drmBufDescPtr;
198
199typedef struct _drmBufInfo {
200 int count; /**< Number of buffers described in list */
201 drmBufDescPtr list; /**< List of buffer descriptions */
202} drmBufInfo, *drmBufInfoPtr;
203
204typedef struct _drmBuf {
205 int idx; /**< Index into the master buffer list */
206 int total; /**< Buffer size */
207 int used; /**< Amount of buffer in use (for DMA) */
208 drmAddress address; /**< Address */
209} drmBuf, *drmBufPtr;
210
211/**
212 * Buffer mapping information.
213 *
214 * Used by drmMapBufs() and drmUnmapBufs() to store information about the
215 * mapped buffers.
216 */
217typedef struct _drmBufMap {
218 int count; /**< Number of buffers mapped */
219 drmBufPtr list; /**< Buffers */
220} drmBufMap, *drmBufMapPtr;
221
222typedef struct _drmLock {
223 volatile unsigned int lock;
224 char padding[60];
225 /* This is big enough for most current (and future?) architectures:
226 DEC Alpha: 32 bytes
227 Intel Merced: ?
228 Intel P5/PPro/PII/PIII: 32 bytes
229 Intel StrongARM: 32 bytes
230 Intel i386/i486: 16 bytes
231 MIPS: 32 bytes (?)
232 Motorola 68k: 16 bytes
233 Motorola PowerPC: 32 bytes
234 Sun SPARC: 32 bytes
235 */
236} drmLock, *drmLockPtr;
237
238/**
239 * Indices here refer to the offset into
240 * list in drmBufInfo
241 */
242typedef struct _drmDMAReq {
243 drm_context_t context; /**< Context handle */
244 int send_count; /**< Number of buffers to send */
245 int *send_list; /**< List of handles to buffers */
246 int *send_sizes; /**< Lengths of data to send, in bytes */
247 drmDMAFlags flags; /**< Flags */
248 int request_count; /**< Number of buffers requested */
249 int request_size; /**< Desired size of buffers requested */
250 int *request_list; /**< Buffer information */
251 int *request_sizes; /**< Minimum acceptable sizes */
252 int granted_count; /**< Number of buffers granted at this size */
253} drmDMAReq, *drmDMAReqPtr;
254
255typedef struct _drmRegion {
256 drm_handle_t handle;
257 unsigned int offset;
258 drmSize size;
259 drmAddress map;
260} drmRegion, *drmRegionPtr;
261
262typedef struct _drmTextureRegion {
263 unsigned char next;
264 unsigned char prev;
265 unsigned char in_use;
266 unsigned char padding; /**< Explicitly pad this out */
267 unsigned int age;
268} drmTextureRegion, *drmTextureRegionPtr;
269
270
271typedef enum {
272 DRM_VBLANK_ABSOLUTE = 0x0, /**< Wait for specific vblank sequence number */
273 DRM_VBLANK_RELATIVE = 0x1, /**< Wait for given number of vblanks */
274 DRM_VBLANK_FLIP = 0x8000000, /**< Scheduled buffer swap should flip */
275 DRM_VBLANK_NEXTONMISS = 0x10000000, /**< If missed, wait for next vblank */
276 DRM_VBLANK_SECONDARY = 0x20000000, /**< Secondary display controller */
277 DRM_VBLANK_SIGNAL = 0x40000000 /* Send signal instead of blocking */
278} drmVBlankSeqType;
279
280typedef struct _drmVBlankReq {
281 drmVBlankSeqType type;
282 unsigned int sequence;
283 unsigned long signal;
284} drmVBlankReq, *drmVBlankReqPtr;
285
286typedef struct _drmVBlankReply {
287 drmVBlankSeqType type;
288 unsigned int sequence;
289 long tval_sec;
290 long tval_usec;
291} drmVBlankReply, *drmVBlankReplyPtr;
292
293typedef union _drmVBlank {
294 drmVBlankReq request;
295 drmVBlankReply reply;
296} drmVBlank, *drmVBlankPtr;
297
298typedef struct _drmSetVersion {
299 int drm_di_major;
300 int drm_di_minor;
301 int drm_dd_major;
302 int drm_dd_minor;
303} drmSetVersion, *drmSetVersionPtr;
304
305#define __drm_dummy_lock(lock) (*(__volatile__ unsigned int *)lock)
306
307#define DRM_LOCK_HELD 0x80000000U /**< Hardware lock is held */
308#define DRM_LOCK_CONT 0x40000000U /**< Hardware lock is contended */
309
310#if defined(__GNUC__) && (__GNUC__ >= 2)
311# if defined(__i386) || defined(__AMD64__) || defined(__x86_64__) || defined(__amd64__)
312 /* Reflect changes here to drmP.h */
313#define DRM_CAS(lock,old,new,__ret) \
314 do { \
315 int __dummy; /* Can't mark eax as clobbered */ \
316 __asm__ __volatile__( \
317 "lock ; cmpxchg %4,%1\n\t" \
318 "setnz %0" \
319 : "=d" (__ret), \
320 "=m" (__drm_dummy_lock(lock)), \
321 "=a" (__dummy) \
322 : "2" (old), \
323 "r" (new)); \
324 } while (0)
325
326#elif defined(__alpha__)
327
328#define DRM_CAS(lock, old, new, ret) \
329 do { \
330 int tmp, old32; \
331 __asm__ __volatile__( \
332 " addl $31, %5, %3\n" \
333 "1: ldl_l %0, %2\n" \
334 " cmpeq %0, %3, %1\n" \
335 " beq %1, 2f\n" \
336 " mov %4, %0\n" \
337 " stl_c %0, %2\n" \
338 " beq %0, 3f\n" \
339 " mb\n" \
340 "2: cmpeq %1, 0, %1\n" \
341 ".subsection 2\n" \
342 "3: br 1b\n" \
343 ".previous" \
344 : "=&r"(tmp), "=&r"(ret), \
345 "=m"(__drm_dummy_lock(lock)), \
346 "=&r"(old32) \
347 : "r"(new), "r"(old) \
348 : "memory"); \
349 } while (0)
350
351#elif defined(__sparc__)
352
353#define DRM_CAS(lock,old,new,__ret) \
354do { register unsigned int __old __asm("o0"); \
355 register unsigned int __new __asm("o1"); \
356 register volatile unsigned int *__lock __asm("o2"); \
357 __old = old; \
358 __new = new; \
359 __lock = (volatile unsigned int *)lock; \
360 __asm__ __volatile__( \
361 /*"cas [%2], %3, %0"*/ \
362 ".word 0xd3e29008\n\t" \
363 /*"membar #StoreStore | #StoreLoad"*/ \
364 ".word 0x8143e00a" \
365 : "=&r" (__new) \
366 : "0" (__new), \
367 "r" (__lock), \
368 "r" (__old) \
369 : "memory"); \
370 __ret = (__new != __old); \
371} while(0)
372
373#elif defined(__ia64__)
374
375#ifdef __INTEL_COMPILER
376/* this currently generates bad code (missing stop bits)... */
377#include <ia64intrin.h>
378
379#define DRM_CAS(lock,old,new,__ret) \
380 do { \
381 unsigned long __result, __old = (old) & 0xffffffff; \
382 __mf(); \
383 __result = _InterlockedCompareExchange_acq(&__drm_dummy_lock(lock), (new), __old);\
384 __ret = (__result) != (__old); \
385/* __ret = (__sync_val_compare_and_swap(&__drm_dummy_lock(lock), \
386 (old), (new)) \
387 != (old)); */\
388 } while (0)
389
390#else
391#define DRM_CAS(lock,old,new,__ret) \
392 do { \
393 unsigned int __result, __old = (old); \
394 __asm__ __volatile__( \
395 "mf\n" \
396 "mov ar.ccv=%2\n" \
397 ";;\n" \
398 "cmpxchg4.acq %0=%1,%3,ar.ccv" \
399 : "=r" (__result), "=m" (__drm_dummy_lock(lock)) \
400 : "r" ((unsigned long)__old), "r" (new) \
401 : "memory"); \
402 __ret = (__result) != (__old); \
403 } while (0)
404
405#endif
406
407#elif defined(__powerpc__)
408
409#define DRM_CAS(lock,old,new,__ret) \
410 do { \
411 __asm__ __volatile__( \
412 "sync;" \
413 "0: lwarx %0,0,%1;" \
414 " xor. %0,%3,%0;" \
415 " bne 1f;" \
416 " stwcx. %2,0,%1;" \
417 " bne- 0b;" \
418 "1: " \
419 "sync;" \
420 : "=&r"(__ret) \
421 : "r"(lock), "r"(new), "r"(old) \
422 : "cr0", "memory"); \
423 } while (0)
424
425#endif /* architecture */
426#endif /* __GNUC__ >= 2 */
427
428#ifndef DRM_CAS
429#define DRM_CAS(lock,old,new,ret) do { ret=1; } while (0) /* FAST LOCK FAILS */
430#endif
431
432#if defined(__alpha__)
433#define DRM_CAS_RESULT(_result) long _result
434#elif defined(__powerpc__)
435#define DRM_CAS_RESULT(_result) int _result
436#else
437#define DRM_CAS_RESULT(_result) char _result
438#endif
439
440#define DRM_LIGHT_LOCK(fd,lock,context) \
441 do { \
442 DRM_CAS_RESULT(__ret); \
443 DRM_CAS(lock,context,DRM_LOCK_HELD|context,__ret); \
444 if (__ret) drmGetLock(fd,context,0); \
445 } while(0)
446
447 /* This one counts fast locks -- for
448 benchmarking only. */
449#define DRM_LIGHT_LOCK_COUNT(fd,lock,context,count) \
450 do { \
451 DRM_CAS_RESULT(__ret); \
452 DRM_CAS(lock,context,DRM_LOCK_HELD|context,__ret); \
453 if (__ret) drmGetLock(fd,context,0); \
454 else ++count; \
455 } while(0)
456
457#define DRM_LOCK(fd,lock,context,flags) \
458 do { \
459 if (flags) drmGetLock(fd,context,flags); \
460 else DRM_LIGHT_LOCK(fd,lock,context); \
461 } while(0)
462
463#define DRM_UNLOCK(fd,lock,context) \
464 do { \
465 DRM_CAS_RESULT(__ret); \
466 DRM_CAS(lock,DRM_LOCK_HELD|context,context,__ret); \
467 if (__ret) drmUnlock(fd,context); \
468 } while(0)
469
470 /* Simple spin locks */
471#define DRM_SPINLOCK(spin,val) \
472 do { \
473 DRM_CAS_RESULT(__ret); \
474 do { \
475 DRM_CAS(spin,0,val,__ret); \
476 if (__ret) while ((spin)->lock); \
477 } while (__ret); \
478 } while(0)
479
480#define DRM_SPINLOCK_TAKE(spin,val) \
481 do { \
482 DRM_CAS_RESULT(__ret); \
483 int cur; \
484 do { \
485 cur = (*spin).lock; \
486 DRM_CAS(spin,cur,val,__ret); \
487 } while (__ret); \
488 } while(0)
489
490#define DRM_SPINLOCK_COUNT(spin,val,count,__ret) \
491 do { \
492 int __i; \
493 __ret = 1; \
494 for (__i = 0; __ret && __i < count; __i++) { \
495 DRM_CAS(spin,0,val,__ret); \
496 if (__ret) for (;__i < count && (spin)->lock; __i++); \
497 } \
498 } while(0)
499
500#define DRM_SPINUNLOCK(spin,val) \
501 do { \
502 DRM_CAS_RESULT(__ret); \
503 if ((*spin).lock == val) { /* else server stole lock */ \
504 do { \
505 DRM_CAS(spin,val,0,__ret); \
506 } while (__ret); \
507 } \
508 } while(0)
509
510
511
512/* General user-level programmer's API: unprivileged */
513extern int drmAvailable(void);
514extern int drmOpen(const char *name, const char *busid);
515extern int drmOpenControl(int minor);
516extern int drmClose(int fd);
517extern drmVersionPtr drmGetVersion(int fd);
518extern drmVersionPtr drmGetLibVersion(int fd);
519extern void drmFreeVersion(drmVersionPtr);
520extern int drmGetMagic(int fd, drm_magic_t * magic);
521extern char *drmGetBusid(int fd);
522extern int drmGetInterruptFromBusID(int fd, int busnum, int devnum,
523 int funcnum);
524extern int drmGetMap(int fd, int idx, drm_handle_t *offset,
525 drmSize *size, drmMapType *type,
526 drmMapFlags *flags, drm_handle_t *handle,
527 int *mtrr);
528extern int drmGetClient(int fd, int idx, int *auth, int *pid,
529 int *uid, unsigned long *magic,
530 unsigned long *iocs);
531extern int drmGetStats(int fd, drmStatsT *stats);
532extern int drmSetInterfaceVersion(int fd, drmSetVersion *version);
533extern int drmCommandNone(int fd, unsigned long drmCommandIndex);
534extern int drmCommandRead(int fd, unsigned long drmCommandIndex,
535 void *data, unsigned long size);
536extern int drmCommandWrite(int fd, unsigned long drmCommandIndex,
537 void *data, unsigned long size);
538extern int drmCommandWriteRead(int fd, unsigned long drmCommandIndex,
539 void *data, unsigned long size);
540
541/* General user-level programmer's API: X server (root) only */
542extern void drmFreeBusid(const char *busid);
543extern int drmSetBusid(int fd, const char *busid);
544extern int drmAuthMagic(int fd, drm_magic_t magic);
545extern int drmAddMap(int fd,
546 drm_handle_t offset,
547 drmSize size,
548 drmMapType type,
549 drmMapFlags flags,
550 drm_handle_t * handle);
551extern int drmRmMap(int fd, drm_handle_t handle);
552extern int drmAddContextPrivateMapping(int fd, drm_context_t ctx_id,
553 drm_handle_t handle);
554
555extern int drmAddBufs(int fd, int count, int size,
556 drmBufDescFlags flags,
557 int agp_offset);
558extern int drmMarkBufs(int fd, double low, double high);
559extern int drmCreateContext(int fd, drm_context_t * handle);
560extern int drmSetContextFlags(int fd, drm_context_t context,
561 drm_context_tFlags flags);
562extern int drmGetContextFlags(int fd, drm_context_t context,
563 drm_context_tFlagsPtr flags);
564extern int drmAddContextTag(int fd, drm_context_t context, void *tag);
565extern int drmDelContextTag(int fd, drm_context_t context);
566extern void *drmGetContextTag(int fd, drm_context_t context);
567extern drm_context_t * drmGetReservedContextList(int fd, int *count);
568extern void drmFreeReservedContextList(drm_context_t *);
569extern int drmSwitchToContext(int fd, drm_context_t context);
570extern int drmDestroyContext(int fd, drm_context_t handle);
571extern int drmCreateDrawable(int fd, drm_drawable_t * handle);
572extern int drmDestroyDrawable(int fd, drm_drawable_t handle);
573extern int drmUpdateDrawableInfo(int fd, drm_drawable_t handle,
574 drm_drawable_info_type_t type,
575 unsigned int num, void *data);
576extern int drmCtlInstHandler(int fd, int irq);
577extern int drmCtlUninstHandler(int fd);
578
579/* General user-level programmer's API: authenticated client and/or X */
580extern int drmMap(int fd,
581 drm_handle_t handle,
582 drmSize size,
583 drmAddressPtr address);
584extern int drmUnmap(drmAddress address, drmSize size);
585extern drmBufInfoPtr drmGetBufInfo(int fd);
586extern drmBufMapPtr drmMapBufs(int fd);
587extern int drmUnmapBufs(drmBufMapPtr bufs);
588extern int drmDMA(int fd, drmDMAReqPtr request);
589extern int drmFreeBufs(int fd, int count, int *list);
590extern int drmGetLock(int fd,
591 drm_context_t context,
592 drmLockFlags flags);
593extern int drmUnlock(int fd, drm_context_t context);
594extern int drmFinish(int fd, int context, drmLockFlags flags);
595extern int drmGetContextPrivateMapping(int fd, drm_context_t ctx_id,
596 drm_handle_t * handle);
597
598/* AGP/GART support: X server (root) only */
599extern int drmAgpAcquire(int fd);
600extern int drmAgpRelease(int fd);
601extern int drmAgpEnable(int fd, unsigned long mode);
602extern int drmAgpAlloc(int fd, unsigned long size,
603 unsigned long type, unsigned long *address,
604 drm_handle_t *handle);
605extern int drmAgpFree(int fd, drm_handle_t handle);
606extern int drmAgpBind(int fd, drm_handle_t handle,
607 unsigned long offset);
608extern int drmAgpUnbind(int fd, drm_handle_t handle);
609
610/* AGP/GART info: authenticated client and/or X */
611extern int drmAgpVersionMajor(int fd);
612extern int drmAgpVersionMinor(int fd);
613extern unsigned long drmAgpGetMode(int fd);
614extern unsigned long drmAgpBase(int fd); /* Physical location */
615extern unsigned long drmAgpSize(int fd); /* Bytes */
616extern unsigned long drmAgpMemoryUsed(int fd);
617extern unsigned long drmAgpMemoryAvail(int fd);
618extern unsigned int drmAgpVendorId(int fd);
619extern unsigned int drmAgpDeviceId(int fd);
620
621/* PCI scatter/gather support: X server (root) only */
622extern int drmScatterGatherAlloc(int fd, unsigned long size,
623 drm_handle_t *handle);
624extern int drmScatterGatherFree(int fd, drm_handle_t handle);
625
626extern int drmWaitVBlank(int fd, drmVBlankPtr vbl);
627
628/* Support routines */
629extern void drmSetServerInfo(drmServerInfoPtr info);
630extern int drmError(int err, const char *label);
631extern void *drmMalloc(int size);
632extern void drmFree(void *pt);
633
634/* Hash table routines */
635extern void *drmHashCreate(void);
636extern int drmHashDestroy(void *t);
637extern int drmHashLookup(void *t, unsigned long key, void **value);
638extern int drmHashInsert(void *t, unsigned long key, void *value);
639extern int drmHashDelete(void *t, unsigned long key);
640extern int drmHashFirst(void *t, unsigned long *key, void **value);
641extern int drmHashNext(void *t, unsigned long *key, void **value);
642
643/* PRNG routines */
644extern void *drmRandomCreate(unsigned long seed);
645extern int drmRandomDestroy(void *state);
646extern unsigned long drmRandom(void *state);
647extern double drmRandomDouble(void *state);
648
649/* Skip list routines */
650
651extern void *drmSLCreate(void);
652extern int drmSLDestroy(void *l);
653extern int drmSLLookup(void *l, unsigned long key, void **value);
654extern int drmSLInsert(void *l, unsigned long key, void *value);
655extern int drmSLDelete(void *l, unsigned long key);
656extern int drmSLNext(void *l, unsigned long *key, void **value);
657extern int drmSLFirst(void *l, unsigned long *key, void **value);
658extern void drmSLDump(void *l);
659extern int drmSLLookupNeighbors(void *l, unsigned long key,
660 unsigned long *prev_key, void **prev_value,
661 unsigned long *next_key, void **next_value);
662
663extern int drmOpenOnce(void *unused, const char *BusID, int *newlyopened);
664extern void drmCloseOnce(int fd);
665extern void drmMsg(const char *format, ...);
666
667extern int drmSetMaster(int fd);
668extern int drmDropMaster(int fd);
669
670#endif
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette