3 * OS abstraction macros.
6 #include <linux/interrupt.h> /* For task queue support */
7 #include <linux/delay.h>
9 /** File pointer type */
10 #define DRMFILE struct file *
11 /** Ioctl arguments */
12 #define DRM_IOCTL_ARGS struct inode *inode, struct file *filp, unsigned int cmd, unsigned long data
13 #define DRM_ERR(d) -(d)
14 /** Current process ID */
15 #define DRM_CURRENTPID current->pid
16 #define DRM_SUSER(p) capable(CAP_SYS_ADMIN)
17 #define DRM_UDELAY(d) udelay(d)
18 /** Read a byte from a MMIO region */
19 #define DRM_READ8(map, offset) readb(((void __iomem *)(map)->handle) + (offset))
20 /** Read a word from a MMIO region */
21 #define DRM_READ16(map, offset) readw(((void __iomem *)(map)->handle) + (offset))
22 /** Read a dword from a MMIO region */
23 #define DRM_READ32(map, offset) readl(((void __iomem *)(map)->handle) + (offset))
24 /** Write a byte into a MMIO region */
25 #define DRM_WRITE8(map, offset, val) writeb(val, ((void __iomem *)(map)->handle) + (offset))
26 /** Write a word into a MMIO region */
27 #define DRM_WRITE16(map, offset, val) writew(val, ((void __iomem *)(map)->handle) + (offset))
28 /** Write a dword into a MMIO region */
29 #define DRM_WRITE32(map, offset, val) writel(val, ((void __iomem *)(map)->handle) + (offset))
30 /** Read memory barrier */
31 #define DRM_READMEMORYBARRIER() rmb()
32 /** Write memory barrier */
33 #define DRM_WRITEMEMORYBARRIER() wmb()
34 /** Read/write memory barrier */
35 #define DRM_MEMORYBARRIER() mb()
36 /** DRM device local declaration */
37 #define DRM_DEVICE struct drm_file *priv = filp->private_data; \
38 struct drm_device *dev = priv->head->dev
40 /** IRQ handler arguments and return type and values */
41 #define DRM_IRQ_ARGS int irq, void *arg
45 #define DRM_AGP_MEM struct agp_memory
46 #define DRM_AGP_KERN struct agp_kern_info
48 /* define some dummy types for non AGP supporting kernels */
50 unsigned long aper_base
;
51 unsigned long aper_size
;
53 #define DRM_AGP_MEM int
54 #define DRM_AGP_KERN struct no_agp_kern
58 static __inline__
int mtrr_add(unsigned long base
, unsigned long size
,
59 unsigned int type
, char increment
)
64 static __inline__
int mtrr_del(int reg
, unsigned long base
, unsigned long size
)
69 #define MTRR_TYPE_WRCOMB 1
73 /** For data going into the kernel through the ioctl argument */
74 #define DRM_COPY_FROM_USER_IOCTL(arg1, arg2, arg3) \
75 if ( copy_from_user(&arg1, arg2, arg3) ) \
77 /** For data going from the kernel through the ioctl argument */
78 #define DRM_COPY_TO_USER_IOCTL(arg1, arg2, arg3) \
79 if ( copy_to_user(arg1, &arg2, arg3) ) \
81 /** Other copying of data to kernel space */
82 #define DRM_COPY_FROM_USER(arg1, arg2, arg3) \
83 copy_from_user(arg1, arg2, arg3)
84 /** Other copying of data from kernel space */
85 #define DRM_COPY_TO_USER(arg1, arg2, arg3) \
86 copy_to_user(arg1, arg2, arg3)
87 /* Macros for copyfrom user, but checking readability only once */
88 #define DRM_VERIFYAREA_READ( uaddr, size ) \
89 (access_ok( VERIFY_READ, uaddr, size ) ? 0 : -EFAULT)
90 #define DRM_COPY_FROM_USER_UNCHECKED(arg1, arg2, arg3) \
91 __copy_from_user(arg1, arg2, arg3)
92 #define DRM_COPY_TO_USER_UNCHECKED(arg1, arg2, arg3) \
93 __copy_to_user(arg1, arg2, arg3)
94 #define DRM_GET_USER_UNCHECKED(val, uaddr) \
95 __get_user(val, uaddr)
97 #define DRM_GET_PRIV_WITH_RETURN(_priv, _filp) _priv = _filp->private_data
101 #define DRM_WAIT_ON( ret, queue, timeout, condition ) \
103 DECLARE_WAITQUEUE(entry, current); \
104 unsigned long end = jiffies + (timeout); \
105 add_wait_queue(&(queue), &entry); \
108 __set_current_state(TASK_INTERRUPTIBLE); \
111 if (time_after_eq(jiffies, end)) { \
115 schedule_timeout((HZ/100 > 1) ? HZ/100 : 1); \
116 if (signal_pending(current)) { \
121 __set_current_state(TASK_RUNNING); \
122 remove_wait_queue(&(queue), &entry); \
125 #define DRM_WAKEUP( queue ) wake_up_interruptible( queue )
126 #define DRM_INIT_WAITQUEUE( queue ) init_waitqueue_head( queue )