at v2.6.22 144 lines 4.8 kB view raw
1/** 2 * \file drm_os_linux.h 3 * OS abstraction macros. 4 */ 5 6#include <linux/interrupt.h> /* For task queue support */ 7#include <linux/delay.h> 8 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 drm_file_t *priv = filp->private_data; \ 38 drm_device_t *dev = priv->head->dev 39 40/** IRQ handler arguments and return type and values */ 41#define DRM_IRQ_ARGS int irq, void *arg 42 43/** AGP types */ 44#if __OS_HAS_AGP 45#define DRM_AGP_MEM struct agp_memory 46#define DRM_AGP_KERN struct agp_kern_info 47#else 48/* define some dummy types for non AGP supporting kernels */ 49struct no_agp_kern { 50 unsigned long aper_base; 51 unsigned long aper_size; 52}; 53#define DRM_AGP_MEM int 54#define DRM_AGP_KERN struct no_agp_kern 55#endif 56 57#if !(__OS_HAS_MTRR) 58static __inline__ int mtrr_add(unsigned long base, unsigned long size, 59 unsigned int type, char increment) 60{ 61 return -ENODEV; 62} 63 64static __inline__ int mtrr_del(int reg, unsigned long base, unsigned long size) 65{ 66 return -ENODEV; 67} 68 69#define MTRR_TYPE_WRCOMB 1 70 71#endif 72 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) ) \ 76 return -EFAULT 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) ) \ 80 return -EFAULT 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) 96 97#define DRM_GET_PRIV_WITH_RETURN(_priv, _filp) _priv = _filp->private_data 98 99/** 100 * Get the pointer to the SAREA. 101 * 102 * Searches the SAREA on the mapping lists and points drm_device::sarea to it. 103 */ 104#define DRM_GETSAREA() \ 105do { \ 106 drm_map_list_t *entry; \ 107 list_for_each_entry( entry, &dev->maplist->head, head ) { \ 108 if ( entry->map && \ 109 entry->map->type == _DRM_SHM && \ 110 (entry->map->flags & _DRM_CONTAINS_LOCK) ) { \ 111 dev_priv->sarea = entry->map; \ 112 break; \ 113 } \ 114 } \ 115} while (0) 116 117#define DRM_HZ HZ 118 119#define DRM_WAIT_ON( ret, queue, timeout, condition ) \ 120do { \ 121 DECLARE_WAITQUEUE(entry, current); \ 122 unsigned long end = jiffies + (timeout); \ 123 add_wait_queue(&(queue), &entry); \ 124 \ 125 for (;;) { \ 126 __set_current_state(TASK_INTERRUPTIBLE); \ 127 if (condition) \ 128 break; \ 129 if (time_after_eq(jiffies, end)) { \ 130 ret = -EBUSY; \ 131 break; \ 132 } \ 133 schedule_timeout((HZ/100 > 1) ? HZ/100 : 1); \ 134 if (signal_pending(current)) { \ 135 ret = -EINTR; \ 136 break; \ 137 } \ 138 } \ 139 __set_current_state(TASK_RUNNING); \ 140 remove_wait_queue(&(queue), &entry); \ 141} while (0) 142 143#define DRM_WAKEUP( queue ) wake_up_interruptible( queue ) 144#define DRM_INIT_WAITQUEUE( queue ) init_waitqueue_head( queue )