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

嵌入式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.  * VA LINUX SYSTEMS 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
  25.  * OTHER DEALINGS IN THE SOFTWARE.
  26.  *
  27.  * Authors:
  28.  *    Rickard E. (Rik) Faith <faith@valinux.com>
  29.  *    Gareth Hughes <gareth@valinux.com>
  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/fs.h>
  45. #include <linux/proc_fs.h>
  46. #include <linux/init.h>
  47. #include <linux/file.h>
  48. #include <linux/pci.h>
  49. #include <linux/wrapper.h>
  50. #include <linux/version.h>
  51. #include <linux/sched.h>
  52. #include <linux/smp_lock.h> /* For (un)lock_kernel */
  53. #include <linux/mm.h>
  54. #if defined(__alpha__) || defined(__powerpc__)
  55. #include <asm/pgtable.h> /* For pte_wrprotect */
  56. #endif
  57. #include <asm/io.h>
  58. #include <asm/mman.h>
  59. #include <asm/uaccess.h>
  60. #ifdef CONFIG_MTRR
  61. #include <asm/mtrr.h>
  62. #endif
  63. #if defined(CONFIG_AGP) || defined(CONFIG_AGP_MODULE)
  64. #include <linux/types.h>
  65. #include <linux/agp_backend.h>
  66. #endif
  67. #if LINUX_VERSION_CODE >= 0x020100 /* KERNEL_VERSION(2,1,0) */
  68. #include <linux/tqueue.h>
  69. #include <linux/poll.h>
  70. #endif
  71. #if LINUX_VERSION_CODE < 0x020400
  72. #include "compat-pre24.h"
  73. #endif
  74. #include <asm/pgalloc.h>
  75. #include "drm.h"
  76. /* page_to_bus for earlier kernels, not optimal in all cases */
  77. #ifndef page_to_bus
  78. #define page_to_bus(page) ((unsigned int)(virt_to_bus(page_address(page))))
  79. #endif
  80. /* We just use virt_to_bus for pci_map_single on older kernels */
  81. #if LINUX_VERSION_CODE < 0x020400
  82. #define pci_map_single(hwdev, ptr, size, direction) virt_to_bus(ptr)
  83. #define pci_unmap_single(hwdev, dma_addr, size, direction)
  84. #endif
  85. /* DRM template customization defaults
  86.  */
  87. #ifndef __HAVE_AGP
  88. #define __HAVE_AGP 0
  89. #endif
  90. #ifndef __HAVE_MTRR
  91. #define __HAVE_MTRR 0
  92. #endif
  93. #ifndef __HAVE_CTX_BITMAP
  94. #define __HAVE_CTX_BITMAP 0
  95. #endif
  96. #ifndef __HAVE_DMA
  97. #define __HAVE_DMA 0
  98. #endif
  99. #ifndef __HAVE_DMA_IRQ
  100. #define __HAVE_DMA_IRQ 0
  101. #endif
  102. #ifndef __HAVE_DMA_WAITLIST
  103. #define __HAVE_DMA_WAITLIST 0
  104. #endif
  105. #ifndef __HAVE_DMA_FREELIST
  106. #define __HAVE_DMA_FREELIST 0
  107. #endif
  108. #ifndef __HAVE_DMA_HISTOGRAM
  109. #define __HAVE_DMA_HISTOGRAM 0
  110. #endif
  111. #define __REALLY_HAVE_AGP (__HAVE_AGP && (defined(CONFIG_AGP) || 
  112. defined(CONFIG_AGP_MODULE)))
  113. #define __REALLY_HAVE_MTRR (__HAVE_MTRR && defined(CONFIG_MTRR))
  114. /* Begin the DRM...
  115.  */
  116. #define DRM_DEBUG_CODE 2   /* Include debugging code (if > 1, then
  117.      also include looping detection. */
  118. #define DRM_HASH_SIZE       16 /* Size of key hash table   */
  119. #define DRM_KERNEL_CONTEXT    0  /* Change drm_resctx if changed   */
  120. #define DRM_RESERVED_CONTEXTS 1  /* Change drm_resctx if changed   */
  121. #define DRM_LOOPING_LIMIT     5000000
  122. #define DRM_BSZ       1024 /* Buffer size for /dev/drm? output   */
  123. #define DRM_TIME_SLICE       (HZ/20)  /* Time slice for GLXContexts   */
  124. #define DRM_LOCK_SLICE       1 /* Time slice for lock, in jiffies   */
  125. #define DRM_FLAG_DEBUG   0x01
  126. #define DRM_FLAG_NOCTX   0x02
  127. #define DRM_MEM_DMA    0
  128. #define DRM_MEM_SAREA    1
  129. #define DRM_MEM_DRIVER    2
  130. #define DRM_MEM_MAGIC    3
  131. #define DRM_MEM_IOCTLS    4
  132. #define DRM_MEM_MAPS    5
  133. #define DRM_MEM_VMAS    6
  134. #define DRM_MEM_BUFS    7
  135. #define DRM_MEM_SEGS    8
  136. #define DRM_MEM_PAGES    9
  137. #define DRM_MEM_FILES   10
  138. #define DRM_MEM_QUEUES   11
  139. #define DRM_MEM_CMDS   12
  140. #define DRM_MEM_MAPPINGS  13
  141. #define DRM_MEM_BUFLISTS  14
  142. #define DRM_MEM_AGPLISTS  15
  143. #define DRM_MEM_TOTALAGP  16
  144. #define DRM_MEM_BOUNDAGP  17
  145. #define DRM_MEM_CTXBITMAP 18
  146. #define DRM_MEM_STUB      19
  147. #define DRM_MEM_SGLISTS   20
  148. #define DRM_MAX_CTXBITMAP (PAGE_SIZE * 8)
  149. /* Backward compatibility section */
  150. /* _PAGE_WT changed to _PAGE_PWT in 2.2.6 */
  151. #ifndef _PAGE_PWT
  152. #define _PAGE_PWT _PAGE_WT
  153. #endif
  154. /* Wait queue declarations changed in 2.3.1 */
  155. #ifndef DECLARE_WAITQUEUE
  156. #define DECLARE_WAITQUEUE(w,c) struct wait_queue w = { c, NULL }
  157. typedef struct wait_queue *wait_queue_head_t;
  158. #define init_waitqueue_head(q) *q = NULL;
  159. #endif
  160. /* _PAGE_4M changed to _PAGE_PSE in 2.3.23 */
  161. #ifndef _PAGE_PSE
  162. #define _PAGE_PSE _PAGE_4M
  163. #endif
  164. /* vm_offset changed to vm_pgoff in 2.3.25 */
  165. #if LINUX_VERSION_CODE < 0x020319
  166. #define VM_OFFSET(vma) ((vma)->vm_offset)
  167. #else
  168. #define VM_OFFSET(vma) ((vma)->vm_pgoff << PAGE_SHIFT)
  169. #endif
  170. /* *_nopage return values defined in 2.3.26 */
  171. #ifndef NOPAGE_SIGBUS
  172. #define NOPAGE_SIGBUS 0
  173. #endif
  174. #ifndef NOPAGE_OOM
  175. #define NOPAGE_OOM 0
  176. #endif
  177. /* module_init/module_exit added in 2.3.13 */
  178. #ifndef module_init
  179. #define module_init(x)  int init_module(void) { return x(); }
  180. #endif
  181. #ifndef module_exit
  182. #define module_exit(x)  void cleanup_module(void) { x(); }
  183. #endif
  184. /* Generic cmpxchg added in 2.3.x */
  185. #ifndef __HAVE_ARCH_CMPXCHG
  186. /* Include this here so that driver can be
  187.                                    used with older kernels. */
  188. #if defined(__alpha__)
  189. static __inline__ unsigned long
  190. __cmpxchg_u32(volatile int *m, int old, int new)
  191. {
  192. unsigned long prev, cmp;
  193. __asm__ __volatile__(
  194. "1: ldl_l %0,%5n"
  195. " cmpeq %0,%3,%1n"
  196. " beq %1,2fn"
  197. " mov %4,%1n"
  198. " stl_c %1,%2n"
  199. " beq %1,3fn"
  200. "2: mbn"
  201. ".subsection 2n"
  202. "3: br 1bn"
  203. ".previous"
  204. : "=&r"(prev), "=&r"(cmp), "=m"(*m)
  205. : "r"((long) old), "r"(new), "m"(*m)
  206. : "memory" );
  207. return prev;
  208. }
  209. static __inline__ unsigned long
  210. __cmpxchg_u64(volatile long *m, unsigned long old, unsigned long new)
  211. {
  212. unsigned long prev, cmp;
  213. __asm__ __volatile__(
  214. "1: ldq_l %0,%5n"
  215. " cmpeq %0,%3,%1n"
  216. " beq %1,2fn"
  217. " mov %4,%1n"
  218. " stq_c %1,%2n"
  219. " beq %1,3fn"
  220. "2: mbn"
  221. ".subsection 2n"
  222. "3: br 1bn"
  223. ".previous"
  224. : "=&r"(prev), "=&r"(cmp), "=m"(*m)
  225. : "r"((long) old), "r"(new), "m"(*m)
  226. : "memory" );
  227. return prev;
  228. }
  229. static __inline__ unsigned long
  230. __cmpxchg(volatile void *ptr, unsigned long old, unsigned long new, int size)
  231. {
  232. switch (size) {
  233. case 4:
  234. return __cmpxchg_u32(ptr, old, new);
  235. case 8:
  236. return __cmpxchg_u64(ptr, old, new);
  237. }
  238. return old;
  239. }
  240. #define cmpxchg(ptr,o,n)  
  241.   ({  
  242.      __typeof__(*(ptr)) _o_ = (o);  
  243.      __typeof__(*(ptr)) _n_ = (n);  
  244.      (__typeof__(*(ptr))) __cmpxchg((ptr), (unsigned long)_o_,  
  245.     (unsigned long)_n_, sizeof(*(ptr))); 
  246.   })
  247. #elif __i386__
  248. static inline unsigned long __cmpxchg(volatile void *ptr, unsigned long old,
  249.       unsigned long new, int size)
  250. {
  251. unsigned long prev;
  252. switch (size) {
  253. case 1:
  254. __asm__ __volatile__(LOCK_PREFIX "cmpxchgb %b1,%2"
  255.      : "=a"(prev)
  256.      : "q"(new), "m"(*__xg(ptr)), "0"(old)
  257.      : "memory");
  258. return prev;
  259. case 2:
  260. __asm__ __volatile__(LOCK_PREFIX "cmpxchgw %w1,%2"
  261.      : "=a"(prev)
  262.      : "q"(new), "m"(*__xg(ptr)), "0"(old)
  263.      : "memory");
  264. return prev;
  265. case 4:
  266. __asm__ __volatile__(LOCK_PREFIX "cmpxchgl %1,%2"
  267.      : "=a"(prev)
  268.      : "q"(new), "m"(*__xg(ptr)), "0"(old)
  269.      : "memory");
  270. return prev;
  271. }
  272. return old;
  273. }
  274. #elif defined(__powerpc__)
  275. extern void __cmpxchg_called_with_bad_pointer(void);
  276. static inline unsigned long __cmpxchg(volatile void *ptr, unsigned long old,
  277.                                       unsigned long new, int size)
  278. {
  279. unsigned long prev;
  280. switch (size) {
  281. case 4:
  282. __asm__ __volatile__(
  283. "sync;"
  284. "0:    lwarx %0,0,%1 ;"
  285. "      cmpl 0,%0,%3;"
  286. "      bne 1f;"
  287. "      stwcx. %2,0,%1;"
  288. "      bne- 0b;"
  289. "1:    "
  290. "sync;"
  291. : "=&r"(prev)
  292. : "r"(ptr), "r"(new), "r"(old)
  293. : "cr0", "memory");
  294. return prev;
  295. }
  296. __cmpxchg_called_with_bad_pointer();
  297. return old;
  298. }
  299. #endif /* i386, powerpc & alpha */
  300. #ifndef __alpha__
  301. #define cmpxchg(ptr,o,n)
  302.   ((__typeof__(*(ptr)))__cmpxchg((ptr),(unsigned long)(o),
  303.  (unsigned long)(n),sizeof(*(ptr))))
  304. #endif
  305. #endif /* !__HAVE_ARCH_CMPXCHG */
  306. /* Macros to make printk easier */
  307. #define DRM_ERROR(fmt, arg...) 
  308. printk(KERN_ERR "[" DRM_NAME ":" __FUNCTION__ "] *ERROR* " fmt , ##arg)
  309. #define DRM_MEM_ERROR(area, fmt, arg...) 
  310. printk(KERN_ERR "[" DRM_NAME ":" __FUNCTION__ ":%s] *ERROR* " fmt , 
  311.        DRM(mem_stats)[area].name , ##arg)
  312. #define DRM_INFO(fmt, arg...)  printk(KERN_INFO "[" DRM_NAME "] " fmt , ##arg)
  313. #if DRM_DEBUG_CODE
  314. #define DRM_DEBUG(fmt, arg...)
  315. do {
  316. if ( DRM(flags) & DRM_FLAG_DEBUG )
  317. printk(KERN_DEBUG
  318.        "[" DRM_NAME ":" __FUNCTION__ "] " fmt ,
  319.        ##arg);
  320. } while (0)
  321. #else
  322. #define DRM_DEBUG(fmt, arg...)  do { } while (0)
  323. #endif
  324. #define DRM_PROC_LIMIT (PAGE_SIZE-80)
  325. #define DRM_PROC_PRINT(fmt, arg...)
  326.    len += sprintf(&buf[len], fmt , ##arg);
  327.    if (len > DRM_PROC_LIMIT) { *eof = 1; return len - offset; }
  328. #define DRM_PROC_PRINT_RET(ret, fmt, arg...)
  329.    len += sprintf(&buf[len], fmt , ##arg);
  330.    if (len > DRM_PROC_LIMIT) { ret; *eof = 1; return len - offset; }
  331. /* Mapping helper macros */
  332. #define DRM_IOREMAP(map)
  333. (map)->handle = DRM(ioremap)( (map)->offset, (map)->size )
  334. #define DRM_IOREMAPFREE(map)
  335. do {
  336. if ( (map)->handle && (map)->size )
  337. DRM(ioremapfree)( (map)->handle, (map)->size );
  338. } while (0)
  339. #define DRM_FIND_MAP(_map, _o)
  340. do {
  341. struct list_head *_list;
  342. list_for_each( _list, &dev->maplist->head ) {
  343. drm_map_list_t *_entry = (drm_map_list_t *)_list;
  344. if ( _entry->map &&
  345.      _entry->map->offset == (_o) ) {
  346. (_map) = _entry->map;
  347. break;
  348.   }
  349. }
  350. } while(0)
  351. /* Internal types and structures */
  352. #define DRM_ARRAY_SIZE(x) (sizeof(x)/sizeof(x[0]))
  353. #define DRM_MIN(a,b) ((a)<(b)?(a):(b))
  354. #define DRM_MAX(a,b) ((a)>(b)?(a):(b))
  355. #define DRM_LEFTCOUNT(x) (((x)->rp + (x)->count - (x)->wp) % ((x)->count + 1))
  356. #define DRM_BUFCOUNT(x) ((x)->count - DRM_LEFTCOUNT(x))
  357. #define DRM_WAITCOUNT(dev,idx) DRM_BUFCOUNT(&dev->queuelist[idx]->waitlist)
  358. #define DRM_GET_PRIV_SAREA(_dev, _ctx, _map) do {
  359. (_map) = (_dev)->context_sareas[_ctx];
  360. } while(0)
  361. typedef int drm_ioctl_t( struct inode *inode, struct file *filp,
  362.  unsigned int cmd, unsigned long arg );
  363. typedef struct drm_pci_list {
  364. u16 vendor;
  365. u16 device;
  366. } drm_pci_list_t;
  367. typedef struct drm_ioctl_desc {
  368. drm_ioctl_t      *func;
  369. int      auth_needed;
  370. int      root_only;
  371. } drm_ioctl_desc_t;
  372. typedef struct drm_devstate {
  373. pid_t   owner; /* X server pid holding x_lock */
  374. } drm_devstate_t;
  375. typedef struct drm_magic_entry {
  376. drm_magic_t        magic;
  377. struct drm_file        *priv;
  378. struct drm_magic_entry *next;
  379. } drm_magic_entry_t;
  380. typedef struct drm_magic_head {
  381. struct drm_magic_entry *head;
  382. struct drm_magic_entry *tail;
  383. } drm_magic_head_t;
  384. typedef struct drm_vma_entry {
  385. struct vm_area_struct *vma;
  386. struct drm_vma_entry  *next;
  387. pid_t       pid;
  388. } drm_vma_entry_t;
  389. typedef struct drm_buf {
  390. int   idx;        /* Index into master buflist      */
  391. int   total;       /* Buffer size      */
  392. int   order;       /* log-base-2(total)      */
  393. int   used;        /* Amount of buffer in use (for DMA)  */
  394. unsigned long   offset;      /* Byte offset (used internally)      */
  395. void   *address;    /* Address of buffer      */
  396. unsigned long   bus_address; /* Bus address of buffer      */
  397. struct drm_buf   *next;       /* Kernel-only: used for free list    */
  398. __volatile__ int  waiting;     /* On kernel DMA queue      */
  399. __volatile__ int  pending;     /* On hardware DMA queue      */
  400. wait_queue_head_t dma_wait;    /* Processes waiting      */
  401. pid_t   pid;        /* PID of holding process      */
  402. int   context;     /* Kernel queue for this buffer      */
  403. int   while_locked;/* Dispatch this buffer while locked  */
  404. enum {
  405. DRM_LIST_NONE  = 0,
  406. DRM_LIST_FREE  = 1,
  407. DRM_LIST_WAIT  = 2,
  408. DRM_LIST_PEND  = 3,
  409. DRM_LIST_PRIO  = 4,
  410. DRM_LIST_RECLAIM = 5
  411. }   list;        /* Which list we're on      */
  412. #if DRM_DMA_HISTOGRAM
  413. cycles_t   time_queued;    /* Queued to kernel DMA queue     */
  414. cycles_t   time_dispatched; /* Dispatched to hardware      */
  415. cycles_t   time_completed;  /* Completed by hardware      */
  416. cycles_t   time_freed;    /* Back on freelist      */
  417. #endif
  418. int   dev_priv_size; /* Size of buffer private stoarge   */
  419. void   *dev_private;  /* Per-buffer private storage       */
  420. } drm_buf_t;
  421. #if DRM_DMA_HISTOGRAM
  422. #define DRM_DMA_HISTOGRAM_SLOTS   9
  423. #define DRM_DMA_HISTOGRAM_INITIAL  10
  424. #define DRM_DMA_HISTOGRAM_NEXT(current)  ((current)*10)
  425. typedef struct drm_histogram {
  426. atomic_t   total;
  427. atomic_t   queued_to_dispatched[DRM_DMA_HISTOGRAM_SLOTS];
  428. atomic_t   dispatched_to_completed[DRM_DMA_HISTOGRAM_SLOTS];
  429. atomic_t   completed_to_freed[DRM_DMA_HISTOGRAM_SLOTS];
  430. atomic_t   queued_to_completed[DRM_DMA_HISTOGRAM_SLOTS];
  431. atomic_t   queued_to_freed[DRM_DMA_HISTOGRAM_SLOTS];
  432. atomic_t   dma[DRM_DMA_HISTOGRAM_SLOTS];
  433. atomic_t   schedule[DRM_DMA_HISTOGRAM_SLOTS];
  434. atomic_t   ctx[DRM_DMA_HISTOGRAM_SLOTS];
  435. atomic_t   lacq[DRM_DMA_HISTOGRAM_SLOTS];
  436. atomic_t   lhld[DRM_DMA_HISTOGRAM_SLOTS];
  437. } drm_histogram_t;
  438. #endif
  439. /* bufs is one longer than it has to be */
  440. typedef struct drm_waitlist {
  441. int   count; /* Number of possible buffers    */
  442. drm_buf_t   **bufs; /* List of pointers to buffers    */
  443. drm_buf_t   **rp; /* Read pointer    */
  444. drm_buf_t   **wp; /* Write pointer    */
  445. drm_buf_t   **end; /* End pointer    */
  446. spinlock_t   read_lock;
  447. spinlock_t   write_lock;
  448. } drm_waitlist_t;
  449. typedef struct drm_freelist {
  450. int   initialized; /* Freelist in use    */
  451. atomic_t   count;       /* Number of free buffers    */
  452. drm_buf_t   *next;       /* End pointer    */
  453. wait_queue_head_t waiting;     /* Processes waiting on free bufs   */
  454. int   low_mark;    /* Low water mark    */
  455. int   high_mark;   /* High water mark    */
  456. atomic_t   wfh;        /* If waiting for high mark    */
  457. spinlock_t        lock;
  458. } drm_freelist_t;
  459. typedef struct drm_buf_entry {
  460. int   buf_size;
  461. int   buf_count;
  462. drm_buf_t   *buflist;
  463. int   seg_count;
  464. int   page_order;
  465. unsigned long   *seglist;
  466. drm_freelist_t   freelist;
  467. } drm_buf_entry_t;
  468. typedef struct drm_hw_lock {
  469. __volatile__ unsigned int lock;
  470. char   padding[60]; /* Pad to cache line */
  471. } drm_hw_lock_t;
  472. typedef struct drm_file {
  473. int   authenticated;
  474. int   minor;
  475. pid_t   pid;
  476. uid_t   uid;
  477. drm_magic_t   magic;
  478. unsigned long   ioctl_count;
  479. struct drm_file   *next;
  480. struct drm_file   *prev;
  481. struct drm_device *dev;
  482. int    remove_auth_on_close;
  483. } drm_file_t;
  484. typedef struct drm_queue {
  485. atomic_t   use_count; /* Outstanding uses (+1)     */
  486. atomic_t   finalization; /* Finalization in progress     */
  487. atomic_t   block_count; /* Count of processes waiting     */
  488. atomic_t   block_read; /* Queue blocked for reads     */
  489. wait_queue_head_t read_queue; /* Processes waiting on block_read  */
  490. atomic_t   block_write; /* Queue blocked for writes     */
  491. wait_queue_head_t write_queue; /* Processes waiting on block_write */
  492. #if 1
  493. atomic_t   total_queued; /* Total queued statistic     */
  494. atomic_t   total_flushed;/* Total flushes statistic     */
  495. atomic_t   total_locks; /* Total locks statistics     */
  496. #endif
  497. drm_ctx_flags_t   flags; /* Context preserving and 2D-only   */
  498. drm_waitlist_t   waitlist; /* Pending buffers     */
  499. wait_queue_head_t flush_queue; /* Processes waiting until flush    */
  500. } drm_queue_t;
  501. typedef struct drm_lock_data {
  502. drm_hw_lock_t   *hw_lock; /* Hardware lock    */
  503. pid_t   pid; /* PID of lock holder (0=kernel)   */
  504. wait_queue_head_t lock_queue; /* Queue of blocked processes    */
  505. unsigned long   lock_time; /* Time of last lock in jiffies    */
  506. } drm_lock_data_t;
  507. typedef struct drm_device_dma {
  508. #if 0
  509. /* Performance Counters */
  510. atomic_t   total_prio; /* Total DRM_DMA_PRIORITY    */
  511. atomic_t   total_bytes; /* Total bytes DMA'd    */
  512. atomic_t   total_dmas; /* Total DMA buffers dispatched    */
  513. atomic_t   total_missed_dma;  /* Missed drm_do_dma     */
  514. atomic_t   total_missed_lock; /* Missed lock in drm_do_dma   */
  515. atomic_t   total_missed_free; /* Missed drm_free_this_buffer */
  516. atomic_t   total_missed_sched;/* Missed drm_dma_schedule     */
  517. atomic_t   total_tried; /* Tried next_buffer     */
  518. atomic_t   total_hit; /* Sent next_buffer     */
  519. atomic_t   total_lost; /* Lost interrupt     */
  520. #endif
  521. drm_buf_entry_t   bufs[DRM_MAX_ORDER+1];
  522. int   buf_count;
  523. drm_buf_t   **buflist; /* Vector of pointers info bufs    */
  524. int   seg_count;
  525. int   page_count;
  526. unsigned long   *pagelist;
  527. unsigned long   byte_count;
  528. enum {
  529. _DRM_DMA_USE_AGP = 0x01,
  530. _DRM_DMA_USE_SG  = 0x02
  531. } flags;
  532. /* DMA support */
  533. drm_buf_t   *this_buffer; /* Buffer being sent    */
  534. drm_buf_t   *next_buffer; /* Selected buffer to send    */
  535. drm_queue_t   *next_queue; /* Queue from which buffer selected*/
  536. wait_queue_head_t waiting; /* Processes waiting on free bufs  */
  537. } drm_device_dma_t;
  538. #if __REALLY_HAVE_AGP
  539. typedef struct drm_agp_mem {
  540. unsigned long      handle;
  541. agp_memory         *memory;
  542. unsigned long      bound; /* address */
  543. int                pages;
  544. struct drm_agp_mem *prev;
  545. struct drm_agp_mem *next;
  546. } drm_agp_mem_t;
  547. typedef struct drm_agp_head {
  548. agp_kern_info      agp_info;
  549. const char         *chipset;
  550. drm_agp_mem_t      *memory;
  551. unsigned long      mode;
  552. int                enabled;
  553. int                acquired;
  554. unsigned long      base;
  555.     int     agp_mtrr;
  556. int    cant_use_aperture;
  557. unsigned long    page_mask;
  558. } drm_agp_head_t;
  559. #endif
  560. typedef struct drm_sg_mem {
  561. unsigned long   handle;
  562. void            *virtual;
  563. int             pages;
  564. struct page     **pagelist;
  565. dma_addr_t *busaddr;
  566. } drm_sg_mem_t;
  567. typedef struct drm_sigdata {
  568. int           context;
  569. drm_hw_lock_t *lock;
  570. } drm_sigdata_t;
  571. typedef struct drm_map_list {
  572. struct list_head head;
  573. drm_map_t *map;
  574. } drm_map_list_t;
  575. typedef struct drm_device {
  576. const char   *name; /* Simple driver name    */
  577. char   *unique; /* Unique identifier: e.g., busid  */
  578. int   unique_len; /* Length of unique field    */
  579. dev_t   device; /* Device number for mknod    */
  580. char   *devname; /* For /proc/interrupts    */
  581. int   blocked; /* Blocked due to VC switch?    */
  582. struct proc_dir_entry *root; /* Root for this device's entries  */
  583. /* Locks */
  584. spinlock_t   count_lock; /* For inuse, open_count, buf_use  */
  585. struct semaphore  struct_sem; /* For others    */
  586. /* Usage Counters */
  587. int   open_count; /* Outstanding files open    */
  588. atomic_t   ioctl_count; /* Outstanding IOCTLs pending    */
  589. atomic_t   vma_count; /* Outstanding vma areas open    */
  590. int   buf_use; /* Buffers in use -- cannot alloc  */
  591. atomic_t   buf_alloc; /* Buffer allocation in progress   */
  592. /* Performance counters */
  593. unsigned long     counters;
  594. drm_stat_type_t   types[15];
  595. atomic_t          counts[15];
  596. /* Authentication */
  597. drm_file_t   *file_first;
  598. drm_file_t   *file_last;
  599. drm_magic_head_t  magiclist[DRM_HASH_SIZE];
  600. /* Memory management */
  601. drm_map_list_t   *maplist; /* Linked list of regions    */
  602. int   map_count; /* Number of mappable regions    */
  603. drm_map_t   **context_sareas;
  604. int   max_context;
  605. drm_vma_entry_t   *vmalist; /* List of vmas (for debugging)    */
  606. drm_lock_data_t   lock; /* Information on hardware lock    */
  607. /* DMA queues (contexts) */
  608. int   queue_count; /* Number of active DMA queues    */
  609. int   queue_reserved; /* Number of reserved DMA queues */
  610. int   queue_slots; /* Actual length of queuelist    */
  611. drm_queue_t   **queuelist; /* Vector of pointers to DMA queues */
  612. drm_device_dma_t  *dma; /* Optional pointer for DMA support */
  613. /* Context support */
  614. int   irq; /* Interrupt used by board    */
  615. __volatile__ long context_flag; /* Context swapping flag    */
  616. __volatile__ long interrupt_flag; /* Interruption handler flag    */
  617. __volatile__ long dma_flag; /* DMA dispatch flag    */
  618. struct timer_list timer; /* Timer for delaying ctx switch   */
  619. wait_queue_head_t context_wait; /* Processes waiting on ctx switch */
  620. int   last_checked; /* Last context checked for DMA    */
  621. int   last_context; /* Last current context    */
  622. unsigned long   last_switch; /* jiffies at last context switch  */
  623. struct tq_struct  tq;
  624. cycles_t   ctx_start;
  625. cycles_t   lck_start;
  626. #if __HAVE_DMA_HISTOGRAM
  627. drm_histogram_t   histo;
  628. #endif
  629. /* Callback to X server for context switch
  630.    and for heavy-handed reset. */
  631. char   buf[DRM_BSZ]; /* Output buffer    */
  632. char   *buf_rp; /* Read pointer    */
  633. char   *buf_wp; /* Write pointer    */
  634. char   *buf_end; /* End pointer    */
  635. struct fasync_struct *buf_async;/* Processes waiting for SIGIO    */
  636. wait_queue_head_t buf_readers; /* Processes waiting to read    */
  637. wait_queue_head_t buf_writers; /* Processes waiting to ctx switch */
  638. #if __REALLY_HAVE_AGP
  639. drm_agp_head_t    *agp;
  640. #endif
  641. struct pci_dev *pdev;
  642. #ifdef __alpha__
  643. #if LINUX_VERSION_CODE < 0x020403
  644. struct pci_controler *hose;
  645. #else
  646. struct pci_controller *hose;
  647. #endif
  648. #endif
  649. drm_sg_mem_t      *sg;  /* Scatter gather memory */
  650. unsigned long     *ctx_bitmap;
  651. void   *dev_private;
  652. drm_sigdata_t     sigdata; /* For block_all_signals */
  653. sigset_t          sigmask;
  654. } drm_device_t;
  655. /* ================================================================
  656.  * Internal function definitions
  657.  */
  658. /* Misc. support (drm_init.h) */
  659. extern int      DRM(flags);
  660. extern void      DRM(parse_options)( char *s );
  661. extern int           DRM(cpu_valid)( void );
  662. /* Driver support (drm_drv.h) */
  663. extern int           DRM(version)(struct inode *inode, struct file *filp,
  664.   unsigned int cmd, unsigned long arg);
  665. extern int           DRM(open)(struct inode *inode, struct file *filp);
  666. extern int           DRM(release)(struct inode *inode, struct file *filp);
  667. extern int           DRM(ioctl)(struct inode *inode, struct file *filp,
  668. unsigned int cmd, unsigned long arg);
  669. extern int           DRM(lock)(struct inode *inode, struct file *filp,
  670.        unsigned int cmd, unsigned long arg);
  671. extern int           DRM(unlock)(struct inode *inode, struct file *filp,
  672.  unsigned int cmd, unsigned long arg);
  673. /* Device support (drm_fops.h) */
  674. extern int      DRM(open_helper)(struct inode *inode, struct file *filp,
  675.       drm_device_t *dev);
  676. extern int      DRM(flush)(struct file *filp);
  677. extern int      DRM(release_fuck)(struct inode *inode, struct file *filp);
  678. extern int      DRM(fasync)(int fd, struct file *filp, int on);
  679. extern ssize_t      DRM(read)(struct file *filp, char *buf, size_t count,
  680.        loff_t *off);
  681. extern int      DRM(write_string)(drm_device_t *dev, const char *s);
  682. extern unsigned int  DRM(poll)(struct file *filp,
  683.        struct poll_table_struct *wait);
  684. /* Mapping support (drm_vm.h) */
  685. #if LINUX_VERSION_CODE < 0x020317
  686. extern unsigned long DRM(vm_nopage)(struct vm_area_struct *vma,
  687.     unsigned long address,
  688.     int unused);
  689. extern unsigned long DRM(vm_shm_nopage)(struct vm_area_struct *vma,
  690. unsigned long address,
  691. int unused);
  692. extern unsigned long DRM(vm_dma_nopage)(struct vm_area_struct *vma,
  693. unsigned long address,
  694. int unused);
  695. extern unsigned long DRM(vm_sg_nopage)(struct vm_area_struct *vma,
  696.        unsigned long address,
  697.        int unused);
  698. #else
  699. /* Return type changed in 2.3.23 */
  700. extern struct page *DRM(vm_nopage)(struct vm_area_struct *vma,
  701.    unsigned long address,
  702.    int unused);
  703. extern struct page *DRM(vm_shm_nopage)(struct vm_area_struct *vma,
  704.        unsigned long address,
  705.        int unused);
  706. extern struct page *DRM(vm_dma_nopage)(struct vm_area_struct *vma,
  707.        unsigned long address,
  708.        int unused);
  709. extern struct page *DRM(vm_sg_nopage)(struct vm_area_struct *vma,
  710.       unsigned long address,
  711.       int unused);
  712. #endif
  713. extern void      DRM(vm_open)(struct vm_area_struct *vma);
  714. extern void      DRM(vm_close)(struct vm_area_struct *vma);
  715. extern void      DRM(vm_shm_close)(struct vm_area_struct *vma);
  716. extern int      DRM(mmap_dma)(struct file *filp,
  717.    struct vm_area_struct *vma);
  718. extern int      DRM(mmap)(struct file *filp, struct vm_area_struct *vma);
  719. /* Memory management support (drm_memory.h) */
  720. extern void      DRM(mem_init)(void);
  721. extern int      DRM(mem_info)(char *buf, char **start, off_t offset,
  722.    int request, int *eof, void *data);
  723. extern void      *DRM(alloc)(size_t size, int area);
  724. extern void      *DRM(realloc)(void *oldpt, size_t oldsize, size_t size,
  725.    int area);
  726. extern char      *DRM(strdup)(const char *s, int area);
  727. extern void      DRM(strfree)(const char *s, int area);
  728. extern void      DRM(free)(void *pt, size_t size, int area);
  729. extern unsigned long DRM(alloc_pages)(int order, int area);
  730. extern void      DRM(free_pages)(unsigned long address, int order,
  731.      int area);
  732. extern void      *DRM(ioremap)(unsigned long offset, unsigned long size);
  733. extern void      DRM(ioremapfree)(void *pt, unsigned long size);
  734. #if __REALLY_HAVE_AGP
  735. extern agp_memory    *DRM(alloc_agp)(int pages, u32 type);
  736. extern int           DRM(free_agp)(agp_memory *handle, int pages);
  737. extern int           DRM(bind_agp)(agp_memory *handle, unsigned int start);
  738. extern int           DRM(unbind_agp)(agp_memory *handle);
  739. #endif
  740. /* Misc. IOCTL support (drm_ioctl.h) */
  741. extern int      DRM(irq_busid)(struct inode *inode, struct file *filp,
  742.     unsigned int cmd, unsigned long arg);
  743. extern int      DRM(getunique)(struct inode *inode, struct file *filp,
  744.     unsigned int cmd, unsigned long arg);
  745. extern int      DRM(setunique)(struct inode *inode, struct file *filp,
  746.     unsigned int cmd, unsigned long arg);
  747. extern int      DRM(getmap)(struct inode *inode, struct file *filp,
  748.  unsigned int cmd, unsigned long arg);
  749. extern int      DRM(getclient)(struct inode *inode, struct file *filp,
  750.     unsigned int cmd, unsigned long arg);
  751. extern int      DRM(getstats)(struct inode *inode, struct file *filp,
  752.    unsigned int cmd, unsigned long arg);
  753. /* Context IOCTL support (drm_context.h) */
  754. extern int      DRM(resctx)( struct inode *inode, struct file *filp,
  755.   unsigned int cmd, unsigned long arg );
  756. extern int      DRM(addctx)( struct inode *inode, struct file *filp,
  757.   unsigned int cmd, unsigned long arg );
  758. extern int      DRM(modctx)( struct inode *inode, struct file *filp,
  759.   unsigned int cmd, unsigned long arg );
  760. extern int      DRM(getctx)( struct inode *inode, struct file *filp,
  761.   unsigned int cmd, unsigned long arg );
  762. extern int      DRM(switchctx)( struct inode *inode, struct file *filp,
  763.      unsigned int cmd, unsigned long arg );
  764. extern int      DRM(newctx)( struct inode *inode, struct file *filp,
  765.   unsigned int cmd, unsigned long arg );
  766. extern int      DRM(rmctx)( struct inode *inode, struct file *filp,
  767.  unsigned int cmd, unsigned long arg );
  768. extern int      DRM(context_switch)(drm_device_t *dev, int old, int new);
  769. extern int      DRM(context_switch_complete)(drm_device_t *dev, int new);
  770. #if __HAVE_CTX_BITMAP
  771. extern int      DRM(ctxbitmap_init)( drm_device_t *dev );
  772. extern void      DRM(ctxbitmap_cleanup)( drm_device_t *dev );
  773. #endif
  774. extern int      DRM(setsareactx)( struct inode *inode, struct file *filp,
  775.        unsigned int cmd, unsigned long arg );
  776. extern int      DRM(getsareactx)( struct inode *inode, struct file *filp,
  777.        unsigned int cmd, unsigned long arg );
  778. /* Drawable IOCTL support (drm_drawable.h) */
  779. extern int      DRM(adddraw)(struct inode *inode, struct file *filp,
  780.   unsigned int cmd, unsigned long arg);
  781. extern int      DRM(rmdraw)(struct inode *inode, struct file *filp,
  782.  unsigned int cmd, unsigned long arg);
  783. /* Authentication IOCTL support (drm_auth.h) */
  784. extern int      DRM(add_magic)(drm_device_t *dev, drm_file_t *priv,
  785.     drm_magic_t magic);
  786. extern int      DRM(remove_magic)(drm_device_t *dev, drm_magic_t magic);
  787. extern int      DRM(getmagic)(struct inode *inode, struct file *filp,
  788.    unsigned int cmd, unsigned long arg);
  789. extern int      DRM(authmagic)(struct inode *inode, struct file *filp,
  790.     unsigned int cmd, unsigned long arg);
  791. /* Locking IOCTL support (drm_lock.h) */
  792. extern int      DRM(block)(struct inode *inode, struct file *filp,
  793. unsigned int cmd, unsigned long arg);
  794. extern int      DRM(unblock)(struct inode *inode, struct file *filp,
  795.   unsigned int cmd, unsigned long arg);
  796. extern int      DRM(lock_take)(__volatile__ unsigned int *lock,
  797.     unsigned int context);
  798. extern int      DRM(lock_transfer)(drm_device_t *dev,
  799. __volatile__ unsigned int *lock,
  800. unsigned int context);
  801. extern int      DRM(lock_free)(drm_device_t *dev,
  802.     __volatile__ unsigned int *lock,
  803.     unsigned int context);
  804. extern int      DRM(finish)(struct inode *inode, struct file *filp,
  805.  unsigned int cmd, unsigned long arg);
  806. extern int      DRM(flush_unblock)(drm_device_t *dev, int context,
  807. drm_lock_flags_t flags);
  808. extern int      DRM(flush_block_and_flush)(drm_device_t *dev, int context,
  809. drm_lock_flags_t flags);
  810. extern int           DRM(notifier)(void *priv);
  811. /* Buffer management support (drm_bufs.h) */
  812. extern int      DRM(order)( unsigned long size );
  813. extern int      DRM(addmap)( struct inode *inode, struct file *filp,
  814.   unsigned int cmd, unsigned long arg );
  815. extern int      DRM(rmmap)( struct inode *inode, struct file *filp,
  816.  unsigned int cmd, unsigned long arg );
  817. #if __HAVE_DMA
  818. extern int      DRM(addbufs)( struct inode *inode, struct file *filp,
  819.    unsigned int cmd, unsigned long arg );
  820. extern int      DRM(infobufs)( struct inode *inode, struct file *filp,
  821.     unsigned int cmd, unsigned long arg );
  822. extern int      DRM(markbufs)( struct inode *inode, struct file *filp,
  823.     unsigned int cmd, unsigned long arg );
  824. extern int      DRM(freebufs)( struct inode *inode, struct file *filp,
  825.     unsigned int cmd, unsigned long arg );
  826. extern int      DRM(mapbufs)( struct inode *inode, struct file *filp,
  827.    unsigned int cmd, unsigned long arg );
  828. /* DMA support (drm_dma.h) */
  829. extern int      DRM(dma_setup)(drm_device_t *dev);
  830. extern void      DRM(dma_takedown)(drm_device_t *dev);
  831. extern void      DRM(free_buffer)(drm_device_t *dev, drm_buf_t *buf);
  832. extern void      DRM(reclaim_buffers)(drm_device_t *dev, pid_t pid);
  833. #if __HAVE_OLD_DMA
  834. /* GH: This is a dirty hack for now...
  835.  */
  836. extern void      DRM(clear_next_buffer)(drm_device_t *dev);
  837. extern int      DRM(select_queue)(drm_device_t *dev,
  838.        void (*wrapper)(unsigned long));
  839. extern int      DRM(dma_enqueue)(drm_device_t *dev, drm_dma_t *dma);
  840. extern int      DRM(dma_get_buffers)(drm_device_t *dev, drm_dma_t *dma);
  841. #endif
  842. #if __HAVE_DMA_IRQ
  843. extern int           DRM(control)( struct inode *inode, struct file *filp,
  844.    unsigned int cmd, unsigned long arg );
  845. extern int           DRM(irq_install)( drm_device_t *dev, int irq );
  846. extern int           DRM(irq_uninstall)( drm_device_t *dev );
  847. extern void          DRM(dma_service)( int irq, void *device,
  848.        struct pt_regs *regs );
  849. #if __HAVE_DMA_IRQ_BH
  850. extern void          DRM(dma_immediate_bh)( void *dev );
  851. #endif
  852. #endif
  853. #if DRM_DMA_HISTOGRAM
  854. extern int      DRM(histogram_slot)(unsigned long count);
  855. extern void      DRM(histogram_compute)(drm_device_t *dev, drm_buf_t *buf);
  856. #endif
  857. /* Buffer list support (drm_lists.h) */
  858. #if __HAVE_DMA_WAITLIST
  859. extern int      DRM(waitlist_create)(drm_waitlist_t *bl, int count);
  860. extern int      DRM(waitlist_destroy)(drm_waitlist_t *bl);
  861. extern int      DRM(waitlist_put)(drm_waitlist_t *bl, drm_buf_t *buf);
  862. extern drm_buf_t     *DRM(waitlist_get)(drm_waitlist_t *bl);
  863. #endif
  864. #if __HAVE_DMA_FREELIST
  865. extern int      DRM(freelist_create)(drm_freelist_t *bl, int count);
  866. extern int      DRM(freelist_destroy)(drm_freelist_t *bl);
  867. extern int      DRM(freelist_put)(drm_device_t *dev, drm_freelist_t *bl,
  868.        drm_buf_t *buf);
  869. extern drm_buf_t     *DRM(freelist_get)(drm_freelist_t *bl, int block);
  870. #endif
  871. #endif /* __HAVE_DMA */
  872. #if __REALLY_HAVE_AGP
  873. /* AGP/GART support (drm_agpsupport.h) */
  874. extern drm_agp_head_t *DRM(agp_init)(void);
  875. extern void           DRM(agp_uninit)(void);
  876. extern int            DRM(agp_acquire)(struct inode *inode, struct file *filp,
  877.        unsigned int cmd, unsigned long arg);
  878. extern void           DRM(agp_do_release)(void);
  879. extern int            DRM(agp_release)(struct inode *inode, struct file *filp,
  880.        unsigned int cmd, unsigned long arg);
  881. extern int            DRM(agp_enable)(struct inode *inode, struct file *filp,
  882.       unsigned int cmd, unsigned long arg);
  883. extern int            DRM(agp_info)(struct inode *inode, struct file *filp,
  884.     unsigned int cmd, unsigned long arg);
  885. extern int            DRM(agp_alloc)(struct inode *inode, struct file *filp,
  886.      unsigned int cmd, unsigned long arg);
  887. extern int            DRM(agp_free)(struct inode *inode, struct file *filp,
  888.     unsigned int cmd, unsigned long arg);
  889. extern int            DRM(agp_unbind)(struct inode *inode, struct file *filp,
  890.       unsigned int cmd, unsigned long arg);
  891. extern int            DRM(agp_bind)(struct inode *inode, struct file *filp,
  892.     unsigned int cmd, unsigned long arg);
  893. extern agp_memory     *DRM(agp_allocate_memory)(size_t pages, u32 type);
  894. extern int            DRM(agp_free_memory)(agp_memory *handle);
  895. extern int            DRM(agp_bind_memory)(agp_memory *handle, off_t start);
  896. extern int            DRM(agp_unbind_memory)(agp_memory *handle);
  897. #endif
  898. /* Stub support (drm_stub.h) */
  899. int                   DRM(stub_register)(const char *name,
  900.  struct file_operations *fops,
  901.  drm_device_t *dev);
  902. int                   DRM(stub_unregister)(int minor);
  903. /* Proc support (drm_proc.h) */
  904. extern struct proc_dir_entry *DRM(proc_init)(drm_device_t *dev,
  905.      int minor,
  906.      struct proc_dir_entry *root,
  907.      struct proc_dir_entry **dev_root);
  908. extern int            DRM(proc_cleanup)(int minor,
  909. struct proc_dir_entry *root,
  910. struct proc_dir_entry *dev_root);
  911. #if __HAVE_SG
  912. /* Scatter Gather Support (drm_scatter.h) */
  913. extern void           DRM(sg_cleanup)(drm_sg_mem_t *entry);
  914. extern int            DRM(sg_alloc)(struct inode *inode, struct file *filp,
  915.     unsigned int cmd, unsigned long arg);
  916. extern int            DRM(sg_free)(struct inode *inode, struct file *filp,
  917.    unsigned int cmd, unsigned long arg);
  918. #endif
  919.                                /* ATI PCIGART support (ati_pcigart.h) */
  920. extern int            DRM(ati_pcigart_init)(drm_device_t *dev,
  921.     unsigned long *addr,
  922.     dma_addr_t *bus_addr);
  923. extern int            DRM(ati_pcigart_cleanup)(drm_device_t *dev,
  924.        unsigned long addr,
  925.        dma_addr_t bus_addr);
  926. #endif /* __KERNEL__ */
  927. #endif