blob: 86ab99bc0ac50e560b5f31c55fd3f91231607244 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/**
2 * \file drm_os_linux.h
3 * OS abstraction macros.
4 */
5
Linus Torvalds1da177e2005-04-16 15:20:36 -07006#include <linux/interrupt.h> /* For task queue support */
7#include <linux/delay.h>
8
Dave Airlie87f0da52009-02-26 10:12:10 +10009#ifndef readq
Dave Airlie522b5cc2009-03-31 15:14:39 +110010static inline u64 readq(void __iomem *reg)
Dave Airlie87f0da52009-02-26 10:12:10 +100011{
12 return ((u64) readl(reg)) | (((u64) readl(reg + 4UL)) << 32);
13}
14
Dave Airlie522b5cc2009-03-31 15:14:39 +110015static inline void writeq(u64 val, void __iomem *reg)
Dave Airlie87f0da52009-02-26 10:12:10 +100016{
17 writel(val & 0xffffffff, reg);
18 writel(val >> 32, reg + 0x4UL);
19}
20#endif
21
Linus Torvalds1da177e2005-04-16 15:20:36 -070022/** Current process ID */
Pavel Emelyanovba25f9d2007-10-18 23:40:40 -070023#define DRM_CURRENTPID task_pid_nr(current)
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#define DRM_UDELAY(d) udelay(d)
25/** Read a byte from a MMIO region */
26#define DRM_READ8(map, offset) readb(((void __iomem *)(map)->handle) + (offset))
27/** Read a word from a MMIO region */
28#define DRM_READ16(map, offset) readw(((void __iomem *)(map)->handle) + (offset))
29/** Read a dword from a MMIO region */
30#define DRM_READ32(map, offset) readl(((void __iomem *)(map)->handle) + (offset))
31/** Write a byte into a MMIO region */
32#define DRM_WRITE8(map, offset, val) writeb(val, ((void __iomem *)(map)->handle) + (offset))
33/** Write a word into a MMIO region */
34#define DRM_WRITE16(map, offset, val) writew(val, ((void __iomem *)(map)->handle) + (offset))
35/** Write a dword into a MMIO region */
36#define DRM_WRITE32(map, offset, val) writel(val, ((void __iomem *)(map)->handle) + (offset))
Dave Airlie87f0da52009-02-26 10:12:10 +100037
38/** Read a qword from a MMIO region - be careful using these unless you really understand them */
39#define DRM_READ64(map, offset) readq(((void __iomem *)(map)->handle) + (offset))
40/** Write a qword into a MMIO region */
41#define DRM_WRITE64(map, offset, val) writeq(val, ((void __iomem *)(map)->handle) + (offset))
42
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#define DRM_WAIT_ON( ret, queue, timeout, condition ) \
44do { \
45 DECLARE_WAITQUEUE(entry, current); \
46 unsigned long end = jiffies + (timeout); \
47 add_wait_queue(&(queue), &entry); \
48 \
49 for (;;) { \
50 __set_current_state(TASK_INTERRUPTIBLE); \
51 if (condition) \
52 break; \
53 if (time_after_eq(jiffies, end)) { \
54 ret = -EBUSY; \
55 break; \
56 } \
57 schedule_timeout((HZ/100 > 1) ? HZ/100 : 1); \
58 if (signal_pending(current)) { \
59 ret = -EINTR; \
60 break; \
61 } \
62 } \
63 __set_current_state(TASK_RUNNING); \
64 remove_wait_queue(&(queue), &entry); \
65} while (0)