78ac1f1592f154e43932ab9fb4bfb2860493ef4e
[dragonfly.git] / sys / dev / drm / include / drm / drmP.h
1 /**
2  * \file drmP.h
3  * Private header for Direct Rendering Manager
4  *
5  * \author Rickard E. (Rik) Faith <faith@valinux.com>
6  * \author Gareth Hughes <gareth@valinux.com>
7  */
8
9 /*
10  * Copyright 1999 Precision Insight, Inc., Cedar Park, Texas.
11  * Copyright 2000 VA Linux Systems, Inc., Sunnyvale, California.
12  * Copyright (c) 2009-2010, Code Aurora Forum.
13  * All rights reserved.
14  *
15  * Permission is hereby granted, free of charge, to any person obtaining a
16  * copy of this software and associated documentation files (the "Software"),
17  * to deal in the Software without restriction, including without limitation
18  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
19  * and/or sell copies of the Software, and to permit persons to whom the
20  * Software is furnished to do so, subject to the following conditions:
21  *
22  * The above copyright notice and this permission notice (including the next
23  * paragraph) shall be included in all copies or substantial portions of the
24  * Software.
25  *
26  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
27  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
28  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
29  * VA LINUX SYSTEMS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
30  * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
31  * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
32  * OTHER DEALINGS IN THE SOFTWARE.
33  *
34  * $FreeBSD: head/sys/dev/drm2/drmP.h 255045 2013-08-29 23:09:34Z jkim $
35  */
36
37 #ifndef _DRM_P_H_
38 #define _DRM_P_H_
39
40 #if defined(_KERNEL) || defined(__KERNEL__)
41
42 #include <sys/param.h>
43 #include <sys/queue.h>
44 #include <sys/malloc.h>
45 #include <sys/kernel.h>
46 #include <sys/ktr.h>
47 #include <sys/module.h>
48 #include <sys/systm.h>
49 #include <sys/device.h>
50 #include <sys/sglist.h>
51 #include <sys/stat.h>
52 #include <sys/priv.h>
53 #include <sys/proc.h>
54 #include <sys/lock.h>
55 #include <sys/spinlock.h>
56 #include <sys/spinlock2.h>
57 #include <sys/fcntl.h>
58 #include <sys/uio.h>
59 #include <sys/filio.h>
60 #include <sys/sysctl.h>
61 #include <sys/bus.h>
62 #include <sys/queue.h>
63 #include <sys/signalvar.h>
64 #include <sys/poll.h>
65 #include <sys/sbuf.h>
66 #include <sys/taskqueue.h>
67 #include <sys/tree.h>
68 #include <vm/vm.h>
69 #include <vm/pmap.h>
70 #include <vm/vm_extern.h>
71 #include <vm/vm_kern.h>
72 #include <vm/vm_map.h>
73 #include <vm/vm_object.h>
74 #include <vm/vm_page2.h>
75 #include <vm/vm_pager.h>
76 #include <vm/vm_param.h>
77 #include <machine/param.h>
78 #include <machine/pmap.h>
79 #if defined(__i386__) || defined(__amd64__)
80 #include <machine/specialreg.h>
81 #endif
82 #include <machine/sysarch.h>
83 #include <sys/endian.h>
84 #include <sys/mman.h>
85 #include <sys/rman.h>
86 #include <sys/memrange.h>
87 #include <dev/agp/agpvar.h>
88 #include <sys/agpio.h>
89 #include <sys/mutex.h>
90 #include <bus/pci/pcivar.h>
91 #include <bus/pci/pcireg.h>
92
93 #include <uapi_drm/drm.h>
94 #include <uapi_drm/drm_sarea.h>
95
96 #include <dev/drm/drm_atomic.h>
97 #include "drm_linux_list.h"
98 #include "drm_gem_names.h"
99
100 struct drm_file;
101 struct drm_device;
102
103 #include "drm_os_freebsd.h"
104 #include "drm_hashtab.h"
105 #include "drm_mm.h"
106
107 #ifdef DRM_DEBUG
108 #undef DRM_DEBUG
109 #define DRM_DEBUG_DEFAULT_ON 1
110 #endif /* DRM_DEBUG */
111
112 #define DRM_DEBUGBITS_DEBUG             0x1
113 #define DRM_DEBUGBITS_KMS               0x2
114 #define DRM_DEBUGBITS_FAILED_IOCTL      0x4
115
116 #undef DRM_LINUX
117 #define DRM_LINUX 0
118
119 /***********************************************************************/
120 /** \name DRM template customization defaults */
121 /*@{*/
122
123 /* driver capabilities and requirements mask */
124 #define DRIVER_USE_AGP     0x1
125 #define DRIVER_REQUIRE_AGP 0x2
126 #define DRIVER_USE_MTRR    0x4
127 #define DRIVER_PCI_DMA     0x8
128 #define DRIVER_SG          0x10
129 #define DRIVER_HAVE_DMA    0x20
130 #define DRIVER_HAVE_IRQ    0x40
131 #define DRIVER_IRQ_SHARED  0x80
132 #define DRIVER_IRQ_VBL     0x100
133 #define DRIVER_DMA_QUEUE   0x200
134 #define DRIVER_FB_DMA      0x400
135 #define DRIVER_IRQ_VBL2    0x800
136 #define DRIVER_GEM         0x1000
137 #define DRIVER_MODESET     0x2000
138 #define DRIVER_PRIME       0x4000
139 #define DRIVER_LOCKLESS_IRQ 0x8000
140
141
142 #define DRM_HASH_SIZE         16 /* Size of key hash table                */
143 #define DRM_KERNEL_CONTEXT    0  /* Change drm_resctx if changed          */
144 #define DRM_RESERVED_CONTEXTS 1  /* Change drm_resctx if changed          */
145
146 #define DRM_GEM_MAPPING_MASK    (3ULL << 62)
147 #define DRM_GEM_MAPPING_KEY     (2ULL << 62) /* Non-canonical address form */
148 #define DRM_GEM_MAX_IDX         0x3fffff
149 #define DRM_GEM_MAPPING_IDX(o)  (((o) >> 40) & DRM_GEM_MAX_IDX)
150 #define DRM_GEM_MAPPING_OFF(i)  (((uint64_t)(i)) << 40)
151 #define DRM_GEM_MAPPING_MAPOFF(o) \
152     ((o) & ~(DRM_GEM_MAPPING_OFF(DRM_GEM_MAX_IDX) | DRM_GEM_MAPPING_KEY))
153
154 MALLOC_DECLARE(DRM_MEM_DMA);
155 MALLOC_DECLARE(DRM_MEM_SAREA);
156 MALLOC_DECLARE(DRM_MEM_DRIVER);
157 MALLOC_DECLARE(DRM_MEM_MAGIC);
158 MALLOC_DECLARE(DRM_MEM_MAPS);
159 MALLOC_DECLARE(DRM_MEM_BUFS);
160 MALLOC_DECLARE(DRM_MEM_SEGS);
161 MALLOC_DECLARE(DRM_MEM_PAGES);
162 MALLOC_DECLARE(DRM_MEM_FILES);
163 MALLOC_DECLARE(DRM_MEM_BUFLISTS);
164 MALLOC_DECLARE(DRM_MEM_AGPLISTS);
165 MALLOC_DECLARE(DRM_MEM_CTXBITMAP);
166 MALLOC_DECLARE(DRM_MEM_SGLISTS);
167 MALLOC_DECLARE(DRM_MEM_DRAWABLE);
168 MALLOC_DECLARE(DRM_MEM_MM);
169 MALLOC_DECLARE(DRM_MEM_HASHTAB);
170 MALLOC_DECLARE(DRM_MEM_KMS);
171
172 SYSCTL_DECL(_hw_drm);
173
174 #define DRM_MAX_CTXBITMAP (PAGE_SIZE * 8)
175
176 /***********************************************************************/
177 /** \name Internal types and structures */
178 /*@{*/
179
180 #define DRM_ARRAY_SIZE(x) NELEM(x)
181 #define DRM_MIN(a,b) ((a)<(b)?(a):(b))
182 #define DRM_MAX(a,b) ((a)>(b)?(a):(b))
183
184 #define DRM_IF_VERSION(maj, min) (maj << 16 | min)
185
186 #define __OS_HAS_AGP    1
187
188 #define DRM_DEV_MODE    (S_IRUSR|S_IWUSR|S_IRGRP|S_IWGRP)
189 #define DRM_DEV_UID     0
190 #define DRM_DEV_GID     0
191
192 #define wait_queue_head_t       atomic_t
193 #define DRM_WAKEUP(w)           wakeup((void *)w)
194 #define DRM_WAKEUP_INT(w)       wakeup(w)
195 #define DRM_INIT_WAITQUEUE(queue) do {(void)(queue);} while (0)
196
197 #define DRM_CURPROC             curthread
198 #define DRM_STRUCTPROC          struct thread
199 #define DRM_CURRENTPID          curthread->td_proc->p_pid
200 #define DRM_LOCK(dev)           lockmgr(&(dev)->dev_struct_lock, LK_EXCLUSIVE)
201 #define DRM_UNLOCK(dev)         lockmgr(&(dev)->dev_struct_lock, LK_RELEASE)
202 #define DRM_LOCK_SLEEP(dev, chan, flags, msg, timeout)                  \
203     (lksleep((chan), &(dev)->dev_struct_lock, (flags), (msg), (timeout)))
204 #if defined(INVARIANTS)
205 #define DRM_LOCK_ASSERT(dev)    KKASSERT(lockstatus(&(dev)->dev_struct_lock, curthread) != 0);
206 #define DRM_UNLOCK_ASSERT(dev)  KKASSERT(lockstatus(&(dev)->dev_struct_lock, curthread) == 0);
207 #else
208 #define DRM_LOCK_ASSERT(d)
209 #define DRM_UNLOCK_ASSERT(d)
210 #endif
211
212 #define DRM_SYSCTL_HANDLER_ARGS (SYSCTL_HANDLER_ARGS)
213
214 #define DRM_IRQ_ARGS            void *arg
215 typedef void                    irqreturn_t;
216 #define IRQ_HANDLED             /* nothing */
217 #define IRQ_NONE                /* nothing */
218
219 enum {
220         DRM_IS_NOT_AGP,
221         DRM_IS_AGP,
222         DRM_MIGHT_BE_AGP
223 };
224 #define DRM_AGP_MEM             struct agp_memory_info
225
226 #define drm_get_device_from_kdev(_kdev) (_kdev->si_drv1)
227
228 #define PAGE_ALIGN(addr) round_page(addr)
229 /* DRM_SUSER returns true if the user is superuser */
230 #define DRM_SUSER(p)            (priv_check(p, PRIV_DRIVER) == 0)
231 #define DRM_AGP_FIND_DEVICE()   agp_find_device()
232 #define DRM_MTRR_WC             MDF_WRITECOMBINE
233 #define jiffies                 ticks
234 #define jiffies_to_msecs(x)     (((int64_t)(x)) * 1000 / hz)
235 #define msecs_to_jiffies(x)     (((int64_t)(x)) * hz / 1000)
236 #define time_after(a,b)         ((long)(b) - (long)(a) < 0)
237 #define time_after_eq(a,b)      ((long)(b) - (long)(a) <= 0)
238
239 /* DRM_READMEMORYBARRIER() prevents reordering of reads.
240  * DRM_WRITEMEMORYBARRIER() prevents reordering of writes.
241  * DRM_MEMORYBARRIER() prevents reordering of reads and writes.
242  */
243 #define DRM_READMEMORYBARRIER()         cpu_lfence()
244 #define DRM_WRITEMEMORYBARRIER()        cpu_sfence()
245 #define DRM_MEMORYBARRIER()             cpu_mfence()
246
247 #define DRM_READ8(map, offset)                                          \
248         *(volatile u_int8_t *)(((vm_offset_t)(map)->virtual) +          \
249             (vm_offset_t)(offset))
250 #define DRM_READ16(map, offset)                                         \
251         le16toh(*(volatile u_int16_t *)(((vm_offset_t)(map)->virtual) + \
252             (vm_offset_t)(offset)))
253 #define DRM_READ32(map, offset)                                         \
254         le32toh(*(volatile u_int32_t *)(((vm_offset_t)(map)->virtual) + \
255             (vm_offset_t)(offset)))
256 #define DRM_READ64(map, offset)                                         \
257         le64toh(*(volatile u_int64_t *)(((vm_offset_t)(map)->virtual) + \
258             (vm_offset_t)(offset)))
259 #define DRM_WRITE8(map, offset, val)                                    \
260         *(volatile u_int8_t *)(((vm_offset_t)(map)->virtual) +          \
261             (vm_offset_t)(offset)) = val
262 #define DRM_WRITE16(map, offset, val)                                   \
263         *(volatile u_int16_t *)(((vm_offset_t)(map)->virtual) +         \
264             (vm_offset_t)(offset)) = htole16(val)
265 #define DRM_WRITE32(map, offset, val)                                   \
266         *(volatile u_int32_t *)(((vm_offset_t)(map)->virtual) +         \
267             (vm_offset_t)(offset)) = htole32(val)
268 #define DRM_WRITE64(map, offset, val)                                   \
269         *(volatile u_int64_t *)(((vm_offset_t)(map)->virtual) +         \
270             (vm_offset_t)(offset)) = htole64(val)
271
272 #define DRM_VERIFYAREA_READ( uaddr, size )              \
273         (!useracc(__DECONST(caddr_t, uaddr), size, VM_PROT_READ))
274
275 #define DRM_COPY_TO_USER(user, kern, size) \
276         copyout(kern, user, size)
277 #define DRM_COPY_FROM_USER(kern, user, size) \
278         copyin(user, kern, size)
279 #define DRM_COPY_FROM_USER_UNCHECKED(arg1, arg2, arg3)  \
280         copyin(arg2, arg1, arg3)
281 #define DRM_COPY_TO_USER_UNCHECKED(arg1, arg2, arg3)    \
282         copyout(arg2, arg1, arg3)
283 #define DRM_GET_USER_UNCHECKED(val, uaddr)              \
284         ((val) = fuword32(uaddr), 0)
285
286 #define drm_can_sleep() (DRM_HZ & 1)
287
288 #define DRM_GET_PRIV_SAREA(_dev, _ctx, _map) do {       \
289         (_map) = (_dev)->context_sareas[_ctx];          \
290 } while(0)
291
292 #define LOCK_TEST_WITH_RETURN(dev, file_priv)                           \
293 do {                                                                    \
294         if (!_DRM_LOCK_IS_HELD(dev->lock.hw_lock->lock) ||              \
295              dev->lock.file_priv != file_priv) {                        \
296                 DRM_ERROR("%s called without lock held\n",              \
297                            __FUNCTION__);                               \
298                 return EINVAL;                                          \
299         }                                                               \
300 } while (0)
301
302 /* Returns -errno to shared code */
303 #define DRM_WAIT_ON( ret, queue, timeout, condition )           \
304 for ( ret = 0 ; !ret && !(condition) ; ) {                      \
305         DRM_UNLOCK(dev);                                        \
306         lwkt_serialize_enter(&dev->irq_lock);                   \
307         if (!(condition)) {                                     \
308             tsleep_interlock(&(queue), PCATCH);                 \
309             lwkt_serialize_exit(&dev->irq_lock);                \
310             ret = -tsleep(&(queue), PCATCH | PINTERLOCKED,      \
311                           "drmwtq", (timeout));                 \
312         } else {                                                \
313                 lwkt_serialize_exit(&dev->irq_lock);            \
314         }                                                       \
315         DRM_LOCK(dev);                                          \
316 }
317
318 __inline static void
319 vm_page_unhold_pages(vm_page_t *ma, int count)
320 {
321         int i;
322
323         for (i = 0; i < count; i++)
324                 vm_page_unhold(ma[i]);
325 }
326
327 int vm_phys_fictitious_reg_range(vm_paddr_t start, vm_paddr_t end,
328     vm_memattr_t memattr);
329 void vm_phys_fictitious_unreg_range(vm_paddr_t start, vm_paddr_t end);
330 vm_page_t vm_phys_fictitious_to_vm_page(vm_paddr_t pa);
331
332 #define DRM_ERROR(fmt, ...) \
333         kprintf("error: [" DRM_NAME ":pid%d:%s] *ERROR* " fmt,          \
334             DRM_CURRENTPID, __func__ , ##__VA_ARGS__)
335
336 #define DRM_INFO(fmt, ...)  kprintf("info: [" DRM_NAME "] " fmt , ##__VA_ARGS__)
337
338 #define DRM_DEBUG(fmt, ...) do {                                        \
339         if ((drm_debug_flag & DRM_DEBUGBITS_DEBUG) != 0)                \
340                 kprintf("[" DRM_NAME ":pid%d:%s] " fmt, DRM_CURRENTPID, \
341                         __func__ , ##__VA_ARGS__);                      \
342 } while (0)
343
344 #define DRM_DEBUG_KMS(fmt, ...) do {                                    \
345         if ((drm_debug_flag & DRM_DEBUGBITS_KMS) != 0)                  \
346                 kprintf("[" DRM_NAME ":KMS:pid%d:%s] " fmt, DRM_CURRENTPID,\
347                         __func__ , ##__VA_ARGS__);                      \
348 } while (0)
349
350 #define DRM_DEBUG_DRIVER(fmt, ...) do {                                 \
351         if ((drm_debug_flag & DRM_DEBUGBITS_KMS) != 0)                  \
352                 kprintf("[" DRM_NAME ":KMS:pid%d:%s] " fmt, DRM_CURRENTPID,\
353                         __func__ , ##__VA_ARGS__);                      \
354 } while (0)
355
356 #define dev_err(dev, fmt, ...)                                          \
357         device_printf((dev), "error: " fmt, ## __VA_ARGS__)
358 #define dev_warn(dev, fmt, ...)                                         \
359         device_printf((dev), "warning: " fmt, ## __VA_ARGS__)
360 #define dev_info(dev, fmt, ...)                                         \
361         device_printf((dev), "info: " fmt, ## __VA_ARGS__)
362 #define dev_dbg(dev, fmt, ...) do {                                     \
363         if ((drm_debug_flag& DRM_DEBUGBITS_KMS) != 0) {                 \
364                 device_printf((dev), "debug: " fmt, ## __VA_ARGS__);    \
365         }                                                               \
366 } while (0)
367
368 typedef struct drm_pci_id_list
369 {
370         int vendor;
371         int device;
372         long driver_private;
373         char *name;
374 } drm_pci_id_list_t;
375
376 struct drm_msi_blacklist_entry
377 {
378         int vendor;
379         int device;
380 };
381
382 #define DRM_AUTH        0x1
383 #define DRM_MASTER      0x2
384 #define DRM_ROOT_ONLY   0x4
385 #define DRM_CONTROL_ALLOW 0x8
386 #define DRM_UNLOCKED    0x10
387
388 typedef struct drm_ioctl_desc {
389         unsigned long cmd;
390         int (*func)(struct drm_device *dev, void *data,
391                     struct drm_file *file_priv);
392         int flags;
393         unsigned int cmd_drv;
394 } drm_ioctl_desc_t;
395
396 /**
397  * Creates a driver or general drm_ioctl_desc array entry for the given
398  * ioctl, for use by drm_ioctl().
399  */
400 #define DRM_IOCTL_DEF(ioctl, func, flags) \
401         [DRM_IOCTL_NR(ioctl)] = {ioctl, func, flags}
402
403 #define DRM_IOCTL_DEF_DRV(ioctl, _func, _flags)                 \
404         [DRM_IOCTL_NR(DRM_##ioctl)] = {.cmd = DRM_##ioctl, .func = _func, .flags = _flags, .cmd_drv = DRM_IOCTL_##ioctl}
405
406 typedef struct drm_magic_entry {
407         drm_magic_t            magic;
408         struct drm_file        *priv;
409         struct drm_magic_entry *next;
410 } drm_magic_entry_t;
411
412 typedef struct drm_magic_head {
413         struct drm_magic_entry *head;
414         struct drm_magic_entry *tail;
415 } drm_magic_head_t;
416
417 typedef struct drm_buf {
418         int idx;                       /**< Index into master buflist */
419         int total;                     /**< Buffer size */
420         int order;                     /**< log-base-2(total) */
421         int used;                      /**< Amount of buffer in use (for DMA) */
422         unsigned long offset;          /**< Byte offset (used internally) */
423         void *address;                 /**< Address of buffer */
424         unsigned long bus_address;     /**< Bus address of buffer */
425         struct drm_buf *next;          /**< Kernel-only: used for free list */
426         __volatile__ int waiting;      /**< On kernel DMA queue */
427         __volatile__ int pending;      /**< On hardware DMA queue */
428         struct drm_file *file_priv;    /**< Private of holding file descr */
429         int context;                   /**< Kernel queue for this buffer */
430         int while_locked;              /**< Dispatch this buffer while locked */
431         enum {
432                 DRM_LIST_NONE = 0,
433                 DRM_LIST_FREE = 1,
434                 DRM_LIST_WAIT = 2,
435                 DRM_LIST_PEND = 3,
436                 DRM_LIST_PRIO = 4,
437                 DRM_LIST_RECLAIM = 5
438         } list;                        /**< Which list we're on */
439
440         int dev_priv_size;               /**< Size of buffer private storage */
441         void *dev_private;               /**< Per-buffer private storage */
442 } drm_buf_t;
443
444 typedef struct drm_freelist {
445         int               initialized; /* Freelist in use                  */
446         atomic_t          count;       /* Number of free buffers           */
447         drm_buf_t         *next;       /* End pointer                      */
448
449         int               low_mark;    /* Low water mark                   */
450         int               high_mark;   /* High water mark                  */
451 } drm_freelist_t;
452
453 typedef struct drm_dma_handle {
454         void *vaddr;
455         bus_addr_t busaddr;
456         bus_dma_tag_t tag;
457         bus_dmamap_t map;
458 } drm_dma_handle_t;
459
460 typedef struct drm_buf_entry {
461         int               buf_size;
462         int               buf_count;
463         drm_buf_t         *buflist;
464         int               seg_count;
465         drm_dma_handle_t  **seglist;
466         int               page_order;
467
468         drm_freelist_t    freelist;
469 } drm_buf_entry_t;
470
471 /* Event queued up for userspace to read */
472 struct drm_pending_event {
473         struct drm_event *event;
474         struct list_head link;
475         struct drm_file *file_priv;
476         pid_t pid; /* pid of requester, no guarantee it's valid by the time
477                       we deliver the event, for tracing only */
478         void (*destroy)(struct drm_pending_event *event);
479 };
480
481 /* initial implementaton using a linked list - todo hashtab */
482 struct drm_prime_file_private {
483         struct list_head head;
484 #ifdef DUMBBELL_WIP
485         struct mutex lock;
486 #endif /* DUMBBELL_WIP */
487 };
488
489 typedef TAILQ_HEAD(drm_file_list, drm_file) drm_file_list_t;
490 struct drm_file {
491         TAILQ_ENTRY(drm_file) link;
492         struct drm_device *dev;
493         int               authenticated;
494         int               master;
495         pid_t             pid;
496         uid_t             uid;
497         drm_magic_t       magic;
498         unsigned long     ioctl_count;
499
500         void             *driver_priv;
501         struct drm_gem_names object_names;
502
503         int               is_master;
504         struct drm_master *masterp;
505
506         struct list_head  fbs;
507
508         struct list_head  event_list;
509         int               event_space;
510
511         struct drm_prime_file_private prime;
512 };
513
514 typedef struct drm_lock_data {
515         struct drm_hw_lock      *hw_lock;       /* Hardware lock                   */
516         struct drm_file   *file_priv;   /* Unique identifier of holding process (NULL is kernel)*/
517         int               lock_queue;   /* Queue of blocked processes      */
518         unsigned long     lock_time;    /* Time of last lock in jiffies    */
519 } drm_lock_data_t;
520
521 /* This structure, in the struct drm_device, is always initialized while the
522  * device
523  * is open.  dev->dma_lock protects the incrementing of dev->buf_use, which
524  * when set marks that no further bufs may be allocated until device teardown
525  * occurs (when the last open of the device has closed).  The high/low
526  * watermarks of bufs are only touched by the X Server, and thus not
527  * concurrently accessed, so no locking is needed.
528  */
529 typedef struct drm_device_dma {
530
531         struct drm_buf_entry bufs[DRM_MAX_ORDER + 1];   /**< buffers, grouped by their size order */
532         int buf_count;                  /**< total number of buffers */
533         struct drm_buf **buflist;               /**< Vector of pointers into drm_device_dma::bufs */
534         int seg_count;
535         int page_count;                 /**< number of pages */
536         unsigned long *pagelist;        /**< page list */
537         unsigned long byte_count;
538         enum {
539                 _DRM_DMA_USE_AGP = 0x01,
540                 _DRM_DMA_USE_SG = 0x02,
541                 _DRM_DMA_USE_FB = 0x04,
542                 _DRM_DMA_USE_PCI_RO = 0x08
543         } flags;
544
545 } drm_device_dma_t;
546
547 typedef struct drm_agp_mem {
548         void               *handle;
549         unsigned long      bound; /* address */
550         int                pages;
551         struct drm_agp_mem *prev;
552         struct drm_agp_mem *next;
553 } drm_agp_mem_t;
554
555 typedef struct drm_agp_head {
556         device_t           agpdev;
557         struct agp_info    info;
558         const char         *chipset;
559         drm_agp_mem_t      *memory;
560         unsigned long      mode;
561         int                enabled;
562         int                acquired;
563         unsigned long      base;
564         int                mtrr;
565         int                cant_use_aperture;
566         unsigned long      page_mask;
567 } drm_agp_head_t;
568
569 typedef struct drm_sg_mem {
570         vm_offset_t vaddr;
571         vm_paddr_t *busaddr;
572         vm_pindex_t pages;
573 } drm_sg_mem_t;
574
575 #define DRM_MAP_HANDLE_BITS     (sizeof(void *) == 4 ? 4 : 24)
576 #define DRM_MAP_HANDLE_SHIFT    (sizeof(void *) * 8 - DRM_MAP_HANDLE_BITS)
577 typedef TAILQ_HEAD(drm_map_list, drm_local_map) drm_map_list_t;
578
579 typedef struct drm_local_map {
580         unsigned long offset;     /* Physical address (0 for SAREA)       */
581         unsigned long size;       /* Physical size (bytes)                */
582         enum drm_map_type type;   /* Type of memory mapped                */
583         enum drm_map_flags flags; /* Flags                                */
584         void *handle;             /* User-space: "Handle" to pass to mmap */
585                                   /* Kernel-space: kernel-virtual address */
586         int mtrr;                 /* Boolean: MTRR used                   */
587                                   /* Private data                         */
588         int rid;                  /* PCI resource ID for bus_space        */
589         void *virtual;            /* Kernel-space: kernel-virtual address */
590         struct resource *bsr;
591         bus_space_tag_t bst;
592         bus_space_handle_t bsh;
593         drm_dma_handle_t *dmah;
594         TAILQ_ENTRY(drm_local_map) link;
595 } drm_local_map_t;
596
597 struct drm_vblank_info {
598         wait_queue_head_t queue;        /* vblank wait queue */
599         atomic_t count;                 /* number of VBLANK interrupts */
600                                         /* (driver must alloc the right number of counters) */
601         atomic_t refcount;              /* number of users of vblank interrupts */
602         u32 last;                       /* protected by dev->vbl_lock, used */
603                                         /* for wraparound handling */
604         int enabled;                    /* so we don't call enable more than */
605                                         /* once per disable */
606         int inmodeset;                  /* Display driver is setting mode */
607 };
608
609 /* location of GART table */
610 #define DRM_ATI_GART_MAIN 1
611 #define DRM_ATI_GART_FB   2
612
613 #define DRM_ATI_GART_PCI 1
614 #define DRM_ATI_GART_PCIE 2
615 #define DRM_ATI_GART_IGP 3
616
617 struct drm_ati_pcigart_info {
618         int gart_table_location;
619         int gart_reg_if;
620         void *addr;
621         dma_addr_t bus_addr;
622         dma_addr_t table_mask;
623         dma_addr_t member_mask;
624         struct drm_dma_handle *table_handle;
625         drm_local_map_t mapping;
626         int table_size;
627         struct drm_dma_handle *dmah; /* handle for ATI PCIGART table */
628 };
629
630 typedef vm_paddr_t resource_size_t;
631
632 /**
633  * GEM specific mm private for tracking GEM objects
634  */
635 struct drm_gem_mm {
636         struct drm_open_hash offset_hash; /**< User token hash table for maps */
637         struct unrhdr *idxunr;
638 };
639
640 struct drm_gem_object {
641         /** Reference count of this object */
642         u_int refcount;
643
644         /** Handle count of this object. Each handle also holds a reference */
645         u_int handle_count; /* number of handles on this object */
646
647         /** Related drm device */
648         struct drm_device *dev;
649
650         /** File representing the shmem storage: filp in Linux parlance */
651         vm_object_t vm_obj;
652
653         bool on_map;
654         struct drm_hash_item map_list;
655
656         /**
657          * Size of the object, in bytes.  Immutable over the object's
658          * lifetime.
659          */
660         size_t size;
661
662         /**
663          * Global name for this object, starts at 1. 0 means unnamed.
664          * Access is covered by the object_name_lock in the related drm_device
665          */
666         int name;
667
668         /**
669          * Memory domains. These monitor which caches contain read/write data
670          * related to the object. When transitioning from one set of domains
671          * to another, the driver is called to ensure that caches are suitably
672          * flushed and invalidated
673          */
674         uint32_t read_domains;
675         uint32_t write_domain;
676
677         /**
678          * While validating an exec operation, the
679          * new read/write domain values are computed here.
680          * They will be transferred to the above values
681          * at the point that any cache flushing occurs
682          */
683         uint32_t pending_read_domains;
684         uint32_t pending_write_domain;
685
686         void *driver_private;
687
688 #ifdef DUMBBELL_WIP
689         /* dma buf exported from this GEM object */
690         struct dma_buf *export_dma_buf;
691
692         /* dma buf attachment backing this object */
693         struct dma_buf_attachment *import_attach;
694 #endif /* DUMBBELL_WIP */
695 };
696
697 #include "drm_crtc.h"
698
699 /* per-master structure */
700 struct drm_master {
701
702         u_int refcount; /* refcount for this master */
703
704         struct list_head head; /**< each minor contains a list of masters */
705         struct drm_minor *minor; /**< link back to minor we are a master for */
706
707         char *unique;                   /**< Unique identifier: e.g., busid */
708         int unique_len;                 /**< Length of unique field */
709         int unique_size;                /**< amount allocated */
710
711         int blocked;                    /**< Blocked due to VC switch? */
712
713         /** \name Authentication */
714         /*@{ */
715         struct drm_open_hash magiclist;
716         struct list_head magicfree;
717         /*@} */
718
719         struct drm_lock_data lock;      /**< Information on hardware lock */
720
721         void *driver_priv; /**< Private structure for driver to use */
722 };
723
724 /* Size of ringbuffer for vblank timestamps. Just double-buffer
725  * in initial implementation.
726  */
727 #define DRM_VBLANKTIME_RBSIZE 2
728
729 /* Flags and return codes for get_vblank_timestamp() driver function. */
730 #define DRM_CALLED_FROM_VBLIRQ 1
731 #define DRM_VBLANKTIME_SCANOUTPOS_METHOD (1 << 0)
732 #define DRM_VBLANKTIME_INVBL             (1 << 1)
733
734 /* get_scanout_position() return flags */
735 #define DRM_SCANOUTPOS_VALID        (1 << 0)
736 #define DRM_SCANOUTPOS_INVBL        (1 << 1)
737 #define DRM_SCANOUTPOS_ACCURATE     (1 << 2)
738
739 #ifndef DMA_BIT_MASK
740 #define DMA_BIT_MASK(n) (((n) == 64) ? ~0ULL : (1ULL<<(n)) - 1)
741 #endif
742
743 #define upper_32_bits(n) ((u32)(((n) >> 16) >> 16))
744
745 struct drm_driver_info {
746         int     (*load)(struct drm_device *, unsigned long flags);
747         int     (*use_msi)(struct drm_device *, unsigned long flags);
748         int     (*firstopen)(struct drm_device *);
749         int     (*open)(struct drm_device *, struct drm_file *);
750         void    (*preclose)(struct drm_device *, struct drm_file *file_priv);
751         void    (*postclose)(struct drm_device *, struct drm_file *);
752         void    (*lastclose)(struct drm_device *);
753         int     (*unload)(struct drm_device *);
754         void    (*reclaim_buffers_locked)(struct drm_device *,
755                                           struct drm_file *file_priv);
756         int     (*dma_ioctl)(struct drm_device *dev, void *data,
757                              struct drm_file *file_priv);
758         void    (*dma_ready)(struct drm_device *);
759         int     (*dma_quiescent)(struct drm_device *);
760         int     (*dma_flush_block_and_flush)(struct drm_device *, int context,
761                                              enum drm_lock_flags flags);
762         int     (*dma_flush_unblock)(struct drm_device *, int context,
763                                      enum drm_lock_flags flags);
764         int     (*context_ctor)(struct drm_device *dev, int context);
765         int     (*context_dtor)(struct drm_device *dev, int context);
766         int     (*kernel_context_switch)(struct drm_device *dev, int old,
767                                          int new);
768         int     (*kernel_context_switch_unlock)(struct drm_device *dev);
769         void    (*irq_preinstall)(struct drm_device *dev);
770         int     (*irq_postinstall)(struct drm_device *dev);
771         void    (*irq_uninstall)(struct drm_device *dev);
772         void    (*irq_handler)(DRM_IRQ_ARGS);
773
774         u32     (*get_vblank_counter)(struct drm_device *dev, int crtc);
775         int     (*enable_vblank)(struct drm_device *dev, int crtc);
776         void    (*disable_vblank)(struct drm_device *dev, int crtc);
777         int     (*get_scanout_position)(struct drm_device *dev, int crtc,
778                     int *vpos, int *hpos);
779
780         int     (*get_vblank_timestamp)(struct drm_device *dev, int crtc,
781                     int *max_error, struct timeval *vblank_time,
782                     unsigned flags);
783
784         int     (*gem_init_object)(struct drm_gem_object *obj);
785         void    (*gem_free_object)(struct drm_gem_object *obj);
786         int     (*gem_open_object)(struct drm_gem_object *, struct drm_file *);
787         void    (*gem_close_object)(struct drm_gem_object *, struct drm_file *);
788
789         struct cdev_pager_ops *gem_pager_ops;
790
791         int     (*dumb_create)(struct drm_file *file_priv,
792                     struct drm_device *dev, struct drm_mode_create_dumb *args);
793         int     (*dumb_map_offset)(struct drm_file *file_priv,
794                     struct drm_device *dev, uint32_t handle, uint64_t *offset);
795         int     (*dumb_destroy)(struct drm_file *file_priv,
796                     struct drm_device *dev, uint32_t handle);
797
798         int     (*sysctl_init)(struct drm_device *dev,
799                     struct sysctl_ctx_list *ctx, struct sysctl_oid *top);
800         void    (*sysctl_cleanup)(struct drm_device *dev);
801
802         drm_pci_id_list_t *id_entry;    /* PCI ID, name, and chipset private */
803
804         /**
805          * Called by \c drm_device_is_agp.  Typically used to determine if a
806          * card is really attached to AGP or not.
807          *
808          * \param dev  DRM device handle
809          *
810          * \returns
811          * One of three values is returned depending on whether or not the
812          * card is absolutely \b not AGP (return of 0), absolutely \b is AGP
813          * (return of 1), or may or may not be AGP (return of 2).
814          */
815         int     (*device_is_agp) (struct drm_device * dev);
816
817         drm_ioctl_desc_t *ioctls;
818 #ifdef COMPAT_FREEBSD32
819         drm_ioctl_desc_t *compat_ioctls;
820         int     *compat_ioctls_nr;
821 #endif
822         int     max_ioctl;
823
824         int     buf_priv_size;
825
826         int     major;
827         int     minor;
828         int     patchlevel;
829         const char *name;               /* Simple driver name              */
830         const char *desc;               /* Longer driver name              */
831         const char *date;               /* Date of last major changes.     */
832
833         u32 driver_features;
834 };
835
836 /**
837  * DRM minor structure. This structure represents a drm minor number.
838  */
839 struct drm_minor {
840         int index;                      /**< Minor device number */
841         int type;                       /**< Control or render */
842         device_t kdev;                  /**< OS device */
843         struct drm_device *dev;
844
845         struct drm_master *master; /* currently active master for this node */
846         struct list_head master_list;
847         struct drm_mode_group mode_group;
848 };
849
850 /* mode specified on the command line */
851 struct drm_cmdline_mode {
852         bool specified;
853         bool refresh_specified;
854         bool bpp_specified;
855         int xres, yres;
856         int bpp;
857         int refresh;
858         bool rb;
859         bool interlace;
860         bool cvt;
861         bool margins;
862         enum drm_connector_force force;
863 };
864
865
866 struct drm_pending_vblank_event {
867         struct drm_pending_event base;
868         int pipe;
869         struct drm_event_vblank event;
870 };
871
872 /* Length for the array of resource pointers for drm_get_resource_*. */
873 #define DRM_MAX_PCI_RESOURCE    6
874
875 /**
876  * DRM device structure. This structure represent a complete card that
877  * may contain multiple heads.
878  */
879 struct drm_device {
880         struct drm_driver_info *driver;
881         drm_pci_id_list_t *id_entry;    /* PCI ID, name, and chipset private */
882
883         uint16_t pci_device;            /* PCI device id */
884         uint16_t pci_vendor;            /* PCI vendor id */
885         uint16_t pci_subdevice;         /* PCI subsystem device id */
886         uint16_t pci_subvendor;         /* PCI subsystem vendor id */
887
888         char              *unique;      /* Unique identifier: e.g., busid  */
889         int               unique_len;   /* Length of unique field          */
890         device_t          device;       /* Device instance from newbus     */
891         struct cdev       *devnode;     /* Device number for mknod         */
892         int               if_version;   /* Highest interface version set */
893
894         int               flags;        /* Flags to open(2)                */
895
896                                 /* Locks */
897         struct spinlock   dma_lock;     /* protects dev->dma */
898         struct lwkt_serialize irq_lock; /* protects irq condition checks */
899         struct lock       dev_lock;     /* protects everything else */
900         struct lock       dev_struct_lock;
901         struct spinlock   drw_lock;
902
903                                 /* Usage Counters */
904         int               open_count;   /* Outstanding files open          */
905         int               buf_use;      /* Buffers in use -- cannot alloc  */
906
907                                 /* Performance counters */
908         unsigned long     counters;
909         enum drm_stat_type      types[15];
910         atomic_t          counts[15];
911
912                                 /* Authentication */
913         drm_file_list_t   files;
914         drm_magic_head_t  magiclist[DRM_HASH_SIZE];
915
916         /* Linked list of mappable regions. Protected by dev_lock */
917         drm_map_list_t    maplist;
918         struct unrhdr     *map_unrhdr;
919
920         drm_local_map_t   **context_sareas;
921         int               max_context;
922
923         drm_lock_data_t   lock;         /* Information on hardware lock    */
924
925                                 /* DMA queues (contexts) */
926         drm_device_dma_t  *dma;         /* Optional pointer for DMA support */
927
928                                 /* Context support */
929         int               irq;          /* Interrupt used by board         */
930         int               irq_enabled;  /* True if the irq handler is enabled */
931         int               msi_enabled;  /* MSI enabled */
932         int               irqrid;       /* Interrupt used by board */
933         struct resource   *irqr;        /* Resource for interrupt used by board    */
934         void              *irqh;        /* Handle from bus_setup_intr      */
935
936         /* Storage of resource pointers for drm_get_resource_* */
937         struct resource   *pcir[DRM_MAX_PCI_RESOURCE];
938         int               pcirid[DRM_MAX_PCI_RESOURCE];
939
940         int               pci_domain;
941         int               pci_bus;
942         int               pci_slot;
943         int               pci_func;
944
945         atomic_t          context_flag; /* Context swapping flag           */
946         int               last_context; /* Last current context            */
947
948         int               num_crtcs;
949
950         struct sigio      *buf_sigio;   /* Processes waiting for SIGIO     */
951
952                                 /* Sysctl support */
953         struct drm_sysctl_info *sysctl;
954         int               sysctl_node_idx;
955
956         drm_agp_head_t    *agp;
957         drm_sg_mem_t      *sg;  /* Scatter gather memory */
958         unsigned long     *ctx_bitmap;
959         void              *dev_private;
960         unsigned int      agp_buffer_token;
961         drm_local_map_t   *agp_buffer_map;
962
963         struct drm_minor *control;              /**< Control node for card */
964         struct drm_minor *primary;              /**< render type primary screen head */
965
966         void              *drm_ttm_bdev;
967         struct unrhdr     *drw_unrhdr;
968         /* RB tree of drawable infos */
969         RB_HEAD(drawable_tree, bsd_drm_drawable_info) drw_head;
970
971         int vblank_disable_allowed;
972
973         atomic_t *_vblank_count;        /**< number of VBLANK interrupts (driver must alloc the right number of counters) */
974         struct timeval *_vblank_time;   /**< timestamp of current vblank_count (drivers must alloc right number of fields) */
975         struct lock vblank_time_lock;   /**< Protects vblank count and time updates during vblank enable/disable */
976         struct lock vbl_lock;
977         atomic_t *vblank_refcount;      /* number of users of vblank interruptsper crtc */
978         u32 *last_vblank;               /* protected by dev->vbl_lock, used */
979                                         /* for wraparound handling */
980         int *vblank_enabled;            /* so we don't call enable more than
981                                            once per disable */
982         int *vblank_inmodeset;          /* Display driver is setting mode */
983         u32 *last_vblank_wait;          /* Last vblank seqno waited per CRTC */
984         struct callout vblank_disable_callout;
985
986         u32 max_vblank_count;           /**< size of vblank counter register */
987
988         struct list_head vblank_event_list;
989         struct lock     event_lock;
990
991         struct drm_mode_config mode_config;     /**< Current mode config */
992
993         /* GEM part */
994         struct lock     object_name_lock;
995         struct drm_gem_names object_names;
996         void             *mm_private;
997
998         void *sysctl_private;
999         char busid_str[128];
1000         int modesetting;
1001
1002         int switch_power_state;
1003 };
1004
1005 #define DRM_SWITCH_POWER_ON 0
1006 #define DRM_SWITCH_POWER_OFF 1
1007 #define DRM_SWITCH_POWER_CHANGING 2
1008
1009 static __inline__ int drm_core_check_feature(struct drm_device *dev,
1010                                              int feature)
1011 {
1012         return ((dev->driver->driver_features & feature) ? 1 : 0);
1013 }
1014
1015 #if __OS_HAS_AGP
1016 static inline int drm_core_has_AGP(struct drm_device *dev)
1017 {
1018         return drm_core_check_feature(dev, DRIVER_USE_AGP);
1019 }
1020 #else
1021 #define drm_core_has_AGP(dev) (0)
1022 #endif
1023
1024 enum dmi_field {
1025         DMI_NONE,
1026         DMI_BIOS_VENDOR,
1027         DMI_BIOS_VERSION,
1028         DMI_BIOS_DATE,
1029         DMI_SYS_VENDOR,
1030         DMI_PRODUCT_NAME,
1031         DMI_PRODUCT_VERSION,
1032         DMI_PRODUCT_SERIAL,
1033         DMI_PRODUCT_UUID,
1034         DMI_BOARD_VENDOR,
1035         DMI_BOARD_NAME,
1036         DMI_BOARD_VERSION,
1037         DMI_BOARD_SERIAL,
1038         DMI_BOARD_ASSET_TAG,
1039         DMI_CHASSIS_VENDOR,
1040         DMI_CHASSIS_TYPE,
1041         DMI_CHASSIS_VERSION,
1042         DMI_CHASSIS_SERIAL,
1043         DMI_CHASSIS_ASSET_TAG,
1044         DMI_STRING_MAX,
1045 };
1046
1047 struct dmi_strmatch {
1048         unsigned char slot;
1049         char substr[79];
1050 };
1051
1052 struct dmi_system_id {
1053         int (*callback)(const struct dmi_system_id *);
1054         const char *ident;
1055         struct dmi_strmatch matches[4];
1056 };
1057 #define DMI_MATCH(a, b) {(a), (b)}
1058 bool dmi_check_system(const struct dmi_system_id *);
1059
1060 extern int      drm_debug_flag;
1061 extern int      drm_notyet_flag;
1062 extern unsigned int drm_vblank_offdelay;
1063 extern unsigned int drm_timestamp_precision;
1064
1065 /* Device setup support (drm_drv.c) */
1066 int     drm_probe(device_t kdev, drm_pci_id_list_t *idlist);
1067 int     drm_attach(device_t kdev, drm_pci_id_list_t *idlist);
1068 int     drm_create_cdevs(device_t kdev);
1069 int     drm_detach(device_t kdev);
1070 d_ioctl_t drm_ioctl;
1071 d_open_t drm_open;
1072 d_close_t drm_close;
1073 d_read_t drm_read;
1074 d_kqfilter_t drm_kqfilter;
1075 d_mmap_t drm_mmap;
1076 d_mmap_single_t drm_mmap_single;
1077 extern drm_local_map_t  *drm_getsarea(struct drm_device *dev);
1078
1079 void drm_event_wakeup(struct drm_pending_event *e);
1080
1081 int drm_add_busid_modesetting(struct drm_device *dev,
1082     struct sysctl_ctx_list *ctx, struct sysctl_oid *top);
1083
1084 /* File operations helpers (drm_fops.c) */
1085 extern int              drm_open_helper(struct cdev *kdev, int flags, int fmt,
1086                                          DRM_STRUCTPROC *p,
1087                                         struct drm_device *dev);
1088 extern struct drm_file  *drm_find_file_by_proc(struct drm_device *dev,
1089                                         DRM_STRUCTPROC *p);
1090
1091 #ifdef DUMBBELL_WIP
1092 extern int drm_gem_prime_handle_to_fd(struct drm_device *dev,
1093                 struct drm_file *file_priv, uint32_t handle, uint32_t flags,
1094                 int *prime_fd);
1095 extern int drm_gem_prime_fd_to_handle(struct drm_device *dev,
1096                 struct drm_file *file_priv, int prime_fd, uint32_t *handle);
1097
1098 extern int drm_prime_handle_to_fd_ioctl(struct drm_device *dev, void *data,
1099                                         struct drm_file *file_priv);
1100 extern int drm_prime_fd_to_handle_ioctl(struct drm_device *dev, void *data,
1101                                         struct drm_file *file_priv);
1102
1103 #ifdef DUMBBELL_WIP
1104 /*
1105  * See drm_prime.c
1106  *   -- dumbbell@
1107  */
1108 extern int drm_prime_sg_to_page_addr_arrays(struct sg_table *sgt, vm_page_t *pages,
1109                                             dma_addr_t *addrs, int max_pages);
1110 #endif /* DUMBBELL_WIP */
1111 extern struct sg_table *drm_prime_pages_to_sg(vm_page_t *pages, int nr_pages);
1112 extern void drm_prime_gem_destroy(struct drm_gem_object *obj, struct sg_table *sg);
1113
1114
1115 void drm_prime_init_file_private(struct drm_prime_file_private *prime_fpriv);
1116 void drm_prime_destroy_file_private(struct drm_prime_file_private *prime_fpriv);
1117 int drm_prime_add_imported_buf_handle(struct drm_prime_file_private *prime_fpriv, struct dma_buf *dma_buf, uint32_t handle);
1118 int drm_prime_lookup_imported_buf_handle(struct drm_prime_file_private *prime_fpriv, struct dma_buf *dma_buf, uint32_t *handle);
1119 void drm_prime_remove_imported_buf_handle(struct drm_prime_file_private *prime_fpriv, struct dma_buf *dma_buf);
1120
1121 int drm_prime_add_dma_buf(struct drm_device *dev, struct drm_gem_object *obj);
1122 int drm_prime_lookup_obj(struct drm_device *dev, struct dma_buf *buf,
1123                          struct drm_gem_object **obj);
1124 #endif /* DUMBBELL_WIP */
1125
1126 /* Memory management support (drm_memory.c) */
1127 void    drm_mem_init(void);
1128 void    drm_mem_uninit(void);
1129 void    *drm_ioremap_wc(struct drm_device *dev, drm_local_map_t *map);
1130 void    *drm_ioremap(struct drm_device *dev, drm_local_map_t *map);
1131 void    drm_ioremapfree(drm_local_map_t *map);
1132 int     drm_mtrr_add(unsigned long offset, size_t size, int flags);
1133 int     drm_mtrr_del(int handle, unsigned long offset, size_t size, int flags);
1134
1135 int     drm_context_switch(struct drm_device *dev, int old, int new);
1136 int     drm_context_switch_complete(struct drm_device *dev, int new);
1137
1138 int     drm_ctxbitmap_init(struct drm_device *dev);
1139 void    drm_ctxbitmap_cleanup(struct drm_device *dev);
1140 void    drm_ctxbitmap_free(struct drm_device *dev, int ctx_handle);
1141 int     drm_ctxbitmap_next(struct drm_device *dev);
1142
1143 /* Locking IOCTL support (drm_lock.c) */
1144 int     drm_lock_take(struct drm_lock_data *lock_data,
1145                       unsigned int context);
1146 int     drm_lock_transfer(struct drm_lock_data *lock_data,
1147                           unsigned int context);
1148 int     drm_lock_free(struct drm_lock_data *lock_data,
1149                       unsigned int context);
1150
1151 /* Buffer management support (drm_bufs.c) */
1152 unsigned long drm_get_resource_start(struct drm_device *dev,
1153                                      unsigned int resource);
1154 unsigned long drm_get_resource_len(struct drm_device *dev,
1155                                    unsigned int resource);
1156 void    drm_rmmap(struct drm_device *dev, drm_local_map_t *map);
1157 int     drm_order(unsigned long size);
1158 int     drm_addmap(struct drm_device *dev, unsigned long offset,
1159                    unsigned long size,
1160                    enum drm_map_type type, enum drm_map_flags flags,
1161                    drm_local_map_t **map_ptr);
1162 int     drm_addbufs_pci(struct drm_device *dev, struct drm_buf_desc *request);
1163 int     drm_addbufs_sg(struct drm_device *dev, struct drm_buf_desc *request);
1164 int     drm_addbufs_agp(struct drm_device *dev, struct drm_buf_desc *request);
1165
1166 /* DMA support (drm_dma.c) */
1167 int     drm_dma_setup(struct drm_device *dev);
1168 void    drm_dma_takedown(struct drm_device *dev);
1169 void    drm_free_buffer(struct drm_device *dev, drm_buf_t *buf);
1170 void    drm_reclaim_buffers(struct drm_device *dev, struct drm_file *file_priv);
1171 #define drm_core_reclaim_buffers drm_reclaim_buffers
1172
1173 /* IRQ support (drm_irq.c) */
1174 int     drm_irq_install(struct drm_device *dev);
1175 int     drm_irq_uninstall(struct drm_device *dev);
1176 irqreturn_t drm_irq_handler(DRM_IRQ_ARGS);
1177 void    drm_driver_irq_preinstall(struct drm_device *dev);
1178 void    drm_driver_irq_postinstall(struct drm_device *dev);
1179 void    drm_driver_irq_uninstall(struct drm_device *dev);
1180
1181 void    drm_vblank_pre_modeset(struct drm_device *dev, int crtc);
1182 void    drm_vblank_post_modeset(struct drm_device *dev, int crtc);
1183 int     drm_modeset_ctl(struct drm_device *dev, void *data,
1184                         struct drm_file *file_priv);
1185
1186 extern int drm_vblank_init(struct drm_device *dev, int num_crtcs);
1187 extern int drm_wait_vblank(struct drm_device *dev, void *data,
1188                            struct drm_file *filp);
1189 extern int drm_vblank_wait(struct drm_device *dev, unsigned int *vbl_seq);
1190 extern u32 drm_vblank_count(struct drm_device *dev, int crtc);
1191 extern u32 drm_vblank_count_and_time(struct drm_device *dev, int crtc,
1192                                      struct timeval *vblanktime);
1193 extern bool drm_handle_vblank(struct drm_device *dev, int crtc);
1194 void drm_handle_vblank_events(struct drm_device *dev, int crtc);
1195 extern int drm_vblank_get(struct drm_device *dev, int crtc);
1196 extern void drm_vblank_put(struct drm_device *dev, int crtc);
1197 extern void drm_vblank_off(struct drm_device *dev, int crtc);
1198 extern void drm_vblank_cleanup(struct drm_device *dev);
1199 extern u32 drm_get_last_vbltimestamp(struct drm_device *dev, int crtc,
1200                                      struct timeval *tvblank, unsigned flags);
1201 extern int drm_calc_vbltimestamp_from_scanoutpos(struct drm_device *dev,
1202                                                  int crtc, int *max_error,
1203                                                  struct timeval *vblank_time,
1204                                                  unsigned flags,
1205                                                  struct drm_crtc *refcrtc);
1206 extern void drm_calc_timestamping_constants(struct drm_crtc *crtc);
1207
1208 struct timeval ns_to_timeval(const int64_t nsec);
1209 int64_t timeval_to_ns(const struct timeval *tv);
1210
1211 /* AGP/PCI Express/GART support (drm_agpsupport.c) */
1212 int     drm_device_is_agp(struct drm_device *dev);
1213 int     drm_device_is_pcie(struct drm_device *dev);
1214 drm_agp_head_t *drm_agp_init(void);
1215 int     drm_agp_acquire(struct drm_device *dev);
1216 int     drm_agp_release(struct drm_device *dev);
1217 int     drm_agp_info(struct drm_device * dev, struct drm_agp_info *info);
1218 int     drm_agp_enable(struct drm_device *dev, struct drm_agp_mode mode);
1219 void    *drm_agp_allocate_memory(size_t pages, u32 type);
1220 int     drm_agp_free_memory(void *handle);
1221 int     drm_agp_bind_memory(void *handle, off_t start);
1222 int     drm_agp_unbind_memory(void *handle);
1223 int     drm_agp_alloc(struct drm_device *dev, struct drm_agp_buffer *request);
1224 int     drm_agp_free(struct drm_device *dev, struct drm_agp_buffer *request);
1225 int     drm_agp_bind(struct drm_device *dev, struct drm_agp_binding *request);
1226 int     drm_agp_unbind(struct drm_device *dev, struct drm_agp_binding *request);
1227
1228 /* Scatter Gather Support (drm_scatter.c) */
1229 void    drm_sg_cleanup(drm_sg_mem_t *entry);
1230 int     drm_sg_alloc(struct drm_device *dev, struct drm_scatter_gather * request);
1231
1232 /* sysctl support (drm_sysctl.h) */
1233 extern int              drm_sysctl_init(struct drm_device *dev);
1234 extern int              drm_sysctl_cleanup(struct drm_device *dev);
1235
1236 /* ATI PCIGART support (ati_pcigart.c) */
1237 int     drm_ati_pcigart_init(struct drm_device *dev,
1238                                 struct drm_ati_pcigart_info *gart_info);
1239 int     drm_ati_pcigart_cleanup(struct drm_device *dev,
1240                                 struct drm_ati_pcigart_info *gart_info);
1241
1242 /* Cache management (drm_memory.c) */
1243 void    drm_clflush_pages(vm_page_t *pages, unsigned long num_pages);
1244
1245 /* Locking IOCTL support (drm_drv.c) */
1246 int     drm_lock(struct drm_device *dev, void *data,
1247                  struct drm_file *file_priv);
1248 int     drm_unlock(struct drm_device *dev, void *data,
1249                    struct drm_file *file_priv);
1250 int     drm_version(struct drm_device *dev, void *data,
1251                     struct drm_file *file_priv);
1252 int     drm_setversion(struct drm_device *dev, void *data,
1253                        struct drm_file *file_priv);
1254
1255 /* Misc. IOCTL support (drm_ioctl.c) */
1256 int     drm_irq_by_busid(struct drm_device *dev, void *data,
1257                          struct drm_file *file_priv);
1258 int     drm_getunique(struct drm_device *dev, void *data,
1259                       struct drm_file *file_priv);
1260 int     drm_setunique(struct drm_device *dev, void *data,
1261                       struct drm_file *file_priv);
1262 int     drm_getmap(struct drm_device *dev, void *data,
1263                    struct drm_file *file_priv);
1264 int     drm_getclient(struct drm_device *dev, void *data,
1265                       struct drm_file *file_priv);
1266 int     drm_getstats(struct drm_device *dev, void *data,
1267                      struct drm_file *file_priv);
1268 int     drm_getcap(struct drm_device *dev, void *data,
1269                      struct drm_file *file_priv);
1270 int     drm_noop(struct drm_device *dev, void *data,
1271                  struct drm_file *file_priv);
1272
1273 /* Context IOCTL support (drm_context.c) */
1274 int     drm_resctx(struct drm_device *dev, void *data,
1275                    struct drm_file *file_priv);
1276 int     drm_addctx(struct drm_device *dev, void *data,
1277                    struct drm_file *file_priv);
1278 int     drm_modctx(struct drm_device *dev, void *data,
1279                    struct drm_file *file_priv);
1280 int     drm_getctx(struct drm_device *dev, void *data,
1281                    struct drm_file *file_priv);
1282 int     drm_switchctx(struct drm_device *dev, void *data,
1283                       struct drm_file *file_priv);
1284 int     drm_newctx(struct drm_device *dev, void *data,
1285                    struct drm_file *file_priv);
1286 int     drm_rmctx(struct drm_device *dev, void *data,
1287                   struct drm_file *file_priv);
1288 int     drm_setsareactx(struct drm_device *dev, void *data,
1289                         struct drm_file *file_priv);
1290 int     drm_getsareactx(struct drm_device *dev, void *data,
1291                         struct drm_file *file_priv);
1292
1293 /* Drawable IOCTL support (drm_drawable.c) */
1294 int     drm_adddraw(struct drm_device *dev, void *data,
1295                     struct drm_file *file_priv);
1296 int     drm_rmdraw(struct drm_device *dev, void *data,
1297                    struct drm_file *file_priv);
1298 int     drm_update_draw(struct drm_device *dev, void *data,
1299                         struct drm_file *file_priv);
1300 struct drm_drawable_info *drm_get_drawable_info(struct drm_device *dev,
1301                                                 int handle);
1302
1303 /* Drawable support (drm_drawable.c) */
1304 void drm_drawable_free_all(struct drm_device *dev);
1305
1306 /* Authentication IOCTL support (drm_auth.c) */
1307 int     drm_getmagic(struct drm_device *dev, void *data,
1308                      struct drm_file *file_priv);
1309 int     drm_authmagic(struct drm_device *dev, void *data,
1310                       struct drm_file *file_priv);
1311
1312 /* Buffer management support (drm_bufs.c) */
1313 int     drm_addmap_ioctl(struct drm_device *dev, void *data,
1314                          struct drm_file *file_priv);
1315 int     drm_rmmap_ioctl(struct drm_device *dev, void *data,
1316                         struct drm_file *file_priv);
1317 int     drm_addbufs(struct drm_device *dev, void *data,
1318                     struct drm_file *file_priv);
1319 int     drm_infobufs(struct drm_device *dev, void *data,
1320                      struct drm_file *file_priv);
1321 int     drm_markbufs(struct drm_device *dev, void *data,
1322                      struct drm_file *file_priv);
1323 int     drm_freebufs(struct drm_device *dev, void *data,
1324                      struct drm_file *file_priv);
1325 int     drm_mapbufs(struct drm_device *dev, void *data,
1326                     struct drm_file *file_priv);
1327
1328 /* DMA support (drm_dma.c) */
1329 int     drm_dma(struct drm_device *dev, void *data, struct drm_file *file_priv);
1330
1331 /* IRQ support (drm_irq.c) */
1332 int     drm_control(struct drm_device *dev, void *data,
1333                     struct drm_file *file_priv);
1334
1335 /* AGP/GART support (drm_agpsupport.c) */
1336 int     drm_agp_acquire_ioctl(struct drm_device *dev, void *data,
1337                               struct drm_file *file_priv);
1338 int     drm_agp_release_ioctl(struct drm_device *dev, void *data,
1339                               struct drm_file *file_priv);
1340 int     drm_agp_enable_ioctl(struct drm_device *dev, void *data,
1341                              struct drm_file *file_priv);
1342 int     drm_agp_info_ioctl(struct drm_device *dev, void *data,
1343                            struct drm_file *file_priv);
1344 int     drm_agp_alloc_ioctl(struct drm_device *dev, void *data,
1345                             struct drm_file *file_priv);
1346 int     drm_agp_free_ioctl(struct drm_device *dev, void *data,
1347                            struct drm_file *file_priv);
1348 int     drm_agp_unbind_ioctl(struct drm_device *dev, void *data,
1349                              struct drm_file *file_priv);
1350 int     drm_agp_bind_ioctl(struct drm_device *dev, void *data,
1351                            struct drm_file *file_priv);
1352
1353                                 /* Stub support (drm_stub.h) */
1354 extern int drm_setmaster_ioctl(struct drm_device *dev, void *data,
1355                                struct drm_file *file_priv);
1356 extern int drm_dropmaster_ioctl(struct drm_device *dev, void *data,
1357                                 struct drm_file *file_priv);
1358
1359 /* Scatter Gather Support (drm_scatter.c) */
1360 int     drm_sg_alloc_ioctl(struct drm_device *dev, void *data,
1361                            struct drm_file *file_priv);
1362 int     drm_sg_free(struct drm_device *dev, void *data,
1363                     struct drm_file *file_priv);
1364
1365 /* consistent PCI memory functions (drm_pci.c) */
1366 drm_dma_handle_t *drm_pci_alloc(struct drm_device *dev, size_t size,
1367                                 size_t align, dma_addr_t maxaddr);
1368 void    drm_pci_free(struct drm_device *dev, drm_dma_handle_t *dmah);
1369
1370 /* Graphics Execution Manager library functions (drm_gem.c) */
1371 int drm_gem_init(struct drm_device *dev);
1372 void drm_gem_destroy(struct drm_device *dev);
1373
1374 int drm_gem_close_ioctl(struct drm_device *dev, void *data,
1375                         struct drm_file *file_priv);
1376 int drm_gem_flink_ioctl(struct drm_device *dev, void *data,
1377                         struct drm_file *file_priv);
1378 int drm_gem_open_ioctl(struct drm_device *dev, void *data,
1379                        struct drm_file *file_priv);
1380 int drm_gem_handle_create(struct drm_file *file_priv,
1381                           struct drm_gem_object *obj,
1382                           u32 *handlep);
1383 int drm_gem_handle_delete(struct drm_file *file_priv, uint32_t handle);
1384 void drm_gem_object_handle_reference(struct drm_gem_object *obj);
1385 void drm_gem_object_handle_unreference(struct drm_gem_object *obj);
1386 void drm_gem_object_handle_unreference_unlocked(struct drm_gem_object *obj);
1387 void drm_gem_object_handle_free(struct drm_gem_object *obj);
1388
1389 #include <drm/drm_global.h>
1390
1391 void drm_gem_object_reference(struct drm_gem_object *obj);
1392 void drm_gem_object_unreference(struct drm_gem_object *obj);
1393 void drm_gem_object_unreference_unlocked(struct drm_gem_object *obj);
1394 void drm_gem_object_release(struct drm_gem_object *obj);
1395 void drm_gem_object_free(struct drm_gem_object *obj);
1396 int drm_gem_object_init(struct drm_device *dev, struct drm_gem_object *obj,
1397     size_t size);
1398 int drm_gem_private_object_init(struct drm_device *dev,
1399     struct drm_gem_object *obj, size_t size);
1400 struct drm_gem_object *drm_gem_object_alloc(struct drm_device *dev,
1401     size_t size);
1402 struct drm_gem_object *drm_gem_object_lookup(struct drm_device *dev,
1403     struct drm_file *file_priv, uint32_t handle);
1404
1405 void drm_gem_open(struct drm_device *dev, struct drm_file *file_priv);
1406 void drm_gem_release(struct drm_device *dev, struct drm_file *file_priv);
1407
1408 int drm_gem_create_mmap_offset(struct drm_gem_object *obj);
1409 void drm_gem_free_mmap_offset(struct drm_gem_object *obj);
1410 int drm_gem_mmap_single(struct drm_device *dev, vm_ooffset_t *offset,
1411     vm_size_t size, struct vm_object **obj_res, int nprot);
1412 void drm_gem_pager_dtr(void *obj);
1413
1414 struct ttm_bo_device;
1415 int ttm_bo_mmap_single(struct ttm_bo_device *bdev, vm_ooffset_t *offset,
1416     vm_size_t size, struct vm_object **obj_res, int nprot);
1417 struct ttm_buffer_object;
1418 void ttm_bo_release_mmap(struct ttm_buffer_object *bo);
1419
1420 void drm_device_lock_mtx(struct drm_device *dev);
1421 void drm_device_unlock_mtx(struct drm_device *dev);
1422 int drm_device_sleep_mtx(struct drm_device *dev, void *chan, int flags,
1423     const char *msg, int timeout);
1424 void drm_device_assert_mtx_locked(struct drm_device *dev);
1425 void drm_device_assert_mtx_unlocked(struct drm_device *dev);
1426
1427 void drm_device_lock_struct(struct drm_device *dev);
1428 void drm_device_unlock_struct(struct drm_device *dev);
1429 int drm_device_sleep_struct(struct drm_device *dev, void *chan, int flags,
1430     const char *msg, int timeout);
1431 void drm_device_assert_struct_locked(struct drm_device *dev);
1432 void drm_device_assert_struct_unlocked(struct drm_device *dev);
1433
1434 void drm_compat_locking_init(struct drm_device *dev);
1435 void drm_sleep_locking_init(struct drm_device *dev);
1436
1437 /* drm_modes.c */
1438 bool drm_mode_parse_command_line_for_connector(const char *mode_option,
1439     struct drm_connector *connector, struct drm_cmdline_mode *mode);
1440 struct drm_display_mode *drm_mode_create_from_cmdline_mode(
1441     struct drm_device *dev, struct drm_cmdline_mode *cmd);
1442
1443 /* drm_edid.c */
1444 u8 *drm_find_cea_extension(struct edid *edid);
1445
1446 /* Inline replacements for drm_alloc and friends */
1447 static __inline__ void *
1448 drm_alloc(size_t size, struct malloc_type *area)
1449 {
1450         return kmalloc(size, area, M_NOWAIT);
1451 }
1452
1453 static __inline__ void *
1454 drm_calloc(size_t nmemb, size_t size, struct malloc_type *area)
1455 {
1456         return kmalloc(size * nmemb, area, M_NOWAIT | M_ZERO);
1457 }
1458
1459 static __inline__ void *
1460 drm_realloc(void *oldpt, size_t oldsize, size_t size,
1461     struct malloc_type *area)
1462 {
1463         void *res;
1464         res = krealloc(oldpt, size, area, M_NOWAIT);
1465         if (res == NULL && oldpt != NULL)
1466                 kfree(oldpt,area);
1467         return res;
1468 }
1469
1470 static __inline__ void
1471 drm_free(void *pt, struct malloc_type *area)
1472 {
1473         if (pt != NULL)
1474                 kfree(pt, area);
1475 }
1476
1477 /* Inline replacements for DRM_IOREMAP macros */
1478 static __inline__ void
1479 drm_core_ioremap_wc(struct drm_local_map *map, struct drm_device *dev)
1480 {
1481         map->virtual = drm_ioremap_wc(dev, map);
1482 }
1483 static __inline__ void
1484 drm_core_ioremap(struct drm_local_map *map, struct drm_device *dev)
1485 {
1486         map->virtual = drm_ioremap(dev, map);
1487 }
1488 static __inline__ void
1489 drm_core_ioremapfree(struct drm_local_map *map, struct drm_device *dev)
1490 {
1491         if ( map->virtual && map->size )
1492                 drm_ioremapfree(map);
1493 }
1494
1495 static __inline__ struct drm_local_map *
1496 drm_core_findmap(struct drm_device *dev, unsigned long offset)
1497 {
1498         drm_local_map_t *map;
1499
1500         DRM_LOCK_ASSERT(dev);
1501         TAILQ_FOREACH(map, &dev->maplist, link) {
1502                 if (offset == (unsigned long)map->handle)
1503                         return map;
1504         }
1505         return NULL;
1506 }
1507
1508 static __inline__ void drm_core_dropmap(struct drm_map *map)
1509 {
1510 }
1511
1512 /* FreeBSD compatibility macros */
1513 #define PROC_LOCK(p)
1514 #define PROC_UNLOCK(p)
1515
1516 #define VM_OBJECT_RLOCK(object)         VM_OBJECT_LOCK(object)
1517 #define VM_OBJECT_RUNLOCK(object)       VM_OBJECT_UNLOCK(object)
1518 #define VM_OBJECT_WLOCK(object)         VM_OBJECT_LOCK(object)
1519 #define VM_OBJECT_WUNLOCK(object)       VM_OBJECT_UNLOCK(object)
1520
1521 #define CTR2(one,two,three,four)
1522
1523 #define DRM_PCIE_SPEED_25 1
1524 #define DRM_PCIE_SPEED_50 2
1525 #define DRM_PCIE_SPEED_80 4
1526
1527 extern int drm_pcie_get_speed_cap_mask(struct drm_device *dev, u32 *speed_mask);
1528
1529 #define drm_can_sleep() (DRM_HZ & 1)
1530
1531 #endif /* __KERNEL__ */
1532 #endif /* _DRM_P_H_ */