Compile fixes for recent 2.5/2.6 Linux kernels. I hope this doesn't break
[platform/upstream/libdrm.git] / linux-core / drm_os_linux.h
1 /**
2  * \file drm_os_linux.h
3  * OS abstraction macros.
4  */
5
6 #define __NO_VERSION__
7
8 #include <linux/interrupt.h>    /* For task queue support */
9 #include <linux/delay.h>
10
11 /** File pointer type */
12 #define DRMFILE                         struct file *
13 /** Ioctl arguments */
14 #define DRM_IOCTL_ARGS                  struct inode *inode, struct file *filp, unsigned int cmd, unsigned long data
15 #define DRM_ERR(d)                      -(d)
16 /** Current process ID */
17 #define DRM_CURRENTPID                  current->pid
18 #define DRM_UDELAY(d)                   udelay(d)
19 /** Read a byte from a MMIO region */
20 #define DRM_READ8(map, offset)          readb(((unsigned long)(map)->handle) + (offset))
21 /** Read a dword from a MMIO region */
22 #define DRM_READ32(map, offset)         readl(((unsigned long)(map)->handle) + (offset))
23 /** Write a byte into a MMIO region */
24 #define DRM_WRITE8(map, offset, val)    writeb(val, ((unsigned long)(map)->handle) + (offset))
25 /** Write a dword into a MMIO region */
26 #define DRM_WRITE32(map, offset, val)   writel(val, ((unsigned long)(map)->handle) + (offset))
27 /** Read memory barrier */
28 #define DRM_READMEMORYBARRIER()         rmb()
29 /** Write memory barrier */
30 #define DRM_WRITEMEMORYBARRIER()        wmb()
31 /** Read/write memory barrier */
32 #define DRM_MEMORYBARRIER()             mb()
33 /** DRM device local declaration */
34 #define DRM_DEVICE      drm_file_t      *priv   = filp->private_data; \
35                         drm_device_t    *dev    = priv->dev
36                         
37 /** IRQ handler arguments and return type and values */
38 #define DRM_IRQ_ARGS            int irq, void *arg, struct pt_regs *regs
39
40 #if LINUX_VERSION_CODE < KERNEL_VERSION(2,5,69)
41 #define DRM_IRQ_RET             void
42 #define DRM_IRQ_NONE
43 #define DRM_IRQ_HANDLED
44 #else
45 #define DRM_IRQ_RET             irqreturn_t
46 #define DRM_IRQ_NONE            IRQ_NONE
47 #define DRM_IRQ_HANDLED         IRQ_HANDLED
48 #endif
49
50 /** AGP types */
51 #if LINUX_VERSION_CODE < KERNEL_VERSION(2,5,70)
52 #define DRM_AGP_MEM             agp_memory
53 #define DRM_AGP_KERN            agp_kern_info
54 #else
55 #define DRM_AGP_MEM             struct agp_memory
56 #define DRM_AGP_KERN            struct agp_kern_info
57 #endif
58
59 /** Task queue handler arguments */
60 #define DRM_TASKQUEUE_ARGS      void *arg
61
62 /** For data going into the kernel through the ioctl argument */
63 #define DRM_COPY_FROM_USER_IOCTL(arg1, arg2, arg3)      \
64         if ( copy_from_user(&arg1, arg2, arg3) )        \
65                 return -EFAULT
66 /** For data going from the kernel through the ioctl argument */
67 #define DRM_COPY_TO_USER_IOCTL(arg1, arg2, arg3)        \
68         if ( copy_to_user(arg1, &arg2, arg3) )          \
69                 return -EFAULT
70 /** Other copying of data to kernel space */
71 #define DRM_COPY_FROM_USER(arg1, arg2, arg3)            \
72         copy_from_user(arg1, arg2, arg3)
73 /** Other copying of data from kernel space */
74 #define DRM_COPY_TO_USER(arg1, arg2, arg3)              \
75         copy_to_user(arg1, arg2, arg3)
76 /* Macros for copyfrom user, but checking readability only once */
77 #define DRM_VERIFYAREA_READ( uaddr, size )              \
78         verify_area( VERIFY_READ, uaddr, size )
79 #define DRM_COPY_FROM_USER_UNCHECKED(arg1, arg2, arg3)  \
80         __copy_from_user(arg1, arg2, arg3)
81 #define DRM_GET_USER_UNCHECKED(val, uaddr)              \
82         __get_user(val, uaddr)
83
84
85 /** 'malloc' without the overhead of DRM(alloc)() */
86 #define DRM_MALLOC(x) kmalloc(x, GFP_KERNEL)
87 /** 'free' without the overhead of DRM(free)() */
88 #define DRM_FREE(x,size) kfree(x)
89
90 /** 
91  * Get the pointer to the SAREA.
92  *
93  * Searches the SAREA on the mapping lists and points drm_device::sarea to it.
94  */
95 #define DRM_GETSAREA()                                                   \
96 do {                                                                     \
97         drm_map_list_t *entry;                                           \
98         list_for_each_entry( entry, &dev->maplist->head, head ) {        \
99                 if ( entry->map &&                                       \
100                      entry->map->type == _DRM_SHM &&                     \
101                      (entry->map->flags & _DRM_CONTAINS_LOCK) ) {        \
102                         dev_priv->sarea = entry->map;                    \
103                         break;                                           \
104                 }                                                        \
105         }                                                                \
106 } while (0)
107
108 #define DRM_HZ HZ
109
110 #define DRM_WAIT_ON( ret, queue, timeout, condition )           \
111 do {                                                            \
112         DECLARE_WAITQUEUE(entry, current);                      \
113         unsigned long end = jiffies + (timeout);                \
114         add_wait_queue(&(queue), &entry);                       \
115                                                                 \
116         for (;;) {                                              \
117                 current->state = TASK_INTERRUPTIBLE;            \
118                 if (condition)                                  \
119                         break;                                  \
120                 if (time_after_eq(jiffies, end)) {              \
121                         ret = -EBUSY;                           \
122                         break;                                  \
123                 }                                               \
124                 schedule_timeout((HZ/100 > 1) ? HZ/100 : 1);    \
125                 if (signal_pending(current)) {                  \
126                         ret = -EINTR;                           \
127                         break;                                  \
128                 }                                               \
129         }                                                       \
130         current->state = TASK_RUNNING;                          \
131         remove_wait_queue(&(queue), &entry);                    \
132 } while (0)
133
134
135 #define DRM_WAKEUP( queue ) wake_up_interruptible( queue )
136 #define DRM_INIT_WAITQUEUE( queue ) init_waitqueue_head( queue )
137