drm.h
001: 
002: 
003: 
004: 
005: <faith@valinux.com>
006: 
007: 
008: <rth@twiddle.net>
009: 
010: 
011: 
012: 
013: 
014: 
015: 
016: 
017: 
018: 
019: 
020: 
021: 
022: 
023: 
024: 
025: 
026: 
027: 
028: 
029: 
030: 
031: 
032: 
033: 
034: 
035: 
036: #ifndef _DRM_H_
037: #define _DRM_H_
038: 
039: #if defined(__linux__)
040: 
041: #include <linux/types.h>
042: #include <asm/ioctl.h>
043: typedef unsigned int drm_handle_t;
044: 
045: #else 
046: 
047: #include <sys/ioccom.h>
048: #include <sys/types.h>
049: typedef int8_t   __s8;
050: typedef uint8_t  __u8;
051: typedef int16_t  __s16;
052: typedef uint16_t __u16;
053: typedef int32_t  __s32;
054: typedef uint32_t __u32;
055: typedef int64_t  __s64;
056: typedef uint64_t __u64;
057: typedef unsigned long drm_handle_t;
058: 
059: #endif
060: 
061: #define DRM_NAME        "drm"     
062: #define DRM_MIN_ORDER   5         
063: #define DRM_MAX_ORDER   22        
064: #define DRM_RAM_PERCENT 10        
065: 
066: #define _DRM_LOCK_HELD  0x80000000U 
067: #define _DRM_LOCK_CONT  0x40000000U 
068: #define _DRM_LOCK_IS_HELD(lock)    ((lock) & _DRM_LOCK_HELD)
069: #define _DRM_LOCK_IS_CONT(lock)    ((lock) & _DRM_LOCK_CONT)
070: #define _DRM_LOCKING_CONTEXT(lock) ((lock) & ~(_DRM_LOCK_HELD|_DRM_LOCK_CONT))
071: 
072: typedef unsigned int drm_context_t;
073: typedef unsigned int drm_drawable_t;
074: typedef unsigned int drm_magic_t;
075: 
076: 
077: 
078: 
079: 
080: 
081: 
082: 
083: 
084: 
085: struct drm_clip_rect {
086:         unsigned short x1;
087:         unsigned short y1;
088:         unsigned short x2;
089:         unsigned short y2;
090: };
091: 
092: 
093: 
094: 
095: struct drm_drawable_info {
096:         unsigned int num_rects;
097:         struct drm_clip_rect *rects;
098: };
099: 
100: 
101: 
102: 
103: struct drm_tex_region {
104:         unsigned char next;
105:         unsigned char prev;
106:         unsigned char in_use;
107:         unsigned char padding;
108:         unsigned int age;
109: };
110: 
111: 
112: 
113: 
114: 
115: 
116: 
117: 
118: struct drm_hw_lock {
119:         __volatile__ unsigned int lock;         
120:         char padding[60];                       
121: };
122: 
123: 
124: 
125: 
126: 
127: 
128: struct drm_version {
129:         int version_major;        
130:         int version_minor;        
131:         int version_patchlevel;   
132:         size_t name_len;          
133:         char *name;       
134:         size_t date_len;          
135:         char *date;       
136:         size_t desc_len;          
137:         char *desc;       
138: };
139: 
140: 
141: 
142: 
143: 
144: 
145: struct drm_unique {
146:         size_t unique_len;        
147:         char *unique;     
148: };
149: 
150: struct drm_list {
151:         int count;                
152:         struct drm_version *version;
153: };
154: 
155: struct drm_block {
156:         int unused;
157: };
158: 
159: 
160: 
161: 
162: 
163: 
164: struct drm_control {
165:         enum {
166:                 DRM_ADD_COMMAND,
167:                 DRM_RM_COMMAND,
168:                 DRM_INST_HANDLER,
169:                 DRM_UNINST_HANDLER
170:         } func;
171:         int irq;
172: };
173: 
174: 
175: 
176: 
177: enum drm_map_type {
178:         _DRM_FRAME_BUFFER = 0,    
179:         _DRM_REGISTERS = 1,       
180:         _DRM_SHM = 2,             
181:         _DRM_AGP = 3,             
182:         _DRM_SCATTER_GATHER = 4,  
183:         _DRM_CONSISTENT = 5,      
184:         _DRM_GEM = 6,             
185: };
186: 
187: 
188: 
189: 
190: enum drm_map_flags {
191:         _DRM_RESTRICTED = 0x01,      
192:         _DRM_READ_ONLY = 0x02,
193:         _DRM_LOCKED = 0x04,          
194:         _DRM_KERNEL = 0x08,          
195:         _DRM_WRITE_COMBINING = 0x10, 
196:         _DRM_CONTAINS_LOCK = 0x20,   
197:         _DRM_REMOVABLE = 0x40,       
198:         _DRM_DRIVER = 0x80           
199: };
200: 
201: struct drm_ctx_priv_map {
202:         unsigned int ctx_id;     
203:         void *handle;            
204: };
205: 
206: 
207: 
208: 
209: 
210: 
211: 
212: struct drm_map {
213:         unsigned long offset;    
214:         unsigned long size;      
215:         enum drm_map_type type;  
216:         enum drm_map_flags flags;        
217:         void *handle;            
218:                                  
219:         int mtrr;                
220:         
221: };
222: 
223: 
224: 
225: 
226: struct drm_client {
227:         int idx;                
228:         int auth;               
229:         unsigned long pid;      
230:         unsigned long uid;      
231:         unsigned long magic;    
232:         unsigned long iocs;     
233: };
234: 
235: enum drm_stat_type {
236:         _DRM_STAT_LOCK,
237:         _DRM_STAT_OPENS,
238:         _DRM_STAT_CLOSES,
239:         _DRM_STAT_IOCTLS,
240:         _DRM_STAT_LOCKS,
241:         _DRM_STAT_UNLOCKS,
242:         _DRM_STAT_VALUE,        
243:         _DRM_STAT_BYTE,         
244:         _DRM_STAT_COUNT,        
245: 
246:         _DRM_STAT_IRQ,          
247:         _DRM_STAT_PRIMARY,      
248:         _DRM_STAT_SECONDARY,    
249:         _DRM_STAT_DMA,          
250:         _DRM_STAT_SPECIAL,      
251:         _DRM_STAT_MISSED        
252:             
253: };
254: 
255: 
256: 
257: 
258: struct drm_stats {
259:         unsigned long count;
260:         struct {
261:                 unsigned long value;
262:                 enum drm_stat_type type;
263:         } data[15];
264: };
265: 
266: 
267: 
268: 
269: enum drm_lock_flags {
270:         _DRM_LOCK_READY = 0x01,      
271:         _DRM_LOCK_QUIESCENT = 0x02,  
272:         _DRM_LOCK_FLUSH = 0x04,      
273:         _DRM_LOCK_FLUSH_ALL = 0x08,  
274:         
275: 
276: 
277:         _DRM_HALT_ALL_QUEUES = 0x10, 
278:         _DRM_HALT_CUR_QUEUES = 0x20  
279: };
280: 
281: 
282: 
283: 
284: 
285: 
286: struct drm_lock {
287:         int context;
288:         enum drm_lock_flags flags;
289: };
290: 
291: 
292: 
293: 
294: 
295: 
296: 
297: 
298: 
299: enum drm_dma_flags {
300:         
301:         _DRM_DMA_BLOCK = 0x01,        
302: 
303: 
304: 
305: 
306: 
307: 
308: 
309: 
310: 
311:         _DRM_DMA_WHILE_LOCKED = 0x02, 
312:         _DRM_DMA_PRIORITY = 0x04,     
313: 
314:         
315:         _DRM_DMA_WAIT = 0x10,         
316:         _DRM_DMA_SMALLER_OK = 0x20,   
317:         _DRM_DMA_LARGER_OK = 0x40     
318: };
319: 
320: 
321: 
322: 
323: 
324: 
325: struct drm_buf_desc {
326:         int count;               
327:         int size;                
328:         int low_mark;            
329:         int high_mark;           
330:         enum {
331:                 _DRM_PAGE_ALIGN = 0x01, 
332:                 _DRM_AGP_BUFFER = 0x02, 
333:                 _DRM_SG_BUFFER = 0x04,  
334:                 _DRM_FB_BUFFER = 0x08,  
335:                 _DRM_PCI_BUFFER_RO = 0x10 
336:         } flags;
337:         unsigned long agp_start; 
338: 
339: 
340: 
341: };
342: 
343: 
344: 
345: 
346: struct drm_buf_info {
347:         int count;              
348:         struct drm_buf_desc *list;
349: };
350: 
351: 
352: 
353: 
354: struct drm_buf_free {
355:         int count;
356:         int *list;
357: };
358: 
359: 
360: 
361: 
362: 
363: 
364: struct drm_buf_pub {
365:         int idx;                       
366:         int total;                     
367:         int used;                      
368:         void *address;         
369: };
370: 
371: 
372: 
373: 
374: struct drm_buf_map {
375:         int count;              
376:         void *virtual;          
377:         struct drm_buf_pub *list;       
378: };
379: 
380: 
381: 
382: 
383: 
384: 
385: 
386: 
387: struct drm_dma {
388:         int context;                      
389:         int send_count;                   
390:         int *send_indices;        
391:         int *send_sizes;                  
392:         enum drm_dma_flags flags;         
393:         int request_count;                
394:         int request_size;                 
395:         int *request_indices;     
396:         int *request_sizes;
397:         int granted_count;                
398: };
399: 
400: enum drm_ctx_flags {
401:         _DRM_CONTEXT_PRESERVED = 0x01,
402:         _DRM_CONTEXT_2DONLY = 0x02
403: };
404: 
405: 
406: 
407: 
408: 
409: 
410: struct drm_ctx {
411:         drm_context_t handle;
412:         enum drm_ctx_flags flags;
413: };
414: 
415: 
416: 
417: 
418: struct drm_ctx_res {
419:         int count;
420:         struct drm_ctx *contexts;
421: };
422: 
423: 
424: 
425: 
426: struct drm_draw {
427:         drm_drawable_t handle;
428: };
429: 
430: 
431: 
432: 
433: typedef enum {
434:         DRM_DRAWABLE_CLIPRECTS,
435: } drm_drawable_info_type_t;
436: 
437: struct drm_update_draw {
438:         drm_drawable_t handle;
439:         unsigned int type;
440:         unsigned int num;
441:         unsigned long long data;
442: };
443: 
444: 
445: 
446: 
447: struct drm_auth {
448:         drm_magic_t magic;
449: };
450: 
451: 
452: 
453: 
454: 
455: 
456: struct drm_irq_busid {
457:         int irq;        
458:         int busnum;     
459:         int devnum;     
460:         int funcnum;    
461: };
462: 
463: enum drm_vblank_seq_type {
464:         _DRM_VBLANK_ABSOLUTE = 0x0,     
465:         _DRM_VBLANK_RELATIVE = 0x1,     
466:         
467:         _DRM_VBLANK_HIGH_CRTC_MASK = 0x0000003e,
468:         _DRM_VBLANK_EVENT = 0x4000000,   
469:         _DRM_VBLANK_FLIP = 0x8000000,   
470:         _DRM_VBLANK_NEXTONMISS = 0x10000000,    
471:         _DRM_VBLANK_SECONDARY = 0x20000000,     
472:         _DRM_VBLANK_SIGNAL = 0x40000000 
473: };
474: #define _DRM_VBLANK_HIGH_CRTC_SHIFT 1
475: 
476: #define _DRM_VBLANK_TYPES_MASK (_DRM_VBLANK_ABSOLUTE | _DRM_VBLANK_RELATIVE)
477: #define _DRM_VBLANK_FLAGS_MASK (_DRM_VBLANK_EVENT | _DRM_VBLANK_SIGNAL | \
478:                                 _DRM_VBLANK_SECONDARY | _DRM_VBLANK_NEXTONMISS)
479: 
480: struct drm_wait_vblank_request {
481:         enum drm_vblank_seq_type type;
482:         unsigned int sequence;
483:         unsigned long signal;
484: };
485: 
486: struct drm_wait_vblank_reply {
487:         enum drm_vblank_seq_type type;
488:         unsigned int sequence;
489:         long tval_sec;
490:         long tval_usec;
491: };
492: 
493: 
494: 
495: 
496: 
497: 
498: union drm_wait_vblank {
499:         struct drm_wait_vblank_request request;
500:         struct drm_wait_vblank_reply reply;
501: };
502: 
503: #define _DRM_PRE_MODESET 1
504: #define _DRM_POST_MODESET 2
505: 
506: 
507: 
508: 
509: 
510: 
511: struct drm_modeset_ctl {
512:         __u32 crtc;
513:         __u32 cmd;
514: };
515: 
516: 
517: 
518: 
519: 
520: 
521: struct drm_agp_mode {
522:         unsigned long mode;     
523: };
524: 
525: 
526: 
527: 
528: 
529: 
530: struct drm_agp_buffer {
531:         unsigned long size;     
532:         unsigned long handle;   
533:         unsigned long type;     
534:         unsigned long physical; 
535: };
536: 
537: 
538: 
539: 
540: 
541: 
542: struct drm_agp_binding {
543:         unsigned long handle;   
544:         unsigned long offset;   
545: };
546: 
547: 
548: 
549: 
550: 
551: 
552: 
553: 
554: struct drm_agp_info {
555:         int agp_version_major;
556:         int agp_version_minor;
557:         unsigned long mode;
558:         unsigned long aperture_base;    
559:         unsigned long aperture_size;    
560:         unsigned long memory_allowed;   
561:         unsigned long memory_used;
562: 
563:         
564:         unsigned short id_vendor;
565:         unsigned short id_device;
566: };
567: 
568: 
569: 
570: 
571: struct drm_scatter_gather {
572:         unsigned long size;     
573:         unsigned long handle;   
574: };
575: 
576: 
577: 
578: 
579: struct drm_set_version {
580:         int drm_di_major;
581:         int drm_di_minor;
582:         int drm_dd_major;
583:         int drm_dd_minor;
584: };
585: 
586: 
587: struct drm_gem_close {
588:         
589:         __u32 handle;
590:         __u32 pad;
591: };
592: 
593: 
594: struct drm_gem_flink {
595:         
596:         __u32 handle;
597: 
598:         
599:         __u32 name;
600: };
601: 
602: 
603: struct drm_gem_open {
604:         
605:         __u32 name;
606: 
607:         
608:         __u32 handle;
609: 
610:         
611:         __u64 size;
612: };
613: 
614: 
615: struct drm_get_cap {
616:         __u64 capability;
617:         __u64 value;
618: };
619: 
620: #include <drm/drm_mode.h>
621: 
622: #define DRM_IOCTL_BASE                  'd'
623: #define DRM_IO(nr)                      _IO(DRM_IOCTL_BASE,nr)
624: #define DRM_IOR(nr,type)                _IOR(DRM_IOCTL_BASE,nr,type)
625: #define DRM_IOW(nr,type)                _IOW(DRM_IOCTL_BASE,nr,type)
626: #define DRM_IOWR(nr,type)               _IOWR(DRM_IOCTL_BASE,nr,type)
627: 
628: #define DRM_IOCTL_VERSION               DRM_IOWR(0x00, struct drm_version)
629: #define DRM_IOCTL_GET_UNIQUE            DRM_IOWR(0x01, struct drm_unique)
630: #define DRM_IOCTL_GET_MAGIC             DRM_IOR( 0x02, struct drm_auth)
631: #define DRM_IOCTL_IRQ_BUSID             DRM_IOWR(0x03, struct drm_irq_busid)
632: #define DRM_IOCTL_GET_MAP               DRM_IOWR(0x04, struct drm_map)
633: #define DRM_IOCTL_GET_CLIENT            DRM_IOWR(0x05, struct drm_client)
634: #define DRM_IOCTL_GET_STATS             DRM_IOR( 0x06, struct drm_stats)
635: #define DRM_IOCTL_SET_VERSION           DRM_IOWR(0x07, struct drm_set_version)
636: #define DRM_IOCTL_MODESET_CTL           DRM_IOW(0x08, struct drm_modeset_ctl)
637: #define DRM_IOCTL_GEM_CLOSE             DRM_IOW (0x09, struct drm_gem_close)
638: #define DRM_IOCTL_GEM_FLINK             DRM_IOWR(0x0a, struct drm_gem_flink)
639: #define DRM_IOCTL_GEM_OPEN              DRM_IOWR(0x0b, struct drm_gem_open)
640: #define DRM_IOCTL_GET_CAP               DRM_IOWR(0x0c, struct drm_get_cap)
641: 
642: #define DRM_IOCTL_SET_UNIQUE            DRM_IOW( 0x10, struct drm_unique)
643: #define DRM_IOCTL_AUTH_MAGIC            DRM_IOW( 0x11, struct drm_auth)
644: #define DRM_IOCTL_BLOCK                 DRM_IOWR(0x12, struct drm_block)
645: #define DRM_IOCTL_UNBLOCK               DRM_IOWR(0x13, struct drm_block)
646: #define DRM_IOCTL_CONTROL               DRM_IOW( 0x14, struct drm_control)
647: #define DRM_IOCTL_ADD_MAP               DRM_IOWR(0x15, struct drm_map)
648: #define DRM_IOCTL_ADD_BUFS              DRM_IOWR(0x16, struct drm_buf_desc)
649: #define DRM_IOCTL_MARK_BUFS             DRM_IOW( 0x17, struct drm_buf_desc)
650: #define DRM_IOCTL_INFO_BUFS             DRM_IOWR(0x18, struct drm_buf_info)
651: #define DRM_IOCTL_MAP_BUFS              DRM_IOWR(0x19, struct drm_buf_map)
652: #define DRM_IOCTL_FREE_BUFS             DRM_IOW( 0x1a, struct drm_buf_free)
653: 
654: #define DRM_IOCTL_RM_MAP                DRM_IOW( 0x1b, struct drm_map)
655: 
656: #define DRM_IOCTL_SET_SAREA_CTX         DRM_IOW( 0x1c, struct drm_ctx_priv_map)
657: #define DRM_IOCTL_GET_SAREA_CTX         DRM_IOWR(0x1d, struct drm_ctx_priv_map)
658: 
659: #define DRM_IOCTL_SET_MASTER            DRM_IO(0x1e)
660: #define DRM_IOCTL_DROP_MASTER           DRM_IO(0x1f)
661: 
662: #define DRM_IOCTL_ADD_CTX               DRM_IOWR(0x20, struct drm_ctx)
663: #define DRM_IOCTL_RM_CTX                DRM_IOWR(0x21, struct drm_ctx)
664: #define DRM_IOCTL_MOD_CTX               DRM_IOW( 0x22, struct drm_ctx)
665: #define DRM_IOCTL_GET_CTX               DRM_IOWR(0x23, struct drm_ctx)
666: #define DRM_IOCTL_SWITCH_CTX            DRM_IOW( 0x24, struct drm_ctx)
667: #define DRM_IOCTL_NEW_CTX               DRM_IOW( 0x25, struct drm_ctx)
668: #define DRM_IOCTL_RES_CTX               DRM_IOWR(0x26, struct drm_ctx_res)
669: #define DRM_IOCTL_ADD_DRAW              DRM_IOWR(0x27, struct drm_draw)
670: #define DRM_IOCTL_RM_DRAW               DRM_IOWR(0x28, struct drm_draw)
671: #define DRM_IOCTL_DMA                   DRM_IOWR(0x29, struct drm_dma)
672: #define DRM_IOCTL_LOCK                  DRM_IOW( 0x2a, struct drm_lock)
673: #define DRM_IOCTL_UNLOCK                DRM_IOW( 0x2b, struct drm_lock)
674: #define DRM_IOCTL_FINISH                DRM_IOW( 0x2c, struct drm_lock)
675: 
676: #define DRM_IOCTL_GEM_PRIME_OPEN        DRM_IOWR(0x2e, struct drm_gem_open)
677: 
678: #define DRM_IOCTL_AGP_ACQUIRE           DRM_IO(  0x30)
679: #define DRM_IOCTL_AGP_RELEASE           DRM_IO(  0x31)
680: #define DRM_IOCTL_AGP_ENABLE            DRM_IOW( 0x32, struct drm_agp_mode)
681: #define DRM_IOCTL_AGP_INFO              DRM_IOR( 0x33, struct drm_agp_info)
682: #define DRM_IOCTL_AGP_ALLOC             DRM_IOWR(0x34, struct drm_agp_buffer)
683: #define DRM_IOCTL_AGP_FREE              DRM_IOW( 0x35, struct drm_agp_buffer)
684: #define DRM_IOCTL_AGP_BIND              DRM_IOW( 0x36, struct drm_agp_binding)
685: #define DRM_IOCTL_AGP_UNBIND            DRM_IOW( 0x37, struct drm_agp_binding)
686: 
687: #define DRM_IOCTL_SG_ALLOC              DRM_IOWR(0x38, struct drm_scatter_gather)
688: #define DRM_IOCTL_SG_FREE               DRM_IOW( 0x39, struct drm_scatter_gather)
689: 
690: #define DRM_IOCTL_WAIT_VBLANK           DRM_IOWR(0x3a, union drm_wait_vblank)
691: 
692: #define DRM_IOCTL_UPDATE_DRAW           DRM_IOW(0x3f, struct drm_update_draw)
693: 
694: #define DRM_IOCTL_MODE_GETRESOURCES     DRM_IOWR(0xA0, struct drm_mode_card_res)
695: #define DRM_IOCTL_MODE_GETCRTC          DRM_IOWR(0xA1, struct drm_mode_crtc)
696: #define DRM_IOCTL_MODE_SETCRTC          DRM_IOWR(0xA2, struct drm_mode_crtc)
697: #define DRM_IOCTL_MODE_CURSOR           DRM_IOWR(0xA3, struct drm_mode_cursor)
698: #define DRM_IOCTL_MODE_GETGAMMA         DRM_IOWR(0xA4, struct drm_mode_crtc_lut)
699: #define DRM_IOCTL_MODE_SETGAMMA         DRM_IOWR(0xA5, struct drm_mode_crtc_lut)
700: #define DRM_IOCTL_MODE_GETENCODER       DRM_IOWR(0xA6, struct drm_mode_get_encoder)
701: #define DRM_IOCTL_MODE_GETCONNECTOR     DRM_IOWR(0xA7, struct drm_mode_get_connector)
702: #define DRM_IOCTL_MODE_ATTACHMODE       DRM_IOWR(0xA8, struct drm_mode_mode_cmd)
703: #define DRM_IOCTL_MODE_DETACHMODE       DRM_IOWR(0xA9, struct drm_mode_mode_cmd)
704: 
705: #define DRM_IOCTL_MODE_GETPROPERTY      DRM_IOWR(0xAA, struct drm_mode_get_property)
706: #define DRM_IOCTL_MODE_SETPROPERTY      DRM_IOWR(0xAB, struct drm_mode_connector_set_property)
707: #define DRM_IOCTL_MODE_GETPROPBLOB      DRM_IOWR(0xAC, struct drm_mode_get_blob)
708: #define DRM_IOCTL_MODE_GETFB            DRM_IOWR(0xAD, struct drm_mode_fb_cmd)
709: #define DRM_IOCTL_MODE_ADDFB            DRM_IOWR(0xAE, struct drm_mode_fb_cmd)
710: #define DRM_IOCTL_MODE_RMFB             DRM_IOWR(0xAF, unsigned int)
711: #define DRM_IOCTL_MODE_PAGE_FLIP        DRM_IOWR(0xB0, struct drm_mode_crtc_page_flip)
712: #define DRM_IOCTL_MODE_DIRTYFB          DRM_IOWR(0xB1, struct drm_mode_fb_dirty_cmd)
713: 
714: #define DRM_IOCTL_MODE_CREATE_DUMB DRM_IOWR(0xB2, struct drm_mode_create_dumb)
715: #define DRM_IOCTL_MODE_MAP_DUMB    DRM_IOWR(0xB3, struct drm_mode_map_dumb)
716: #define DRM_IOCTL_MODE_DESTROY_DUMB    DRM_IOWR(0xB4, struct drm_mode_destroy_dumb)
717: 
718: 
719: 
720: 
721: 
722: 
723: 
724: 
725: 
726: #define DRM_COMMAND_BASE                0x40
727: #define DRM_COMMAND_END                 0xA0
728: 
729: 
730: 
731: 
732: 
733: 
734: 
735: 
736: 
737: 
738: 
739: 
740: 
741: struct drm_event {
742:         __u32 type;
743:         __u32 length;
744: };
745: 
746: #define DRM_EVENT_VBLANK 0x01
747: #define DRM_EVENT_FLIP_COMPLETE 0x02
748: 
749: struct drm_event_vblank {
750:         struct drm_event base;
751:         __u64 user_data;
752:         __u32 tv_sec;
753:         __u32 tv_usec;
754:         __u32 sequence;
755:         __u32 reserved;
756: };
757: 
758: #define DRM_CAP_DUMB_BUFFER 0x1
759: #define DRM_CAP_VBLANK_HIGH_CRTC 0x2
760: 
761: 
762: typedef struct drm_clip_rect drm_clip_rect_t;
763: typedef struct drm_drawable_info drm_drawable_info_t;
764: typedef struct drm_tex_region drm_tex_region_t;
765: typedef struct drm_hw_lock drm_hw_lock_t;
766: typedef struct drm_version drm_version_t;
767: typedef struct drm_unique drm_unique_t;
768: typedef struct drm_list drm_list_t;
769: typedef struct drm_block drm_block_t;
770: typedef struct drm_control drm_control_t;
771: typedef enum drm_map_type drm_map_type_t;
772: typedef enum drm_map_flags drm_map_flags_t;
773: typedef struct drm_ctx_priv_map drm_ctx_priv_map_t;
774: typedef struct drm_map drm_map_t;
775: typedef struct drm_client drm_client_t;
776: typedef enum drm_stat_type drm_stat_type_t;
777: typedef struct drm_stats drm_stats_t;
778: typedef enum drm_lock_flags drm_lock_flags_t;
779: typedef struct drm_lock drm_lock_t;
780: typedef enum drm_dma_flags drm_dma_flags_t;
781: typedef struct drm_buf_desc drm_buf_desc_t;
782: typedef struct drm_buf_info drm_buf_info_t;
783: typedef struct drm_buf_free drm_buf_free_t;
784: typedef struct drm_buf_pub drm_buf_pub_t;
785: typedef struct drm_buf_map drm_buf_map_t;
786: typedef struct drm_dma drm_dma_t;
787: typedef union drm_wait_vblank drm_wait_vblank_t;
788: typedef struct drm_agp_mode drm_agp_mode_t;
789: typedef enum drm_ctx_flags drm_ctx_flags_t;
790: typedef struct drm_ctx drm_ctx_t;
791: typedef struct drm_ctx_res drm_ctx_res_t;
792: typedef struct drm_draw drm_draw_t;
793: typedef struct drm_update_draw drm_update_draw_t;
794: typedef struct drm_auth drm_auth_t;
795: typedef struct drm_irq_busid drm_irq_busid_t;
796: typedef enum drm_vblank_seq_type drm_vblank_seq_type_t;
797: 
798: typedef struct drm_agp_buffer drm_agp_buffer_t;
799: typedef struct drm_agp_binding drm_agp_binding_t;
800: typedef struct drm_agp_info drm_agp_info_t;
801: typedef struct drm_scatter_gather drm_scatter_gather_t;
802: typedef struct drm_set_version drm_set_version_t;
803: 
804: #endif
805: 
      
      
      
      
   
      
      
         
            
            © Andrew Scott 2006 -
            2025, 
            All Rights Reserved