drmP.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:29k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /* drmP.h -- Private header for Direct Rendering Manager -*- linux-c -*-
  2.  * Created: Mon Jan  4 10:05:05 1999 by faith@precisioninsight.com
  3.  *
  4.  * Copyright 1999 Precision Insight, Inc., Cedar Park, Texas.
  5.  * Copyright 2000 VA Linux Systems, Inc., Sunnyvale, California.
  6.  * All rights reserved.
  7.  *
  8.  * Permission is hereby granted, free of charge, to any person obtaining a
  9.  * copy of this software and associated documentation files (the "Software"),
  10.  * to deal in the Software without restriction, including without limitation
  11.  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
  12.  * and/or sell copies of the Software, and to permit persons to whom the
  13.  * Software is furnished to do so, subject to the following conditions:
  14.  * 
  15.  * The above copyright notice and this permission notice (including the next
  16.  * paragraph) shall be included in all copies or substantial portions of the
  17.  * Software.
  18.  * 
  19.  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  20.  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  21.  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
  22.  * PRECISION INSIGHT AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
  23.  * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
  24.  * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
  25.  * DEALINGS IN THE SOFTWARE.
  26.  * 
  27.  * Authors:
  28.  *    Rickard E. (Rik) Faith <faith@valinux.com>
  29.  * 
  30.  */
  31. #ifndef _DRM_P_H_
  32. #define _DRM_P_H_
  33. #ifdef __KERNEL__
  34. #ifdef __alpha__
  35. /* add include of current.h so that "current" is defined
  36.  * before static inline funcs in wait.h. Doing this so we
  37.  * can build the DRM (part of PI DRI). 4/21/2000 S + B */
  38. #include <asm/current.h>
  39. #endif /* __alpha__ */
  40. #include <linux/config.h>
  41. #include <linux/module.h>
  42. #include <linux/kernel.h>
  43. #include <linux/miscdevice.h>
  44. #include <linux/major.h>
  45. #include <linux/fs.h>
  46. #include <linux/proc_fs.h>
  47. #include <linux/init.h>
  48. #include <linux/file.h>
  49. #include <linux/pci.h>
  50. #include <linux/wrapper.h>
  51. #include <linux/version.h>
  52. #include <linux/sched.h>
  53. #include <linux/smp_lock.h> /* For (un)lock_kernel */
  54. #include <linux/mm.h>
  55. #ifdef __alpha__
  56. #include <asm/pgtable.h> /* For pte_wrprotect */
  57. #endif
  58. #include <asm/io.h>
  59. #include <asm/mman.h>
  60. #include <asm/uaccess.h>
  61. #ifdef CONFIG_MTRR
  62. #include <asm/mtrr.h>
  63. #endif
  64. #if defined(CONFIG_AGP) || defined(CONFIG_AGP_MODULE)
  65. #include <linux/types.h>
  66. #include <linux/agp_backend.h>
  67. #endif
  68. #if LINUX_VERSION_CODE >= 0x020100 /* KERNEL_VERSION(2,1,0) */
  69. #include <linux/tqueue.h>
  70. #include <linux/poll.h>
  71. #endif
  72. #if LINUX_VERSION_CODE < 0x020400
  73. #include "compat-pre24.h"
  74. #endif
  75. #include "drm.h"
  76. #define DRM_DEBUG_CODE 2   /* Include debugging code (if > 1, then
  77.      also include looping detection. */
  78. #define DRM_DMA_HISTOGRAM 1   /* Make histogram of DMA latency. */
  79. #define DRM_HASH_SIZE       16 /* Size of key hash table   */
  80. #define DRM_KERNEL_CONTEXT    0  /* Change drm_resctx if changed   */
  81. #define DRM_RESERVED_CONTEXTS 1  /* Change drm_resctx if changed   */
  82. #define DRM_LOOPING_LIMIT     5000000
  83. #define DRM_BSZ       1024 /* Buffer size for /dev/drm? output   */
  84. #define DRM_TIME_SLICE       (HZ/20)  /* Time slice for GLXContexts   */
  85. #define DRM_LOCK_SLICE       1 /* Time slice for lock, in jiffies   */
  86. #define DRM_FLAG_DEBUG   0x01
  87. #define DRM_FLAG_NOCTX   0x02
  88. #define DRM_MEM_DMA    0
  89. #define DRM_MEM_SAREA    1
  90. #define DRM_MEM_DRIVER    2
  91. #define DRM_MEM_MAGIC    3
  92. #define DRM_MEM_IOCTLS    4
  93. #define DRM_MEM_MAPS    5
  94. #define DRM_MEM_VMAS    6
  95. #define DRM_MEM_BUFS    7
  96. #define DRM_MEM_SEGS    8
  97. #define DRM_MEM_PAGES    9
  98. #define DRM_MEM_FILES   10
  99. #define DRM_MEM_QUEUES   11
  100. #define DRM_MEM_CMDS   12
  101. #define DRM_MEM_MAPPINGS  13
  102. #define DRM_MEM_BUFLISTS  14
  103. #define DRM_MEM_AGPLISTS  15
  104. #define DRM_MEM_TOTALAGP  16
  105. #define DRM_MEM_BOUNDAGP  17
  106. #define DRM_MEM_CTXBITMAP 18
  107. #define DRM_MAX_CTXBITMAP (PAGE_SIZE * 8)
  108. /* Backward compatibility section */
  109. /* _PAGE_WT changed to _PAGE_PWT in 2.2.6 */
  110. #ifndef _PAGE_PWT
  111. #define _PAGE_PWT _PAGE_WT
  112. #endif
  113. /* Wait queue declarations changed in 2.3.1 */
  114. #ifndef DECLARE_WAITQUEUE
  115. #define DECLARE_WAITQUEUE(w,c) struct wait_queue w = { c, NULL }
  116. typedef struct wait_queue *wait_queue_head_t;
  117. #define init_waitqueue_head(q) *q = NULL;
  118. #endif
  119. /* _PAGE_4M changed to _PAGE_PSE in 2.3.23 */
  120. #ifndef _PAGE_PSE
  121. #define _PAGE_PSE _PAGE_4M
  122. #endif
  123. /* vm_offset changed to vm_pgoff in 2.3.25 */
  124. #if LINUX_VERSION_CODE < 0x020319
  125. #define VM_OFFSET(vma) ((vma)->vm_offset)
  126. #else
  127. #define VM_OFFSET(vma) ((vma)->vm_pgoff << PAGE_SHIFT)
  128. #endif
  129. /* *_nopage return values defined in 2.3.26 */
  130. #ifndef NOPAGE_SIGBUS
  131. #define NOPAGE_SIGBUS 0
  132. #endif
  133. #ifndef NOPAGE_OOM
  134. #define NOPAGE_OOM 0
  135. #endif
  136. /* module_init/module_exit added in 2.3.13 */
  137. #ifndef module_init
  138. #define module_init(x)  int init_module(void) { return x(); }
  139. #endif
  140. #ifndef module_exit
  141. #define module_exit(x)  void cleanup_module(void) { x(); }
  142. #endif
  143. /* Generic cmpxchg added in 2.3.x */
  144. #ifndef __HAVE_ARCH_CMPXCHG
  145. /* Include this here so that driver can be
  146.                                    used with older kernels. */
  147. #if defined(__alpha__)
  148. static __inline__ unsigned long
  149. __cmpxchg_u32(volatile int *m, int old, int new)
  150. {
  151. unsigned long prev, cmp;
  152. __asm__ __volatile__(
  153. "1: ldl_l %0,%2n"
  154. " cmpeq %0,%3,%1n"
  155. " beq %1,2fn"
  156. " mov %4,%1n"
  157. " stl_c %1,%2n"
  158. " beq %1,3fn"
  159. "2: mbn"
  160. ".subsection 2n"
  161. "3: br 1bn"
  162. ".previous"
  163. : "=&r"(prev), "=&r"(cmp), "=m"(*m)
  164. : "r"((long) old), "r"(new), "m"(*m));
  165. return prev;
  166. }
  167. static __inline__ unsigned long
  168. __cmpxchg_u64(volatile long *m, unsigned long old, unsigned long new)
  169. {
  170. unsigned long prev, cmp;
  171. __asm__ __volatile__(
  172. "1: ldq_l %0,%2n"
  173. " cmpeq %0,%3,%1n"
  174. " beq %1,2fn"
  175. " mov %4,%1n"
  176. " stq_c %1,%2n"
  177. " beq %1,3fn"
  178. "2: mbn"
  179. ".subsection 2n"
  180. "3: br 1bn"
  181. ".previous"
  182. : "=&r"(prev), "=&r"(cmp), "=m"(*m)
  183. : "r"((long) old), "r"(new), "m"(*m));
  184. return prev;
  185. }
  186. static __inline__ unsigned long
  187. __cmpxchg(volatile void *ptr, unsigned long old, unsigned long new, int size)
  188. {
  189. switch (size) {
  190. case 4:
  191. return __cmpxchg_u32(ptr, old, new);
  192. case 8:
  193. return __cmpxchg_u64(ptr, old, new);
  194. }
  195. return old;
  196. }
  197. #define cmpxchg(ptr,o,n)  
  198.   ({  
  199.      __typeof__(*(ptr)) _o_ = (o);  
  200.      __typeof__(*(ptr)) _n_ = (n);  
  201.      (__typeof__(*(ptr))) __cmpxchg((ptr), (unsigned long)_o_,  
  202.     (unsigned long)_n_, sizeof(*(ptr))); 
  203.   })
  204. #elif __i386__
  205. static inline unsigned long __cmpxchg(volatile void *ptr, unsigned long old,
  206.       unsigned long new, int size)
  207. {
  208. unsigned long prev;
  209. switch (size) {
  210. case 1:
  211. __asm__ __volatile__(LOCK_PREFIX "cmpxchgb %b1,%2"
  212.      : "=a"(prev)
  213.      : "q"(new), "m"(*__xg(ptr)), "0"(old)
  214.      : "memory");
  215. return prev;
  216. case 2:
  217. __asm__ __volatile__(LOCK_PREFIX "cmpxchgw %w1,%2"
  218.      : "=a"(prev)
  219.      : "q"(new), "m"(*__xg(ptr)), "0"(old)
  220.      : "memory");
  221. return prev;
  222. case 4:
  223. __asm__ __volatile__(LOCK_PREFIX "cmpxchgl %1,%2"
  224.      : "=a"(prev)
  225.      : "q"(new), "m"(*__xg(ptr)), "0"(old)
  226.      : "memory");
  227. return prev;
  228. }
  229. return old;
  230. }
  231. #define cmpxchg(ptr,o,n)
  232.   ((__typeof__(*(ptr)))__cmpxchg((ptr),(unsigned long)(o),
  233.  (unsigned long)(n),sizeof(*(ptr))))
  234. #endif /* i386 & alpha */
  235. #endif
  236. /* Macros to make printk easier */
  237. #define DRM_ERROR(fmt, arg...) 
  238. printk(KERN_ERR "[" DRM_NAME ":" __FUNCTION__ "] *ERROR* " fmt , ##arg)
  239. #define DRM_MEM_ERROR(area, fmt, arg...) 
  240. printk(KERN_ERR "[" DRM_NAME ":" __FUNCTION__ ":%s] *ERROR* " fmt , 
  241.        drm_mem_stats[area].name , ##arg)
  242. #define DRM_INFO(fmt, arg...)  printk(KERN_INFO "[" DRM_NAME "] " fmt , ##arg)
  243. #if DRM_DEBUG_CODE
  244. #define DRM_DEBUG(fmt, arg...)   
  245. do {   
  246. if (drm_flags&DRM_FLAG_DEBUG)   
  247. printk(KERN_DEBUG   
  248.        "[" DRM_NAME ":" __FUNCTION__ "] " fmt ,   
  249.        ##arg);   
  250. } while (0)
  251. #else
  252. #define DRM_DEBUG(fmt, arg...)  do { } while (0)
  253. #endif
  254. #define DRM_PROC_LIMIT (PAGE_SIZE-80)
  255. #define DRM_PROC_PRINT(fmt, arg...)    
  256.    len += sprintf(&buf[len], fmt , ##arg); 
  257.    if (len > DRM_PROC_LIMIT) return len;
  258. #define DRM_PROC_PRINT_RET(ret, fmt, arg...)     
  259.    len += sprintf(&buf[len], fmt , ##arg);     
  260.    if (len > DRM_PROC_LIMIT) { ret; return len; }
  261. /* Internal types and structures */
  262. #define DRM_ARRAY_SIZE(x) (sizeof(x)/sizeof(x[0]))
  263. #define DRM_MIN(a,b) ((a)<(b)?(a):(b))
  264. #define DRM_MAX(a,b) ((a)>(b)?(a):(b))
  265. #define DRM_LEFTCOUNT(x) (((x)->rp + (x)->count - (x)->wp) % ((x)->count + 1))
  266. #define DRM_BUFCOUNT(x) ((x)->count - DRM_LEFTCOUNT(x))
  267. #define DRM_WAITCOUNT(dev,idx) DRM_BUFCOUNT(&dev->queuelist[idx]->waitlist)
  268. typedef int drm_ioctl_t(struct inode *inode, struct file *filp,
  269. unsigned int cmd, unsigned long arg);
  270. typedef struct drm_ioctl_desc {
  271. drm_ioctl_t      *func;
  272. int      auth_needed;
  273. int      root_only;
  274. } drm_ioctl_desc_t;
  275. typedef struct drm_devstate {
  276. pid_t   owner; /* X server pid holding x_lock */
  277. } drm_devstate_t;
  278. typedef struct drm_magic_entry {
  279. drm_magic_t        magic;
  280. struct drm_file        *priv;
  281. struct drm_magic_entry *next;
  282. } drm_magic_entry_t;
  283. typedef struct drm_magic_head {
  284. struct drm_magic_entry *head;
  285. struct drm_magic_entry *tail;
  286. } drm_magic_head_t;
  287. typedef struct drm_vma_entry {
  288. struct vm_area_struct *vma;
  289. struct drm_vma_entry  *next;
  290. pid_t       pid;
  291. } drm_vma_entry_t;
  292. typedef struct drm_buf {
  293. int   idx;        /* Index into master buflist      */
  294. int   total;       /* Buffer size      */
  295. int   order;       /* log-base-2(total)      */
  296. int   used;        /* Amount of buffer in use (for DMA)  */
  297. unsigned long   offset;      /* Byte offset (used internally)      */
  298. void   *address;    /* Address of buffer      */
  299. unsigned long   bus_address; /* Bus address of buffer      */
  300. struct drm_buf   *next;       /* Kernel-only: used for free list    */
  301. __volatile__ int  waiting;     /* On kernel DMA queue      */
  302. __volatile__ int  pending;     /* On hardware DMA queue      */
  303. wait_queue_head_t dma_wait;    /* Processes waiting      */
  304. pid_t   pid;        /* PID of holding process      */
  305. int   context;     /* Kernel queue for this buffer      */
  306. int   while_locked;/* Dispatch this buffer while locked  */
  307. enum {
  308. DRM_LIST_NONE  = 0,
  309. DRM_LIST_FREE  = 1,
  310. DRM_LIST_WAIT  = 2,
  311. DRM_LIST_PEND  = 3,
  312. DRM_LIST_PRIO  = 4,
  313. DRM_LIST_RECLAIM = 5
  314. }   list;        /* Which list we're on      */
  315. #if DRM_DMA_HISTOGRAM
  316. cycles_t   time_queued;    /* Queued to kernel DMA queue     */
  317. cycles_t   time_dispatched; /* Dispatched to hardware      */
  318. cycles_t   time_completed;  /* Completed by hardware      */
  319. cycles_t   time_freed;    /* Back on freelist      */
  320. #endif
  321. int   dev_priv_size; /* Size of buffer private stoarge   */
  322. void   *dev_private;  /* Per-buffer private storage       */
  323. } drm_buf_t;
  324. #if DRM_DMA_HISTOGRAM
  325. #define DRM_DMA_HISTOGRAM_SLOTS   9
  326. #define DRM_DMA_HISTOGRAM_INITIAL  10
  327. #define DRM_DMA_HISTOGRAM_NEXT(current)  ((current)*10)
  328. typedef struct drm_histogram {
  329. atomic_t   total;
  330. atomic_t   queued_to_dispatched[DRM_DMA_HISTOGRAM_SLOTS];
  331. atomic_t   dispatched_to_completed[DRM_DMA_HISTOGRAM_SLOTS];
  332. atomic_t   completed_to_freed[DRM_DMA_HISTOGRAM_SLOTS];
  333. atomic_t   queued_to_completed[DRM_DMA_HISTOGRAM_SLOTS];
  334. atomic_t   queued_to_freed[DRM_DMA_HISTOGRAM_SLOTS];
  335. atomic_t   dma[DRM_DMA_HISTOGRAM_SLOTS];
  336. atomic_t   schedule[DRM_DMA_HISTOGRAM_SLOTS];
  337. atomic_t   ctx[DRM_DMA_HISTOGRAM_SLOTS];
  338. atomic_t   lacq[DRM_DMA_HISTOGRAM_SLOTS];
  339. atomic_t   lhld[DRM_DMA_HISTOGRAM_SLOTS];
  340. } drm_histogram_t;
  341. #endif
  342. /* bufs is one longer than it has to be */
  343. typedef struct drm_waitlist {
  344. int   count; /* Number of possible buffers    */
  345. drm_buf_t   **bufs; /* List of pointers to buffers    */
  346. drm_buf_t   **rp; /* Read pointer    */
  347. drm_buf_t   **wp; /* Write pointer    */
  348. drm_buf_t   **end; /* End pointer    */
  349. spinlock_t   read_lock;
  350. spinlock_t   write_lock;
  351. } drm_waitlist_t;
  352. typedef struct drm_freelist {
  353. int   initialized; /* Freelist in use    */
  354. atomic_t   count;       /* Number of free buffers    */
  355. drm_buf_t   *next;       /* End pointer    */
  356. wait_queue_head_t waiting;     /* Processes waiting on free bufs   */
  357. int   low_mark;    /* Low water mark    */
  358. int   high_mark;   /* High water mark    */
  359. atomic_t   wfh;        /* If waiting for high mark    */
  360. spinlock_t        lock;
  361. } drm_freelist_t;
  362. typedef struct drm_buf_entry {
  363. int   buf_size;
  364. int   buf_count;
  365. drm_buf_t   *buflist;
  366. int   seg_count;
  367. int   page_order;
  368. unsigned long   *seglist;
  369. drm_freelist_t   freelist;
  370. } drm_buf_entry_t;
  371. typedef struct drm_hw_lock {
  372. __volatile__ unsigned int lock;
  373. char   padding[60]; /* Pad to cache line */
  374. } drm_hw_lock_t;
  375. typedef struct drm_file {
  376. int   authenticated;
  377. int   minor;
  378. pid_t   pid;
  379. uid_t   uid;
  380. drm_magic_t   magic;
  381. unsigned long   ioctl_count;
  382. struct drm_file   *next;
  383. struct drm_file   *prev;
  384. struct drm_device *dev;
  385. int    remove_auth_on_close;
  386. } drm_file_t;
  387. typedef struct drm_queue {
  388. atomic_t   use_count; /* Outstanding uses (+1)     */
  389. atomic_t   finalization; /* Finalization in progress     */
  390. atomic_t   block_count; /* Count of processes waiting     */
  391. atomic_t   block_read; /* Queue blocked for reads     */
  392. wait_queue_head_t read_queue; /* Processes waiting on block_read  */
  393. atomic_t   block_write; /* Queue blocked for writes     */
  394. wait_queue_head_t write_queue; /* Processes waiting on block_write */
  395. atomic_t   total_queued; /* Total queued statistic     */
  396. atomic_t   total_flushed;/* Total flushes statistic     */
  397. atomic_t   total_locks; /* Total locks statistics     */
  398. drm_ctx_flags_t   flags; /* Context preserving and 2D-only   */
  399. drm_waitlist_t   waitlist; /* Pending buffers     */
  400. wait_queue_head_t flush_queue; /* Processes waiting until flush    */
  401. } drm_queue_t;
  402. typedef struct drm_lock_data {
  403. drm_hw_lock_t   *hw_lock; /* Hardware lock    */
  404. pid_t   pid; /* PID of lock holder (0=kernel)   */
  405. wait_queue_head_t lock_queue; /* Queue of blocked processes    */
  406. unsigned long   lock_time; /* Time of last lock in jiffies    */
  407. } drm_lock_data_t;
  408. typedef struct drm_device_dma {
  409. /* Performance Counters */
  410. atomic_t   total_prio; /* Total DRM_DMA_PRIORITY    */
  411. atomic_t   total_bytes; /* Total bytes DMA'd    */
  412. atomic_t   total_dmas; /* Total DMA buffers dispatched    */
  413. atomic_t   total_missed_dma;  /* Missed drm_do_dma     */
  414. atomic_t   total_missed_lock; /* Missed lock in drm_do_dma   */
  415. atomic_t   total_missed_free; /* Missed drm_free_this_buffer */
  416. atomic_t   total_missed_sched;/* Missed drm_dma_schedule     */
  417. atomic_t   total_tried; /* Tried next_buffer     */
  418. atomic_t   total_hit; /* Sent next_buffer     */
  419. atomic_t   total_lost; /* Lost interrupt     */
  420. drm_buf_entry_t   bufs[DRM_MAX_ORDER+1];
  421. int   buf_count;
  422. drm_buf_t   **buflist; /* Vector of pointers info bufs    */
  423. int   seg_count; 
  424. int   page_count;
  425. unsigned long   *pagelist;
  426. unsigned long   byte_count;
  427. enum {
  428.    _DRM_DMA_USE_AGP = 0x01
  429. } flags;
  430. /* DMA support */
  431. drm_buf_t   *this_buffer; /* Buffer being sent    */
  432. drm_buf_t   *next_buffer; /* Selected buffer to send    */
  433. drm_queue_t   *next_queue; /* Queue from which buffer selected*/
  434. wait_queue_head_t waiting; /* Processes waiting on free bufs  */
  435. } drm_device_dma_t;
  436. #if defined(CONFIG_AGP) || defined(CONFIG_AGP_MODULE)
  437. typedef struct drm_agp_mem {
  438. unsigned long      handle;
  439. agp_memory         *memory;
  440. unsigned long      bound; /* address */
  441. int                pages;
  442. struct drm_agp_mem *prev;
  443. struct drm_agp_mem *next;
  444. } drm_agp_mem_t;
  445. typedef struct drm_agp_head {
  446. agp_kern_info      agp_info;
  447. const char         *chipset;
  448. drm_agp_mem_t      *memory;
  449. unsigned long      mode;
  450. int                enabled;
  451. int                acquired;
  452. unsigned long      base;
  453.     int     agp_mtrr;
  454. } drm_agp_head_t;
  455. #endif
  456. typedef struct drm_sigdata {
  457. int           context;
  458. drm_hw_lock_t *lock;
  459. } drm_sigdata_t;
  460. typedef struct drm_device {
  461. const char   *name; /* Simple driver name    */
  462. char   *unique; /* Unique identifier: e.g., busid  */
  463. int   unique_len; /* Length of unique field    */
  464. dev_t   device; /* Device number for mknod    */
  465. char   *devname; /* For /proc/interrupts    */
  466. int   blocked; /* Blocked due to VC switch?    */
  467. struct proc_dir_entry *root; /* Root for this device's entries  */
  468. /* Locks */
  469. spinlock_t   count_lock; /* For inuse, open_count, buf_use  */
  470. struct semaphore  struct_sem; /* For others    */
  471. /* Usage Counters */
  472. int   open_count; /* Outstanding files open    */
  473. atomic_t   ioctl_count; /* Outstanding IOCTLs pending    */
  474. atomic_t   vma_count; /* Outstanding vma areas open    */
  475. int   buf_use; /* Buffers in use -- cannot alloc  */
  476. atomic_t   buf_alloc; /* Buffer allocation in progress   */
  477. /* Performance Counters */
  478. atomic_t   total_open;
  479. atomic_t   total_close;
  480. atomic_t   total_ioctl;
  481. atomic_t   total_irq; /* Total interruptions    */
  482. atomic_t   total_ctx; /* Total context switches    */
  483. atomic_t   total_locks;
  484. atomic_t   total_unlocks;
  485. atomic_t   total_contends;
  486. atomic_t   total_sleeps;
  487. /* Authentication */
  488. drm_file_t   *file_first;
  489. drm_file_t   *file_last;
  490. drm_magic_head_t  magiclist[DRM_HASH_SIZE];
  491. /* Memory management */
  492. drm_map_t   **maplist; /* Vector of pointers to regions   */
  493. int   map_count; /* Number of mappable regions    */
  494. drm_vma_entry_t   *vmalist; /* List of vmas (for debugging)    */
  495. drm_lock_data_t   lock; /* Information on hardware lock    */
  496. /* DMA queues (contexts) */
  497. int   queue_count; /* Number of active DMA queues    */
  498. int   queue_reserved; /* Number of reserved DMA queues */
  499. int   queue_slots; /* Actual length of queuelist    */
  500. drm_queue_t   **queuelist; /* Vector of pointers to DMA queues */
  501. drm_device_dma_t  *dma; /* Optional pointer for DMA support */
  502. /* Context support */
  503. int   irq; /* Interrupt used by board    */
  504. __volatile__ long context_flag; /* Context swapping flag    */
  505. __volatile__ long interrupt_flag; /* Interruption handler flag    */
  506. __volatile__ long dma_flag; /* DMA dispatch flag    */
  507. struct timer_list timer; /* Timer for delaying ctx switch   */
  508. wait_queue_head_t context_wait; /* Processes waiting on ctx switch */
  509. int   last_checked; /* Last context checked for DMA    */
  510. int   last_context; /* Last current context    */
  511. unsigned long   last_switch; /* jiffies at last context switch  */
  512. struct tq_struct  tq;
  513. cycles_t   ctx_start;
  514. cycles_t   lck_start;
  515. #if DRM_DMA_HISTOGRAM
  516. drm_histogram_t   histo;
  517. #endif
  518. /* Callback to X server for context switch
  519.    and for heavy-handed reset. */
  520. char   buf[DRM_BSZ]; /* Output buffer    */
  521. char   *buf_rp; /* Read pointer    */
  522. char   *buf_wp; /* Write pointer    */
  523. char   *buf_end; /* End pointer    */
  524. struct fasync_struct *buf_async;/* Processes waiting for SIGIO    */
  525. wait_queue_head_t buf_readers; /* Processes waiting to read    */
  526. wait_queue_head_t buf_writers; /* Processes waiting to ctx switch */
  527. #if defined(CONFIG_AGP) || defined(CONFIG_AGP_MODULE)
  528. drm_agp_head_t    *agp;
  529. #endif
  530. unsigned long     *ctx_bitmap;
  531. void   *dev_private;
  532. drm_sigdata_t     sigdata; /* For block_all_signals */
  533. sigset_t          sigmask;
  534. } drm_device_t;
  535. /* Internal function definitions */
  536. /* Misc. support (init.c) */
  537. extern int      drm_flags;
  538. extern void      drm_parse_options(char *s);
  539. extern int           drm_cpu_valid(void);
  540. /* Device support (fops.c) */
  541. extern int      drm_open_helper(struct inode *inode, struct file *filp,
  542.      drm_device_t *dev);
  543. extern int      drm_flush(struct file *filp);
  544. extern int      drm_release(struct inode *inode, struct file *filp);
  545. extern int      drm_fasync(int fd, struct file *filp, int on);
  546. extern ssize_t      drm_read(struct file *filp, char *buf, size_t count,
  547.       loff_t *off);
  548. extern int      drm_write_string(drm_device_t *dev, const char *s);
  549. extern unsigned int  drm_poll(struct file *filp, struct poll_table_struct *wait);
  550. /* Mapping support (vm.c) */
  551. #if LINUX_VERSION_CODE < 0x020317
  552. extern unsigned long drm_vm_nopage(struct vm_area_struct *vma,
  553.    unsigned long address,
  554.    int write_access);
  555. extern unsigned long drm_vm_shm_nopage(struct vm_area_struct *vma,
  556.        unsigned long address,
  557.        int write_access);
  558. extern unsigned long drm_vm_shm_nopage_lock(struct vm_area_struct *vma,
  559.     unsigned long address,
  560.     int write_access);
  561. extern unsigned long drm_vm_dma_nopage(struct vm_area_struct *vma,
  562.        unsigned long address,
  563.        int write_access);
  564. #else
  565. /* Return type changed in 2.3.23 */
  566. extern struct page *drm_vm_nopage(struct vm_area_struct *vma,
  567.   unsigned long address,
  568.   int write_access);
  569. extern struct page *drm_vm_shm_nopage(struct vm_area_struct *vma,
  570.       unsigned long address,
  571.       int write_access);
  572. extern struct page *drm_vm_shm_nopage_lock(struct vm_area_struct *vma,
  573.    unsigned long address,
  574.    int write_access);
  575. extern struct page *drm_vm_dma_nopage(struct vm_area_struct *vma,
  576.       unsigned long address,
  577.       int write_access);
  578. #endif
  579. extern void      drm_vm_open(struct vm_area_struct *vma);
  580. extern void      drm_vm_close(struct vm_area_struct *vma);
  581. extern int      drm_mmap_dma(struct file *filp,
  582.   struct vm_area_struct *vma);
  583. extern int      drm_mmap(struct file *filp, struct vm_area_struct *vma);
  584. /* Proc support (proc.c) */
  585. extern int      drm_proc_init(drm_device_t *dev);
  586. extern int      drm_proc_cleanup(void);
  587. /* Memory management support (memory.c) */
  588. extern void      drm_mem_init(void);
  589. extern int      drm_mem_info(char *buf, char **start, off_t offset,
  590.   int len, int *eof, void *data);
  591. extern void      *drm_alloc(size_t size, int area);
  592. extern void      *drm_realloc(void *oldpt, size_t oldsize, size_t size,
  593.   int area);
  594. extern char      *drm_strdup(const char *s, int area);
  595. extern void      drm_strfree(const char *s, int area);
  596. extern void      drm_free(void *pt, size_t size, int area);
  597. extern unsigned long drm_alloc_pages(int order, int area);
  598. extern void      drm_free_pages(unsigned long address, int order,
  599.     int area);
  600. extern void      *drm_ioremap(unsigned long offset, unsigned long size);
  601. extern void      drm_ioremapfree(void *pt, unsigned long size);
  602. #if defined(CONFIG_AGP) || defined(CONFIG_AGP_MODULE)
  603. extern agp_memory    *drm_alloc_agp(int pages, u32 type);
  604. extern int           drm_free_agp(agp_memory *handle, int pages);
  605. extern int           drm_bind_agp(agp_memory *handle, unsigned int start);
  606. extern int           drm_unbind_agp(agp_memory *handle);
  607. #endif
  608. /* Buffer management support (bufs.c) */
  609. extern int      drm_order(unsigned long size);
  610. extern int      drm_addmap(struct inode *inode, struct file *filp,
  611. unsigned int cmd, unsigned long arg);
  612. extern int      drm_addbufs(struct inode *inode, struct file *filp,
  613.  unsigned int cmd, unsigned long arg);
  614. extern int      drm_infobufs(struct inode *inode, struct file *filp,
  615.   unsigned int cmd, unsigned long arg);
  616. extern int      drm_markbufs(struct inode *inode, struct file *filp,
  617.   unsigned int cmd, unsigned long arg);
  618. extern int      drm_freebufs(struct inode *inode, struct file *filp,
  619.   unsigned int cmd, unsigned long arg);
  620. extern int      drm_mapbufs(struct inode *inode, struct file *filp,
  621.  unsigned int cmd, unsigned long arg);
  622. /* Buffer list management support (lists.c) */
  623. extern int      drm_waitlist_create(drm_waitlist_t *bl, int count);
  624. extern int      drm_waitlist_destroy(drm_waitlist_t *bl);
  625. extern int      drm_waitlist_put(drm_waitlist_t *bl, drm_buf_t *buf);
  626. extern drm_buf_t     *drm_waitlist_get(drm_waitlist_t *bl);
  627. extern int      drm_freelist_create(drm_freelist_t *bl, int count);
  628. extern int      drm_freelist_destroy(drm_freelist_t *bl);
  629. extern int      drm_freelist_put(drm_device_t *dev, drm_freelist_t *bl,
  630.       drm_buf_t *buf);
  631. extern drm_buf_t     *drm_freelist_get(drm_freelist_t *bl, int block);
  632. /* DMA support (gen_dma.c) */
  633. extern void      drm_dma_setup(drm_device_t *dev);
  634. extern void      drm_dma_takedown(drm_device_t *dev);
  635. extern void      drm_free_buffer(drm_device_t *dev, drm_buf_t *buf);
  636. extern void      drm_reclaim_buffers(drm_device_t *dev, pid_t pid);
  637. extern int      drm_context_switch(drm_device_t *dev, int old, int new);
  638. extern int      drm_context_switch_complete(drm_device_t *dev, int new);
  639. extern void      drm_clear_next_buffer(drm_device_t *dev);
  640. extern int      drm_select_queue(drm_device_t *dev,
  641.       void (*wrapper)(unsigned long));
  642. extern int      drm_dma_enqueue(drm_device_t *dev, drm_dma_t *dma);
  643. extern int      drm_dma_get_buffers(drm_device_t *dev, drm_dma_t *dma);
  644. #if DRM_DMA_HISTOGRAM
  645. extern int      drm_histogram_slot(unsigned long count);
  646. extern void      drm_histogram_compute(drm_device_t *dev, drm_buf_t *buf);
  647. #endif
  648. /* Misc. IOCTL support (ioctl.c) */
  649. extern int      drm_irq_busid(struct inode *inode, struct file *filp,
  650.    unsigned int cmd, unsigned long arg);
  651. extern int      drm_getunique(struct inode *inode, struct file *filp,
  652.    unsigned int cmd, unsigned long arg);
  653. extern int      drm_setunique(struct inode *inode, struct file *filp,
  654.    unsigned int cmd, unsigned long arg);
  655. /* Context IOCTL support (context.c) */
  656. extern int      drm_resctx(struct inode *inode, struct file *filp,
  657. unsigned int cmd, unsigned long arg);
  658. extern int      drm_addctx(struct inode *inode, struct file *filp,
  659. unsigned int cmd, unsigned long arg);
  660. extern int      drm_modctx(struct inode *inode, struct file *filp,
  661. unsigned int cmd, unsigned long arg);
  662. extern int      drm_getctx(struct inode *inode, struct file *filp,
  663. unsigned int cmd, unsigned long arg);
  664. extern int      drm_switchctx(struct inode *inode, struct file *filp,
  665.    unsigned int cmd, unsigned long arg);
  666. extern int      drm_newctx(struct inode *inode, struct file *filp,
  667. unsigned int cmd, unsigned long arg);
  668. extern int      drm_rmctx(struct inode *inode, struct file *filp,
  669.        unsigned int cmd, unsigned long arg);
  670. /* Drawable IOCTL support (drawable.c) */
  671. extern int      drm_adddraw(struct inode *inode, struct file *filp,
  672.  unsigned int cmd, unsigned long arg);
  673. extern int      drm_rmdraw(struct inode *inode, struct file *filp,
  674. unsigned int cmd, unsigned long arg);
  675. /* Authentication IOCTL support (auth.c) */
  676. extern int      drm_add_magic(drm_device_t *dev, drm_file_t *priv,
  677.    drm_magic_t magic);
  678. extern int      drm_remove_magic(drm_device_t *dev, drm_magic_t magic);
  679. extern int      drm_getmagic(struct inode *inode, struct file *filp,
  680.   unsigned int cmd, unsigned long arg);
  681. extern int      drm_authmagic(struct inode *inode, struct file *filp,
  682.    unsigned int cmd, unsigned long arg);
  683. /* Locking IOCTL support (lock.c) */
  684. extern int      drm_block(struct inode *inode, struct file *filp,
  685.        unsigned int cmd, unsigned long arg);
  686. extern int      drm_unblock(struct inode *inode, struct file *filp,
  687.  unsigned int cmd, unsigned long arg);
  688. extern int      drm_lock_take(__volatile__ unsigned int *lock,
  689.    unsigned int context);
  690. extern int      drm_lock_transfer(drm_device_t *dev,
  691.        __volatile__ unsigned int *lock,
  692.        unsigned int context);
  693. extern int      drm_lock_free(drm_device_t *dev,
  694.    __volatile__ unsigned int *lock,
  695.    unsigned int context);
  696. extern int      drm_finish(struct inode *inode, struct file *filp,
  697. unsigned int cmd, unsigned long arg);
  698. extern int      drm_flush_unblock(drm_device_t *dev, int context,
  699.        drm_lock_flags_t flags);
  700. extern int      drm_flush_block_and_flush(drm_device_t *dev, int context,
  701.        drm_lock_flags_t flags);
  702. extern int           drm_notifier(void *priv);
  703. /* Context Bitmap support (ctxbitmap.c) */
  704. extern int      drm_ctxbitmap_init(drm_device_t *dev);
  705. extern void      drm_ctxbitmap_cleanup(drm_device_t *dev);
  706. extern int      drm_ctxbitmap_next(drm_device_t *dev);
  707. extern void      drm_ctxbitmap_free(drm_device_t *dev, int ctx_handle);
  708. #if defined(CONFIG_AGP) || defined(CONFIG_AGP_MODULE)
  709. /* AGP/GART support (agpsupport.c) */
  710. extern drm_agp_head_t *drm_agp_init(void);
  711. extern void           drm_agp_uninit(void);
  712. extern int            drm_agp_acquire(struct inode *inode, struct file *filp,
  713.       unsigned int cmd, unsigned long arg);
  714. extern void           _drm_agp_release(void);
  715. extern int            drm_agp_release(struct inode *inode, struct file *filp,
  716.       unsigned int cmd, unsigned long arg);
  717. extern int            drm_agp_enable(struct inode *inode, struct file *filp,
  718.      unsigned int cmd, unsigned long arg);
  719. extern int            drm_agp_info(struct inode *inode, struct file *filp,
  720.    unsigned int cmd, unsigned long arg);
  721. extern int            drm_agp_alloc(struct inode *inode, struct file *filp,
  722.     unsigned int cmd, unsigned long arg);
  723. extern int            drm_agp_free(struct inode *inode, struct file *filp,
  724.    unsigned int cmd, unsigned long arg);
  725. extern int            drm_agp_unbind(struct inode *inode, struct file *filp,
  726.      unsigned int cmd, unsigned long arg);
  727. extern int            drm_agp_bind(struct inode *inode, struct file *filp,
  728.    unsigned int cmd, unsigned long arg);
  729. extern agp_memory     *drm_agp_allocate_memory(size_t pages, u32 type);
  730. extern int            drm_agp_free_memory(agp_memory *handle);
  731. extern int            drm_agp_bind_memory(agp_memory *handle, off_t start);
  732. extern int            drm_agp_unbind_memory(agp_memory *handle);
  733. #endif
  734. #endif
  735. #endif