📄 drmp.h
字号:
/* drmP.h -- Private header for Direct Rendering Manager -*- linux-c -*- * Created: Mon Jan 4 10:05:05 1999 by faith@precisioninsight.com * * Copyright 1999 Precision Insight, Inc., Cedar Park, Texas. * Copyright 2000 VA Linux Systems, Inc., Sunnyvale, California. * All rights reserved. * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), * to deal in the Software without restriction, including without limitation * the rights to use, copy, modify, merge, publish, distribute, sublicense, * and/or sell copies of the Software, and to permit persons to whom the * Software is furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice (including the next * paragraph) shall be included in all copies or substantial portions of the * Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL * PRECISION INSIGHT AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * * Authors: * Rickard E. (Rik) Faith <faith@valinux.com> * */#ifndef _DRM_P_H_#define _DRM_P_H_#ifdef __KERNEL__#ifdef __alpha__/* add include of current.h so that "current" is defined * before static inline funcs in wait.h. Doing this so we * can build the DRM (part of PI DRI). 4/21/2000 S + B */#include <asm/current.h>#endif /* __alpha__ */#include <linux/config.h>#include <linux/module.h>#include <linux/kernel.h>#include <linux/miscdevice.h>#include <linux/major.h>#include <linux/fs.h>#include <linux/proc_fs.h>#include <linux/init.h>#include <linux/file.h>#include <linux/pci.h>#include <linux/wrapper.h>#include <linux/version.h>#include <linux/sched.h>#include <linux/smp_lock.h> /* For (un)lock_kernel */#include <linux/mm.h>#ifdef __alpha__#include <asm/pgtable.h> /* For pte_wrprotect */#endif#include <asm/io.h>#include <asm/mman.h>#include <asm/uaccess.h>#ifdef CONFIG_MTRR#include <asm/mtrr.h>#endif#if defined(CONFIG_AGP) || defined(CONFIG_AGP_MODULE)#include <linux/types.h>#include <linux/agp_backend.h>#endif#if LINUX_VERSION_CODE >= 0x020100 /* KERNEL_VERSION(2,1,0) */#include <linux/tqueue.h>#include <linux/poll.h>#endif#if LINUX_VERSION_CODE < 0x020400#include "compat-pre24.h"#endif#include "drm.h"#define DRM_DEBUG_CODE 2 /* Include debugging code (if > 1, then also include looping detection. */#define DRM_DMA_HISTOGRAM 1 /* Make histogram of DMA latency. */#define DRM_HASH_SIZE 16 /* Size of key hash table */#define DRM_KERNEL_CONTEXT 0 /* Change drm_resctx if changed */#define DRM_RESERVED_CONTEXTS 1 /* Change drm_resctx if changed */#define DRM_LOOPING_LIMIT 5000000#define DRM_BSZ 1024 /* Buffer size for /dev/drm? output */#define DRM_TIME_SLICE (HZ/20) /* Time slice for GLXContexts */#define DRM_LOCK_SLICE 1 /* Time slice for lock, in jiffies */#define DRM_FLAG_DEBUG 0x01#define DRM_FLAG_NOCTX 0x02#define DRM_MEM_DMA 0#define DRM_MEM_SAREA 1#define DRM_MEM_DRIVER 2#define DRM_MEM_MAGIC 3#define DRM_MEM_IOCTLS 4#define DRM_MEM_MAPS 5#define DRM_MEM_VMAS 6#define DRM_MEM_BUFS 7#define DRM_MEM_SEGS 8#define DRM_MEM_PAGES 9#define DRM_MEM_FILES 10#define DRM_MEM_QUEUES 11#define DRM_MEM_CMDS 12#define DRM_MEM_MAPPINGS 13#define DRM_MEM_BUFLISTS 14#define DRM_MEM_AGPLISTS 15#define DRM_MEM_TOTALAGP 16#define DRM_MEM_BOUNDAGP 17#define DRM_MEM_CTXBITMAP 18#define DRM_MAX_CTXBITMAP (PAGE_SIZE * 8) /* Backward compatibility section */ /* _PAGE_WT changed to _PAGE_PWT in 2.2.6 */#ifndef _PAGE_PWT#define _PAGE_PWT _PAGE_WT#endif /* Wait queue declarations changed in 2.3.1 */#ifndef DECLARE_WAITQUEUE#define DECLARE_WAITQUEUE(w,c) struct wait_queue w = { c, NULL }typedef struct wait_queue *wait_queue_head_t;#define init_waitqueue_head(q) *q = NULL;#endif /* _PAGE_4M changed to _PAGE_PSE in 2.3.23 */#ifndef _PAGE_PSE#define _PAGE_PSE _PAGE_4M#endif /* vm_offset changed to vm_pgoff in 2.3.25 */#if LINUX_VERSION_CODE < 0x020319#define VM_OFFSET(vma) ((vma)->vm_offset)#else#define VM_OFFSET(vma) ((vma)->vm_pgoff << PAGE_SHIFT)#endif /* *_nopage return values defined in 2.3.26 */#ifndef NOPAGE_SIGBUS#define NOPAGE_SIGBUS 0#endif#ifndef NOPAGE_OOM#define NOPAGE_OOM 0#endif /* module_init/module_exit added in 2.3.13 */#ifndef module_init#define module_init(x) int init_module(void) { return x(); }#endif#ifndef module_exit#define module_exit(x) void cleanup_module(void) { x(); }#endif /* Generic cmpxchg added in 2.3.x */#ifndef __HAVE_ARCH_CMPXCHG /* Include this here so that driver can be used with older kernels. */#if defined(__alpha__)static __inline__ unsigned long__cmpxchg_u32(volatile int *m, int old, int new){ unsigned long prev, cmp; __asm__ __volatile__( "1: ldl_l %0,%2\n" " cmpeq %0,%3,%1\n" " beq %1,2f\n" " mov %4,%1\n" " stl_c %1,%2\n" " beq %1,3f\n" "2: mb\n" ".subsection 2\n" "3: br 1b\n" ".previous" : "=&r"(prev), "=&r"(cmp), "=m"(*m) : "r"((long) old), "r"(new), "m"(*m)); return prev;}static __inline__ unsigned long__cmpxchg_u64(volatile long *m, unsigned long old, unsigned long new){ unsigned long prev, cmp; __asm__ __volatile__( "1: ldq_l %0,%2\n" " cmpeq %0,%3,%1\n" " beq %1,2f\n" " mov %4,%1\n" " stq_c %1,%2\n" " beq %1,3f\n" "2: mb\n" ".subsection 2\n" "3: br 1b\n" ".previous" : "=&r"(prev), "=&r"(cmp), "=m"(*m) : "r"((long) old), "r"(new), "m"(*m)); return prev;}static __inline__ unsigned long__cmpxchg(volatile void *ptr, unsigned long old, unsigned long new, int size){ switch (size) { case 4: return __cmpxchg_u32(ptr, old, new); case 8: return __cmpxchg_u64(ptr, old, new); } return old;}#define cmpxchg(ptr,o,n) \ ({ \ __typeof__(*(ptr)) _o_ = (o); \ __typeof__(*(ptr)) _n_ = (n); \ (__typeof__(*(ptr))) __cmpxchg((ptr), (unsigned long)_o_, \ (unsigned long)_n_, sizeof(*(ptr))); \ })#elif __i386__static inline unsigned long __cmpxchg(volatile void *ptr, unsigned long old, unsigned long new, int size){ unsigned long prev; switch (size) { case 1: __asm__ __volatile__(LOCK_PREFIX "cmpxchgb %b1,%2" : "=a"(prev) : "q"(new), "m"(*__xg(ptr)), "0"(old) : "memory"); return prev; case 2: __asm__ __volatile__(LOCK_PREFIX "cmpxchgw %w1,%2" : "=a"(prev) : "q"(new), "m"(*__xg(ptr)), "0"(old) : "memory"); return prev; case 4: __asm__ __volatile__(LOCK_PREFIX "cmpxchgl %1,%2" : "=a"(prev) : "q"(new), "m"(*__xg(ptr)), "0"(old) : "memory"); return prev; } return old;}#define cmpxchg(ptr,o,n) \ ((__typeof__(*(ptr)))__cmpxchg((ptr),(unsigned long)(o), \ (unsigned long)(n),sizeof(*(ptr))))#endif /* i386 & alpha */#endif /* Macros to make printk easier */#define DRM_ERROR(fmt, arg...) \ printk(KERN_ERR "[" DRM_NAME ":" __FUNCTION__ "] *ERROR* " fmt , ##arg)#define DRM_MEM_ERROR(area, fmt, arg...) \ printk(KERN_ERR "[" DRM_NAME ":" __FUNCTION__ ":%s] *ERROR* " fmt , \ drm_mem_stats[area].name , ##arg)#define DRM_INFO(fmt, arg...) printk(KERN_INFO "[" DRM_NAME "] " fmt , ##arg)#if DRM_DEBUG_CODE#define DRM_DEBUG(fmt, arg...) \ do { \ if (drm_flags&DRM_FLAG_DEBUG) \ printk(KERN_DEBUG \ "[" DRM_NAME ":" __FUNCTION__ "] " fmt , \ ##arg); \ } while (0)#else#define DRM_DEBUG(fmt, arg...) do { } while (0)#endif#define DRM_PROC_LIMIT (PAGE_SIZE-80)#define DRM_PROC_PRINT(fmt, arg...) \ len += sprintf(&buf[len], fmt , ##arg); \ if (len > DRM_PROC_LIMIT) return len;#define DRM_PROC_PRINT_RET(ret, fmt, arg...) \ len += sprintf(&buf[len], fmt , ##arg); \ if (len > DRM_PROC_LIMIT) { ret; return len; } /* Internal types and structures */#define DRM_ARRAY_SIZE(x) (sizeof(x)/sizeof(x[0]))#define DRM_MIN(a,b) ((a)<(b)?(a):(b))#define DRM_MAX(a,b) ((a)>(b)?(a):(b))#define DRM_LEFTCOUNT(x) (((x)->rp + (x)->count - (x)->wp) % ((x)->count + 1))#define DRM_BUFCOUNT(x) ((x)->count - DRM_LEFTCOUNT(x))#define DRM_WAITCOUNT(dev,idx) DRM_BUFCOUNT(&dev->queuelist[idx]->waitlist)typedef int drm_ioctl_t(struct inode *inode, struct file *filp, unsigned int cmd, unsigned long arg);typedef struct drm_ioctl_desc { drm_ioctl_t *func; int auth_needed; int root_only;} drm_ioctl_desc_t;typedef struct drm_devstate { pid_t owner; /* X server pid holding x_lock */ } drm_devstate_t;typedef struct drm_magic_entry { drm_magic_t magic; struct drm_file *priv; struct drm_magic_entry *next;} drm_magic_entry_t;typedef struct drm_magic_head { struct drm_magic_entry *head; struct drm_magic_entry *tail;} drm_magic_head_t;typedef struct drm_vma_entry { struct vm_area_struct *vma; struct drm_vma_entry *next; pid_t pid;} drm_vma_entry_t;typedef struct drm_buf { int idx; /* Index into master buflist */ int total; /* Buffer size */ int order; /* log-base-2(total) */ int used; /* Amount of buffer in use (for DMA) */ unsigned long offset; /* Byte offset (used internally) */ void *address; /* Address of buffer */ unsigned long bus_address; /* Bus address of buffer */ struct drm_buf *next; /* Kernel-only: used for free list */ __volatile__ int waiting; /* On kernel DMA queue */ __volatile__ int pending; /* On hardware DMA queue */ wait_queue_head_t dma_wait; /* Processes waiting */ pid_t pid; /* PID of holding process */ int context; /* Kernel queue for this buffer */ int while_locked;/* Dispatch this buffer while locked */ enum { DRM_LIST_NONE = 0, DRM_LIST_FREE = 1, DRM_LIST_WAIT = 2, DRM_LIST_PEND = 3, DRM_LIST_PRIO = 4, DRM_LIST_RECLAIM = 5 } list; /* Which list we're on */#if DRM_DMA_HISTOGRAM cycles_t time_queued; /* Queued to kernel DMA queue */ cycles_t time_dispatched; /* Dispatched to hardware */ cycles_t time_completed; /* Completed by hardware */ cycles_t time_freed; /* Back on freelist */#endif int dev_priv_size; /* Size of buffer private stoarge */ void *dev_private; /* Per-buffer private storage */} drm_buf_t;#if DRM_DMA_HISTOGRAM#define DRM_DMA_HISTOGRAM_SLOTS 9#define DRM_DMA_HISTOGRAM_INITIAL 10#define DRM_DMA_HISTOGRAM_NEXT(current) ((current)*10)typedef struct drm_histogram { atomic_t total; atomic_t queued_to_dispatched[DRM_DMA_HISTOGRAM_SLOTS]; atomic_t dispatched_to_completed[DRM_DMA_HISTOGRAM_SLOTS]; atomic_t completed_to_freed[DRM_DMA_HISTOGRAM_SLOTS]; atomic_t queued_to_completed[DRM_DMA_HISTOGRAM_SLOTS]; atomic_t queued_to_freed[DRM_DMA_HISTOGRAM_SLOTS]; atomic_t dma[DRM_DMA_HISTOGRAM_SLOTS]; atomic_t schedule[DRM_DMA_HISTOGRAM_SLOTS]; atomic_t ctx[DRM_DMA_HISTOGRAM_SLOTS]; atomic_t lacq[DRM_DMA_HISTOGRAM_SLOTS]; atomic_t lhld[DRM_DMA_HISTOGRAM_SLOTS];} drm_histogram_t;#endif /* bufs is one longer than it has to be */typedef struct drm_waitlist { int count; /* Number of possible buffers */ drm_buf_t **bufs; /* List of pointers to buffers */ drm_buf_t **rp; /* Read pointer */ drm_buf_t **wp; /* Write pointer */ drm_buf_t **end; /* End pointer */ spinlock_t read_lock; spinlock_t write_lock;} drm_waitlist_t;typedef struct drm_freelist { int initialized; /* Freelist in use */ atomic_t count; /* Number of free buffers */ drm_buf_t *next; /* End pointer */ wait_queue_head_t waiting; /* Processes waiting on free bufs */ int low_mark; /* Low water mark */ int high_mark; /* High water mark */ atomic_t wfh; /* If waiting for high mark */ spinlock_t lock;} drm_freelist_t;typedef struct drm_buf_entry { int buf_size; int buf_count; drm_buf_t *buflist; int seg_count; int page_order; unsigned long *seglist; drm_freelist_t freelist;} drm_buf_entry_t;typedef struct drm_hw_lock {
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -