2003-05-26 18:37:33 -06:00
|
|
|
/**
|
|
|
|
* \file drm_os_linux.h
|
|
|
|
* OS abstraction macros.
|
|
|
|
*/
|
|
|
|
|
2002-07-05 02:31:11 -06:00
|
|
|
#include <linux/interrupt.h> /* For task queue support */
|
|
|
|
#include <linux/delay.h>
|
|
|
|
|
2003-05-26 18:37:33 -06:00
|
|
|
/** Current process ID */
|
2002-07-05 02:31:11 -06:00
|
|
|
#define DRM_CURRENTPID current->pid
|
2005-08-15 12:07:12 -06:00
|
|
|
#define DRM_SUSER(p) capable(CAP_SYS_ADMIN)
|
2002-07-05 02:31:11 -06:00
|
|
|
#define DRM_UDELAY(d) udelay(d)
|
2004-09-11 21:23:50 -06:00
|
|
|
/** Read a byte from a MMIO region */
|
|
|
|
#define DRM_READ8(map, offset) readb((map)->handle + (offset))
|
|
|
|
/** Read a word from a MMIO region */
|
|
|
|
#define DRM_READ16(map, offset) readw((map)->handle + (offset))
|
|
|
|
/** Read a dword from a MMIO region */
|
|
|
|
#define DRM_READ32(map, offset) readl((map)->handle + (offset))
|
|
|
|
/** Write a byte into a MMIO region */
|
|
|
|
#define DRM_WRITE8(map, offset, val) writeb(val, (map)->handle + (offset))
|
|
|
|
/** Write a word into a MMIO region */
|
|
|
|
#define DRM_WRITE16(map, offset, val) writew(val, (map)->handle + (offset))
|
|
|
|
/** Write a dword into a MMIO region */
|
|
|
|
#define DRM_WRITE32(map, offset, val) writel(val, (map)->handle + (offset))
|
2003-05-26 18:37:33 -06:00
|
|
|
/** Read memory barrier */
|
2003-05-27 19:44:49 -06:00
|
|
|
#define DRM_READMEMORYBARRIER() rmb()
|
2003-05-26 18:37:33 -06:00
|
|
|
/** Write memory barrier */
|
2003-05-27 19:44:49 -06:00
|
|
|
#define DRM_WRITEMEMORYBARRIER() wmb()
|
2003-05-26 18:37:33 -06:00
|
|
|
/** Read/write memory barrier */
|
2003-05-27 19:44:49 -06:00
|
|
|
#define DRM_MEMORYBARRIER() mb()
|
2003-07-29 04:11:48 -06:00
|
|
|
|
2003-07-25 04:50:39 -06:00
|
|
|
/** IRQ handler arguments and return type and values */
|
2006-12-19 00:03:20 -07:00
|
|
|
#define DRM_IRQ_ARGS int irq, void *arg
|
2003-07-29 04:11:48 -06:00
|
|
|
/** backwards compatibility with old irq return values */
|
2009-05-10 16:21:14 -06:00
|
|
|
#if !defined(IRQ_HANDLED) && LINUX_VERSION_CODE <= KERNEL_VERSION(2,6,29)
|
2003-07-29 04:11:48 -06:00
|
|
|
typedef void irqreturn_t;
|
2004-09-30 15:12:10 -06:00
|
|
|
#define IRQ_HANDLED /* nothing */
|
|
|
|
#define IRQ_NONE /* nothing */
|
2003-07-25 04:50:39 -06:00
|
|
|
#endif
|
|
|
|
|
2009-05-10 16:21:14 -06:00
|
|
|
#if LINUX_VERSION_CODE <= KERNEL_VERSION(2,6,25)
|
2009-06-03 13:26:43 -06:00
|
|
|
#define dev_set_name(dev, name, ...) ({ \
|
|
|
|
snprintf((dev)->bus_id, BUS_ID_SIZE, (name), __VA_ARGS__); \
|
|
|
|
0; })
|
2009-05-10 16:21:14 -06:00
|
|
|
#endif
|
|
|
|
|
2003-07-25 04:50:39 -06:00
|
|
|
/** AGP types */
|
2004-09-04 17:21:40 -06:00
|
|
|
#if __OS_HAS_AGP
|
2003-07-25 04:50:39 -06:00
|
|
|
#define DRM_AGP_MEM struct agp_memory
|
|
|
|
#define DRM_AGP_KERN struct agp_kern_info
|
2004-09-04 17:21:40 -06:00
|
|
|
#else
|
|
|
|
/* define some dummy types for non AGP supporting kernels */
|
|
|
|
struct no_agp_kern {
|
|
|
|
unsigned long aper_base;
|
|
|
|
unsigned long aper_size;
|
|
|
|
};
|
|
|
|
#define DRM_AGP_MEM int
|
|
|
|
#define DRM_AGP_KERN struct no_agp_kern
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if !(__OS_HAS_MTRR)
|
2004-09-30 15:12:10 -06:00
|
|
|
static __inline__ int mtrr_add(unsigned long base, unsigned long size,
|
|
|
|
unsigned int type, char increment)
|
2004-09-04 17:21:40 -06:00
|
|
|
{
|
|
|
|
return -ENODEV;
|
|
|
|
}
|
|
|
|
|
2004-09-30 15:12:10 -06:00
|
|
|
static __inline__ int mtrr_del(int reg, unsigned long base, unsigned long size)
|
2004-09-04 17:21:40 -06:00
|
|
|
{
|
|
|
|
return -ENODEV;
|
|
|
|
}
|
2004-09-30 15:12:10 -06:00
|
|
|
|
2004-09-04 17:21:40 -06:00
|
|
|
#define MTRR_TYPE_WRCOMB 1
|
|
|
|
#endif
|
2003-07-25 04:50:39 -06:00
|
|
|
|
2003-05-26 18:37:33 -06:00
|
|
|
/** Other copying of data to kernel space */
|
2002-07-05 02:31:11 -06:00
|
|
|
#define DRM_COPY_FROM_USER(arg1, arg2, arg3) \
|
|
|
|
copy_from_user(arg1, arg2, arg3)
|
2003-05-26 18:37:33 -06:00
|
|
|
/** Other copying of data from kernel space */
|
2002-07-05 02:31:11 -06:00
|
|
|
#define DRM_COPY_TO_USER(arg1, arg2, arg3) \
|
|
|
|
copy_to_user(arg1, arg2, arg3)
|
|
|
|
/* Macros for copyfrom user, but checking readability only once */
|
2007-11-04 19:42:22 -07:00
|
|
|
#define DRM_VERIFYAREA_READ( uaddr, size ) \
|
2005-03-25 02:47:36 -07:00
|
|
|
(access_ok( VERIFY_READ, uaddr, size) ? 0 : -EFAULT)
|
2007-11-04 19:42:22 -07:00
|
|
|
#define DRM_COPY_FROM_USER_UNCHECKED(arg1, arg2, arg3) \
|
2002-07-05 02:31:11 -06:00
|
|
|
__copy_from_user(arg1, arg2, arg3)
|
2003-11-03 17:46:05 -07:00
|
|
|
#define DRM_COPY_TO_USER_UNCHECKED(arg1, arg2, arg3) \
|
|
|
|
__copy_to_user(arg1, arg2, arg3)
|
2002-07-05 02:31:11 -06:00
|
|
|
#define DRM_GET_USER_UNCHECKED(val, uaddr) \
|
|
|
|
__get_user(val, uaddr)
|
|
|
|
|
2002-09-29 15:19:01 -06:00
|
|
|
#define DRM_HZ HZ
|
|
|
|
|
2003-04-07 19:30:43 -06:00
|
|
|
#define DRM_WAIT_ON( ret, queue, timeout, condition ) \
|
|
|
|
do { \
|
2005-04-18 18:31:16 -06:00
|
|
|
DECLARE_WAITQUEUE(entry, current); \
|
|
|
|
unsigned long end = jiffies + (timeout); \
|
|
|
|
add_wait_queue(&(queue), &entry); \
|
|
|
|
\
|
|
|
|
for (;;) { \
|
|
|
|
__set_current_state(TASK_INTERRUPTIBLE); \
|
|
|
|
if (condition) \
|
|
|
|
break; \
|
|
|
|
if (time_after_eq(jiffies, end)) { \
|
|
|
|
ret = -EBUSY; \
|
|
|
|
break; \
|
|
|
|
} \
|
|
|
|
schedule_timeout((HZ/100 > 1) ? HZ/100 : 1); \
|
|
|
|
if (signal_pending(current)) { \
|
|
|
|
ret = -EINTR; \
|
|
|
|
break; \
|
|
|
|
} \
|
|
|
|
} \
|
|
|
|
__set_current_state(TASK_RUNNING); \
|
|
|
|
remove_wait_queue(&(queue), &entry); \
|
2002-09-29 15:19:01 -06:00
|
|
|
} while (0)
|
|
|
|
|
|
|
|
#define DRM_WAKEUP( queue ) wake_up_interruptible( queue )
|
|
|
|
#define DRM_INIT_WAITQUEUE( queue ) init_waitqueue_head( queue )
|
2007-11-04 19:10:52 -07:00
|
|
|
|
|
|
|
/** Type for the OS's non-sleepable mutex lock */
|
|
|
|
#define DRM_SPINTYPE spinlock_t
|
|
|
|
/**
|
|
|
|
* Initialize the lock for use. name is an optional string describing the
|
|
|
|
* lock
|
|
|
|
*/
|
|
|
|
#define DRM_SPININIT(l,name) spin_lock_init(l)
|
|
|
|
#define DRM_SPINUNINIT(l)
|
|
|
|
#define DRM_SPINLOCK(l) spin_lock(l)
|
|
|
|
#define DRM_SPINUNLOCK(l) spin_unlock(l)
|
|
|
|
#define DRM_SPINLOCK_IRQSAVE(l, _flags) spin_lock_irqsave(l, _flags);
|
|
|
|
#define DRM_SPINUNLOCK_IRQRESTORE(l, _flags) spin_unlock_irqrestore(l, _flags);
|
|
|
|
#define DRM_SPINLOCK_ASSERT(l) do {} while (0)
|
2009-03-24 17:26:30 -06:00
|
|
|
|
|
|
|
#define DRM_PCI_DEV struct pci_dev
|
|
|
|
#define drm_pci_get_bsf(b, s, f) pci_get_bus_and_slot(b, PCI_DEVFN(s, f))
|
|
|
|
#define drm_pci_read_config_dword pci_read_config_dword
|