blob: c9cc618dbcfc39ac139116f2eee8d0e27db32583 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/**
Dave Airlieb5e89ed2005-09-25 14:28:13 +10002 * \file drmP.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 * Private header for Direct Rendering Manager
Dave Airlieb5e89ed2005-09-25 14:28:13 +10004 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 * \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 * All rights reserved.
13 *
14 * Permission is hereby granted, free of charge, to any person obtaining a
15 * copy of this software and associated documentation files (the "Software"),
16 * to deal in the Software without restriction, including without limitation
17 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
18 * and/or sell copies of the Software, and to permit persons to whom the
19 * Software is furnished to do so, subject to the following conditions:
20 *
21 * The above copyright notice and this permission notice (including the next
22 * paragraph) shall be included in all copies or substantial portions of the
23 * Software.
24 *
25 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
26 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
27 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
28 * VA LINUX SYSTEMS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
29 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
30 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
31 * OTHER DEALINGS IN THE SOFTWARE.
32 */
33
34#ifndef _DRM_P_H_
35#define _DRM_P_H_
36
37/* If you want the memory alloc debug functionality, change define below */
38/* #define DEBUG_MEMORY */
39
40#ifdef __KERNEL__
41#ifdef __alpha__
42/* add include of current.h so that "current" is defined
43 * before static inline funcs in wait.h. Doing this so we
44 * can build the DRM (part of PI DRI). 4/21/2000 S + B */
45#include <asm/current.h>
Dave Airlieb5e89ed2005-09-25 14:28:13 +100046#endif /* __alpha__ */
Linus Torvalds1da177e2005-04-16 15:20:36 -070047#include <linux/module.h>
48#include <linux/kernel.h>
49#include <linux/miscdevice.h>
50#include <linux/fs.h>
51#include <linux/proc_fs.h>
52#include <linux/init.h>
53#include <linux/file.h>
54#include <linux/pci.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070055#include <linux/jiffies.h>
56#include <linux/smp_lock.h> /* For (un)lock_kernel */
Dave Airlieb05c2382008-03-17 10:24:24 +100057#include <linux/dma-mapping.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070058#include <linux/mm.h>
59#include <linux/cdev.h>
Dave Airlie30e2fb12006-02-02 19:37:46 +110060#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070061#if defined(__alpha__) || defined(__powerpc__)
Dave Airlieb5e89ed2005-09-25 14:28:13 +100062#include <asm/pgtable.h> /* For pte_wrprotect */
Linus Torvalds1da177e2005-04-16 15:20:36 -070063#endif
64#include <asm/io.h>
65#include <asm/mman.h>
66#include <asm/uaccess.h>
67#ifdef CONFIG_MTRR
68#include <asm/mtrr.h>
69#endif
70#if defined(CONFIG_AGP) || defined(CONFIG_AGP_MODULE)
71#include <linux/types.h>
72#include <linux/agp_backend.h>
73#endif
74#include <linux/workqueue.h>
75#include <linux/poll.h>
76#include <asm/pgalloc.h>
77#include "drm.h"
78
Dave Airlie62968142007-07-17 10:46:52 +100079#include <linux/idr.h>
80
Linus Torvalds1da177e2005-04-16 15:20:36 -070081#define __OS_HAS_AGP (defined(CONFIG_AGP) || (defined(CONFIG_AGP_MODULE) && defined(MODULE)))
82#define __OS_HAS_MTRR (defined(CONFIG_MTRR))
83
Eric Anholtc153f452007-09-03 12:06:45 +100084struct drm_file;
85struct drm_device;
86
Linus Torvalds1da177e2005-04-16 15:20:36 -070087#include "drm_os_linux.h"
Thomas Hellstrom3a1bd922006-08-07 21:30:28 +100088#include "drm_hashtab.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070089
90/***********************************************************************/
91/** \name DRM template customization defaults */
92/*@{*/
93
94/* driver capabilities and requirements mask */
95#define DRIVER_USE_AGP 0x1
96#define DRIVER_REQUIRE_AGP 0x2
97#define DRIVER_USE_MTRR 0x4
98#define DRIVER_PCI_DMA 0x8
99#define DRIVER_SG 0x10
100#define DRIVER_HAVE_DMA 0x20
101#define DRIVER_HAVE_IRQ 0x40
102#define DRIVER_IRQ_SHARED 0x80
Dave Airlieaf6061a2008-05-07 12:15:39 +1000103#define DRIVER_IRQ_VBL 0x100
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104#define DRIVER_DMA_QUEUE 0x200
Dave Airlieb84397d62005-07-10 14:46:12 +1000105#define DRIVER_FB_DMA 0x400
Dave Airlieaf6061a2008-05-07 12:15:39 +1000106#define DRIVER_IRQ_VBL2 0x800
Eric Anholt673a3942008-07-30 12:06:12 -0700107#define DRIVER_GEM 0x1000
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108
109/***********************************************************************/
110/** \name Begin the DRM... */
111/*@{*/
112
113#define DRM_DEBUG_CODE 2 /**< Include debugging code if > 1, then
114 also include looping detection. */
115
Thomas Hellstrom8669cbc2006-08-07 22:22:10 +1000116#define DRM_MAGIC_HASH_ORDER 4 /**< Size of key hash table. Must be power of 2. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117#define DRM_KERNEL_CONTEXT 0 /**< Change drm_resctx if changed */
118#define DRM_RESERVED_CONTEXTS 1 /**< Change drm_resctx if changed */
119#define DRM_LOOPING_LIMIT 5000000
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120#define DRM_TIME_SLICE (HZ/20) /**< Time slice for GLXContexts */
121#define DRM_LOCK_SLICE 1 /**< Time slice for lock, in jiffies */
122
123#define DRM_FLAG_DEBUG 0x01
124
125#define DRM_MEM_DMA 0
126#define DRM_MEM_SAREA 1
127#define DRM_MEM_DRIVER 2
128#define DRM_MEM_MAGIC 3
129#define DRM_MEM_IOCTLS 4
130#define DRM_MEM_MAPS 5
131#define DRM_MEM_VMAS 6
132#define DRM_MEM_BUFS 7
133#define DRM_MEM_SEGS 8
134#define DRM_MEM_PAGES 9
135#define DRM_MEM_FILES 10
136#define DRM_MEM_QUEUES 11
137#define DRM_MEM_CMDS 12
138#define DRM_MEM_MAPPINGS 13
139#define DRM_MEM_BUFLISTS 14
140#define DRM_MEM_AGPLISTS 15
141#define DRM_MEM_TOTALAGP 16
142#define DRM_MEM_BOUNDAGP 17
143#define DRM_MEM_CTXBITMAP 18
144#define DRM_MEM_STUB 19
145#define DRM_MEM_SGLISTS 20
Thomas Hellstrom3a1bd922006-08-07 21:30:28 +1000146#define DRM_MEM_CTXLIST 21
147#define DRM_MEM_MM 22
148#define DRM_MEM_HASHTAB 23
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149
150#define DRM_MAX_CTXBITMAP (PAGE_SIZE * 8)
Thomas Hellstrom8d153f72006-08-07 22:36:47 +1000151#define DRM_MAP_HASH_OFFSET 0x10000000
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000153/*@}*/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154
155/***********************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156/** \name Macros to make printk easier */
157/*@{*/
158
159/**
160 * Error output.
161 *
162 * \param fmt printf() like format string.
163 * \param arg arguments
164 */
165#define DRM_ERROR(fmt, arg...) \
Harvey Harrisonbf9d8922008-04-30 00:55:10 -0700166 printk(KERN_ERR "[" DRM_NAME ":%s] *ERROR* " fmt , __func__ , ##arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167
168/**
169 * Memory error output.
170 *
171 * \param area memory area where the error occurred.
172 * \param fmt printf() like format string.
173 * \param arg arguments
174 */
175#define DRM_MEM_ERROR(area, fmt, arg...) \
Harvey Harrisonbf9d8922008-04-30 00:55:10 -0700176 printk(KERN_ERR "[" DRM_NAME ":%s:%s] *ERROR* " fmt , __func__, \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 drm_mem_stats[area].name , ##arg)
178
179#define DRM_INFO(fmt, arg...) printk(KERN_INFO "[" DRM_NAME "] " fmt , ##arg)
180
181/**
182 * Debug output.
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000183 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 * \param fmt printf() like format string.
185 * \param arg arguments
186 */
187#if DRM_DEBUG_CODE
188#define DRM_DEBUG(fmt, arg...) \
189 do { \
190 if ( drm_debug ) \
191 printk(KERN_DEBUG \
192 "[" DRM_NAME ":%s] " fmt , \
Harvey Harrisonbf9d8922008-04-30 00:55:10 -0700193 __func__ , ##arg); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 } while (0)
195#else
196#define DRM_DEBUG(fmt, arg...) do { } while (0)
197#endif
198
199#define DRM_PROC_LIMIT (PAGE_SIZE-80)
200
201#define DRM_PROC_PRINT(fmt, arg...) \
202 len += sprintf(&buf[len], fmt , ##arg); \
203 if (len > DRM_PROC_LIMIT) { *eof = 1; return len - offset; }
204
205#define DRM_PROC_PRINT_RET(ret, fmt, arg...) \
206 len += sprintf(&buf[len], fmt , ##arg); \
207 if (len > DRM_PROC_LIMIT) { ret; *eof = 1; return len - offset; }
208
209/*@}*/
210
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211/***********************************************************************/
212/** \name Internal types and structures */
213/*@{*/
214
Dave Airlie99a26572005-09-25 13:25:41 +1000215#define DRM_ARRAY_SIZE(x) ARRAY_SIZE(x)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216
217#define DRM_LEFTCOUNT(x) (((x)->rp + (x)->count - (x)->wp) % ((x)->count + 1))
218#define DRM_BUFCOUNT(x) ((x)->count - DRM_LEFTCOUNT(x))
219#define DRM_WAITCOUNT(dev,idx) DRM_BUFCOUNT(&dev->queuelist[idx]->waitlist)
220
221#define DRM_IF_VERSION(maj, min) (maj << 16 | min)
222/**
223 * Get the private SAREA mapping.
224 *
225 * \param _dev DRM device.
226 * \param _ctx context number.
227 * \param _map output mapping.
228 */
229#define DRM_GET_PRIV_SAREA(_dev, _ctx, _map) do { \
230 (_map) = (_dev)->context_sareas[_ctx]; \
231} while(0)
232
233/**
234 * Test that the hardware lock is held by the caller, returning otherwise.
235 *
236 * \param dev DRM device.
237 * \param filp file pointer of the caller.
238 */
Eric Anholtc153f452007-09-03 12:06:45 +1000239#define LOCK_TEST_WITH_RETURN( dev, file_priv ) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240do { \
Dave Airlie7c1c2872008-11-28 14:22:24 +1000241 if (!_DRM_LOCK_IS_HELD(file_priv->master->lock.hw_lock->lock) || \
242 file_priv->master->lock.file_priv != file_priv) { \
Eric Anholtc153f452007-09-03 12:06:45 +1000243 DRM_ERROR( "%s called without lock held, held %d owner %p %p\n",\
Dave Airlie7c1c2872008-11-28 14:22:24 +1000244 __func__, _DRM_LOCK_IS_HELD(file_priv->master->lock.hw_lock->lock),\
245 file_priv->master->lock.file_priv, file_priv); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 return -EINVAL; \
247 } \
248} while (0)
249
250/**
251 * Copy and IOCTL return string to user space
252 */
253#define DRM_COPY( name, value ) \
254 len = strlen( value ); \
255 if ( len > name##_len ) len = name##_len; \
256 name##_len = strlen( value ); \
257 if ( len && name ) { \
258 if ( copy_to_user( name, value, len ) ) \
259 return -EFAULT; \
260 }
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000261
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262/**
263 * Ioctl function type.
264 *
265 * \param inode device inode.
Eric Anholt6c340ea2007-08-25 20:23:09 +1000266 * \param file_priv DRM file private pointer.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 * \param cmd command.
268 * \param arg argument.
269 */
Eric Anholtc153f452007-09-03 12:06:45 +1000270typedef int drm_ioctl_t(struct drm_device *dev, void *data,
271 struct drm_file *file_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272
Dave Airlie9a186642005-06-23 21:29:18 +1000273typedef int drm_ioctl_compat_t(struct file *filp, unsigned int cmd,
274 unsigned long arg);
275
Dave Airliea7a2cc32006-01-02 13:54:04 +1100276#define DRM_AUTH 0x1
277#define DRM_MASTER 0x2
278#define DRM_ROOT_ONLY 0x4
279
Eric Anholtc153f452007-09-03 12:06:45 +1000280struct drm_ioctl_desc {
281 unsigned int cmd;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000282 drm_ioctl_t *func;
Dave Airliea7a2cc32006-01-02 13:54:04 +1100283 int flags;
Eric Anholtc153f452007-09-03 12:06:45 +1000284};
285
286/**
287 * Creates a driver or general drm_ioctl_desc array entry for the given
288 * ioctl, for use by drm_ioctl().
289 */
290#define DRM_IOCTL_DEF(ioctl, func, flags) \
291 [DRM_IOCTL_NR(ioctl)] = {ioctl, func, flags}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292
Dave Airlie8fc2fdf2007-07-11 16:21:47 +1000293struct drm_magic_entry {
Thomas Hellstrom8669cbc2006-08-07 22:22:10 +1000294 struct list_head head;
Dave Airliee0be4282007-07-12 10:26:44 +1000295 struct drm_hash_item hash_item;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000296 struct drm_file *priv;
Dave Airlie8fc2fdf2007-07-11 16:21:47 +1000297};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298
Dave Airlie8fc2fdf2007-07-11 16:21:47 +1000299struct drm_vma_entry {
Dave Airliebd1b3312007-05-26 05:01:51 +1000300 struct list_head head;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 struct vm_area_struct *vma;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000302 pid_t pid;
Dave Airlie8fc2fdf2007-07-11 16:21:47 +1000303};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304
305/**
306 * DMA buffer.
307 */
Dave Airlie056219e2007-07-11 16:17:42 +1000308struct drm_buf {
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000309 int idx; /**< Index into master buflist */
310 int total; /**< Buffer size */
311 int order; /**< log-base-2(total) */
312 int used; /**< Amount of buffer in use (for DMA) */
313 unsigned long offset; /**< Byte offset (used internally) */
314 void *address; /**< Address of buffer */
315 unsigned long bus_address; /**< Bus address of buffer */
316 struct drm_buf *next; /**< Kernel-only: used for free list */
317 __volatile__ int waiting; /**< On kernel DMA queue */
318 __volatile__ int pending; /**< On hardware DMA queue */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 wait_queue_head_t dma_wait; /**< Processes waiting */
Eric Anholt6c340ea2007-08-25 20:23:09 +1000320 struct drm_file *file_priv; /**< Private of holding file descr */
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000321 int context; /**< Kernel queue for this buffer */
322 int while_locked; /**< Dispatch this buffer while locked */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 enum {
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000324 DRM_LIST_NONE = 0,
325 DRM_LIST_FREE = 1,
326 DRM_LIST_WAIT = 2,
327 DRM_LIST_PEND = 3,
328 DRM_LIST_PRIO = 4,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 DRM_LIST_RECLAIM = 5
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000330 } list; /**< Which list we're on */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000332 int dev_priv_size; /**< Size of buffer private storage */
333 void *dev_private; /**< Per-buffer private storage */
Dave Airlie056219e2007-07-11 16:17:42 +1000334};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336/** bufs is one longer than it has to be */
Dave Airliecdd55a22007-07-11 16:32:08 +1000337struct drm_waitlist {
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000338 int count; /**< Number of possible buffers */
Dave Airlie056219e2007-07-11 16:17:42 +1000339 struct drm_buf **bufs; /**< List of pointers to buffers */
340 struct drm_buf **rp; /**< Read pointer */
341 struct drm_buf **wp; /**< Write pointer */
342 struct drm_buf **end; /**< End pointer */
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000343 spinlock_t read_lock;
344 spinlock_t write_lock;
Dave Airliecdd55a22007-07-11 16:32:08 +1000345};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346
Dave Airliecdd55a22007-07-11 16:32:08 +1000347struct drm_freelist {
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000348 int initialized; /**< Freelist in use */
349 atomic_t count; /**< Number of free buffers */
Dave Airlie056219e2007-07-11 16:17:42 +1000350 struct drm_buf *next; /**< End pointer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351
352 wait_queue_head_t waiting; /**< Processes waiting on free bufs */
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000353 int low_mark; /**< Low water mark */
354 int high_mark; /**< High water mark */
355 atomic_t wfh; /**< If waiting for high mark */
356 spinlock_t lock;
Dave Airliecdd55a22007-07-11 16:32:08 +1000357};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358
Dave Airlieddf19b92006-03-19 18:56:12 +1100359typedef struct drm_dma_handle {
360 dma_addr_t busaddr;
361 void *vaddr;
362 size_t size;
363} drm_dma_handle_t;
364
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365/**
366 * Buffer entry. There is one of this for each buffer size order.
367 */
Dave Airliecdd55a22007-07-11 16:32:08 +1000368struct drm_buf_entry {
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000369 int buf_size; /**< size */
370 int buf_count; /**< number of buffers */
Dave Airlie056219e2007-07-11 16:17:42 +1000371 struct drm_buf *buflist; /**< buffer list */
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000372 int seg_count;
373 int page_order;
Dave Airliecdd55a22007-07-11 16:32:08 +1000374 struct drm_dma_handle **seglist;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375
Dave Airliecdd55a22007-07-11 16:32:08 +1000376 struct drm_freelist freelist;
377};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378
379/** File private data */
Dave Airlie84b1fd12007-07-11 15:53:27 +1000380struct drm_file {
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000381 int authenticated;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000382 pid_t pid;
383 uid_t uid;
384 drm_magic_t magic;
385 unsigned long ioctl_count;
Dave Airliebd1b3312007-05-26 05:01:51 +1000386 struct list_head lhead;
Dave Airlie2c14f282008-04-21 16:47:32 +1000387 struct drm_minor *minor;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000388 unsigned long lock_count;
Dave Airlie7c1c2872008-11-28 14:22:24 +1000389
Eric Anholt673a3942008-07-30 12:06:12 -0700390 /** Mapping of mm object handles to object pointers. */
391 struct idr object_idr;
392 /** Lock for synchronization of access to object_idr. */
393 spinlock_t table_lock;
Dave Airlie7c1c2872008-11-28 14:22:24 +1000394
Eric Anholt6c340ea2007-08-25 20:23:09 +1000395 struct file *filp;
Dave Airlie8562b3f2007-11-05 12:37:41 +1000396 void *driver_priv;
Dave Airlie7c1c2872008-11-28 14:22:24 +1000397
398 int is_master; /* this file private is a master for a minor */
399 struct drm_master *master; /* master this node is currently associated with
400 N.B. not always minor->master */
Dave Airlie84b1fd12007-07-11 15:53:27 +1000401};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402
403/** Wait queue */
Dave Airliecdd55a22007-07-11 16:32:08 +1000404struct drm_queue {
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000405 atomic_t use_count; /**< Outstanding uses (+1) */
406 atomic_t finalization; /**< Finalization in progress */
407 atomic_t block_count; /**< Count of processes waiting */
408 atomic_t block_read; /**< Queue blocked for reads */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 wait_queue_head_t read_queue; /**< Processes waiting on block_read */
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000410 atomic_t block_write; /**< Queue blocked for writes */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 wait_queue_head_t write_queue; /**< Processes waiting on block_write */
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000412 atomic_t total_queued; /**< Total queued statistic */
413 atomic_t total_flushed; /**< Total flushes statistic */
414 atomic_t total_locks; /**< Total locks statistics */
Dave Airliec60ce622007-07-11 15:27:12 +1000415 enum drm_ctx_flags flags; /**< Context preserving and 2D-only */
Dave Airliecdd55a22007-07-11 16:32:08 +1000416 struct drm_waitlist waitlist; /**< Pending buffers */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 wait_queue_head_t flush_queue; /**< Processes waiting until flush */
Dave Airliecdd55a22007-07-11 16:32:08 +1000418};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419
420/**
421 * Lock data.
422 */
Dave Airlie55910512007-07-11 16:53:40 +1000423struct drm_lock_data {
Dave Airliec60ce622007-07-11 15:27:12 +1000424 struct drm_hw_lock *hw_lock; /**< Hardware lock */
Dave Airlie8562b3f2007-11-05 12:37:41 +1000425 /** Private of lock holder's file (NULL=kernel) */
426 struct drm_file *file_priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 wait_queue_head_t lock_queue; /**< Queue of blocked processes */
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000428 unsigned long lock_time; /**< Time of last lock in jiffies */
Thomas Hellstrom040ac322007-03-23 13:28:33 +1100429 spinlock_t spinlock;
430 uint32_t kernel_waiters;
431 uint32_t user_waiters;
432 int idle_has_lock;
Dave Airlie55910512007-07-11 16:53:40 +1000433};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434
435/**
436 * DMA data.
437 */
Dave Airliecdd55a22007-07-11 16:32:08 +1000438struct drm_device_dma {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439
Dave Airliecdd55a22007-07-11 16:32:08 +1000440 struct drm_buf_entry bufs[DRM_MAX_ORDER + 1]; /**< buffers, grouped by their size order */
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000441 int buf_count; /**< total number of buffers */
Dave Airlie056219e2007-07-11 16:17:42 +1000442 struct drm_buf **buflist; /**< Vector of pointers into drm_device_dma::bufs */
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000443 int seg_count;
444 int page_count; /**< number of pages */
445 unsigned long *pagelist; /**< page list */
446 unsigned long byte_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 enum {
448 _DRM_DMA_USE_AGP = 0x01,
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000449 _DRM_DMA_USE_SG = 0x02,
George Sapountzis3417f332006-10-24 12:03:04 -0700450 _DRM_DMA_USE_FB = 0x04,
451 _DRM_DMA_USE_PCI_RO = 0x08
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 } flags;
453
Dave Airliecdd55a22007-07-11 16:32:08 +1000454};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000456/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 * AGP memory entry. Stored as a doubly linked list.
458 */
Dave Airlie55910512007-07-11 16:53:40 +1000459struct drm_agp_mem {
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000460 unsigned long handle; /**< handle */
461 DRM_AGP_MEM *memory;
462 unsigned long bound; /**< address */
463 int pages;
Dave Airliebd1b3312007-05-26 05:01:51 +1000464 struct list_head head;
Dave Airlie55910512007-07-11 16:53:40 +1000465};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466
467/**
468 * AGP data.
469 *
470 * \sa drm_agp_init() and drm_device::agp.
471 */
Dave Airlie55910512007-07-11 16:53:40 +1000472struct drm_agp_head {
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000473 DRM_AGP_KERN agp_info; /**< AGP device information */
Dave Airliebd1b3312007-05-26 05:01:51 +1000474 struct list_head memory;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000475 unsigned long mode; /**< AGP mode */
476 struct agp_bridge_data *bridge;
477 int enabled; /**< whether the AGP bus as been enabled */
478 int acquired; /**< whether the AGP device has been acquired */
479 unsigned long base;
480 int agp_mtrr;
481 int cant_use_aperture;
482 unsigned long page_mask;
Dave Airlie55910512007-07-11 16:53:40 +1000483};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484
485/**
486 * Scatter-gather memory.
487 */
Dave Airlie55910512007-07-11 16:53:40 +1000488struct drm_sg_mem {
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000489 unsigned long handle;
490 void *virtual;
491 int pages;
492 struct page **pagelist;
493 dma_addr_t *busaddr;
Dave Airlie55910512007-07-11 16:53:40 +1000494};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495
Dave Airlie55910512007-07-11 16:53:40 +1000496struct drm_sigdata {
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000497 int context;
Dave Airliec60ce622007-07-11 15:27:12 +1000498 struct drm_hw_lock *lock;
Dave Airlie55910512007-07-11 16:53:40 +1000499};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500
Dave Airlie8562b3f2007-11-05 12:37:41 +1000501
502/*
503 * Generic memory manager structs
504 */
505
506struct drm_mm_node {
507 struct list_head fl_entry;
508 struct list_head ml_entry;
509 int free;
510 unsigned long start;
511 unsigned long size;
512 struct drm_mm *mm;
513 void *private;
514};
515
516struct drm_mm {
517 struct list_head fl_entry;
518 struct list_head ml_entry;
519};
520
521
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522/**
523 * Mappings list
524 */
Dave Airlie55910512007-07-11 16:53:40 +1000525struct drm_map_list {
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000526 struct list_head head; /**< list head */
Dave Airliee0be4282007-07-12 10:26:44 +1000527 struct drm_hash_item hash;
Dave Airliec60ce622007-07-11 15:27:12 +1000528 struct drm_map *map; /**< mapping */
Dave Airlie8562b3f2007-11-05 12:37:41 +1000529 uint64_t user_token;
Dave Airlie7c1c2872008-11-28 14:22:24 +1000530 struct drm_master *master;
Dave Airlie55910512007-07-11 16:53:40 +1000531};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532
Dave Airliec60ce622007-07-11 15:27:12 +1000533typedef struct drm_map drm_local_map_t;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534
535/**
536 * Context handle list
537 */
Dave Airlie55910512007-07-11 16:53:40 +1000538struct drm_ctx_list {
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000539 struct list_head head; /**< list head */
540 drm_context_t handle; /**< context handle */
Dave Airlie84b1fd12007-07-11 15:53:27 +1000541 struct drm_file *tag; /**< associated fd private data */
Dave Airlie55910512007-07-11 16:53:40 +1000542};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543
Dave Airlie55910512007-07-11 16:53:40 +1000544struct drm_vbl_sig {
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000545 struct list_head head;
546 unsigned int sequence;
547 struct siginfo info;
548 struct task_struct *task;
Dave Airlie55910512007-07-11 16:53:40 +1000549};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550
Dave Airlieea98a922005-09-11 20:28:11 +1000551/* location of GART table */
552#define DRM_ATI_GART_MAIN 1
553#define DRM_ATI_GART_FB 2
554
Dave Airlief2b04cd2007-05-08 15:19:23 +1000555#define DRM_ATI_GART_PCI 1
556#define DRM_ATI_GART_PCIE 2
557#define DRM_ATI_GART_IGP 3
558
Dave Airlie55910512007-07-11 16:53:40 +1000559struct drm_ati_pcigart_info {
Dave Airlieea98a922005-09-11 20:28:11 +1000560 int gart_table_location;
Dave Airlief2b04cd2007-05-08 15:19:23 +1000561 int gart_reg_if;
Dave Airlief26c4732006-01-02 17:18:39 +1100562 void *addr;
Dave Airlieea98a922005-09-11 20:28:11 +1000563 dma_addr_t bus_addr;
Dave Airlieb05c2382008-03-17 10:24:24 +1000564 dma_addr_t table_mask;
565 struct drm_dma_handle *table_handle;
Dave Airlief26c4732006-01-02 17:18:39 +1100566 drm_local_map_t mapping;
Dave Airlief2b04cd2007-05-08 15:19:23 +1000567 int table_size;
Dave Airlie55910512007-07-11 16:53:40 +1000568};
Dave Airlieea98a922005-09-11 20:28:11 +1000569
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570/**
Eric Anholt673a3942008-07-30 12:06:12 -0700571 * This structure defines the drm_mm memory object, which will be used by the
572 * DRM for its buffer objects.
573 */
574struct drm_gem_object {
575 /** Reference count of this object */
576 struct kref refcount;
577
578 /** Handle count of this object. Each handle also holds a reference */
579 struct kref handlecount;
580
581 /** Related drm device */
582 struct drm_device *dev;
583
584 /** File representing the shmem storage */
585 struct file *filp;
586
587 /**
588 * Size of the object, in bytes. Immutable over the object's
589 * lifetime.
590 */
591 size_t size;
592
593 /**
594 * Global name for this object, starts at 1. 0 means unnamed.
595 * Access is covered by the object_name_lock in the related drm_device
596 */
597 int name;
598
599 /**
600 * Memory domains. These monitor which caches contain read/write data
601 * related to the object. When transitioning from one set of domains
602 * to another, the driver is called to ensure that caches are suitably
603 * flushed and invalidated
604 */
605 uint32_t read_domains;
606 uint32_t write_domain;
607
608 /**
609 * While validating an exec operation, the
610 * new read/write domain values are computed here.
611 * They will be transferred to the above values
612 * at the point that any cache flushing occurs
613 */
614 uint32_t pending_read_domains;
615 uint32_t pending_write_domain;
616
617 void *driver_private;
618};
619
Dave Airlie7c1c2872008-11-28 14:22:24 +1000620/* per-master structure */
621struct drm_master {
622
623 struct kref refcount; /* refcount for this master */
624
625 struct list_head head; /**< each minor contains a list of masters */
626 struct drm_minor *minor; /**< link back to minor we are a master for */
627
628 char *unique; /**< Unique identifier: e.g., busid */
629 int unique_len; /**< Length of unique field */
Vegard Nossum1147c9c2008-12-02 13:38:47 +1000630 int unique_size; /**< amount allocated */
Dave Airlie7c1c2872008-11-28 14:22:24 +1000631
632 int blocked; /**< Blocked due to VC switch? */
633
634 /** \name Authentication */
635 /*@{ */
636 struct drm_open_hash magiclist;
637 struct list_head magicfree;
638 /*@} */
639
640 struct drm_lock_data lock; /**< Information on hardware lock */
641
642 void *driver_priv; /**< Private structure for driver to use */
643};
644
Eric Anholt673a3942008-07-30 12:06:12 -0700645/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 * DRM driver structure. This structure represent the common code for
647 * a family of cards. There will one drm_device for each card present
648 * in this family
649 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650struct drm_driver {
Dave Airlie22eae942005-11-10 22:16:34 +1100651 int (*load) (struct drm_device *, unsigned long flags);
652 int (*firstopen) (struct drm_device *);
Dave Airlie84b1fd12007-07-11 15:53:27 +1000653 int (*open) (struct drm_device *, struct drm_file *);
Eric Anholt6c340ea2007-08-25 20:23:09 +1000654 void (*preclose) (struct drm_device *, struct drm_file *file_priv);
Dave Airlie84b1fd12007-07-11 15:53:27 +1000655 void (*postclose) (struct drm_device *, struct drm_file *);
Dave Airlie22eae942005-11-10 22:16:34 +1100656 void (*lastclose) (struct drm_device *);
657 int (*unload) (struct drm_device *);
Dave Airlieb932ccb2008-02-20 10:02:20 +1000658 int (*suspend) (struct drm_device *, pm_message_t state);
Jesse Barnese8b962b2007-11-22 14:02:38 +1000659 int (*resume) (struct drm_device *);
Eric Anholtc153f452007-09-03 12:06:45 +1000660 int (*dma_ioctl) (struct drm_device *dev, void *data, struct drm_file *file_priv);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000661 void (*dma_ready) (struct drm_device *);
662 int (*dma_quiescent) (struct drm_device *);
Dave Airlie84b1fd12007-07-11 15:53:27 +1000663 int (*context_ctor) (struct drm_device *dev, int context);
664 int (*context_dtor) (struct drm_device *dev, int context);
665 int (*kernel_context_switch) (struct drm_device *dev, int old,
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000666 int new);
Dave Airlieaf6061a2008-05-07 12:15:39 +1000667 void (*kernel_context_switch_unlock) (struct drm_device *dev);
Dave Airlieaf6061a2008-05-07 12:15:39 +1000668 int (*dri_library_name) (struct drm_device *dev, char *buf);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000669
Dave Airliecda17382005-07-10 17:31:26 +1000670 /**
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700671 * get_vblank_counter - get raw hardware vblank counter
672 * @dev: DRM device
673 * @crtc: counter to fetch
674 *
675 * Driver callback for fetching a raw hardware vblank counter
676 * for @crtc. If a device doesn't have a hardware counter, the
677 * driver can simply return the value of drm_vblank_count and
678 * make the enable_vblank() and disable_vblank() hooks into no-ops,
679 * leaving interrupts enabled at all times.
680 *
681 * Wraparound handling and loss of events due to modesetting is dealt
682 * with in the DRM core code.
683 *
684 * RETURNS
685 * Raw vblank counter value.
686 */
687 u32 (*get_vblank_counter) (struct drm_device *dev, int crtc);
688
689 /**
690 * enable_vblank - enable vblank interrupt events
691 * @dev: DRM device
692 * @crtc: which irq to enable
693 *
694 * Enable vblank interrupts for @crtc. If the device doesn't have
695 * a hardware vblank counter, this routine should be a no-op, since
696 * interrupts will have to stay on to keep the count accurate.
697 *
698 * RETURNS
699 * Zero on success, appropriate errno if the given @crtc's vblank
700 * interrupt cannot be enabled.
701 */
702 int (*enable_vblank) (struct drm_device *dev, int crtc);
703
704 /**
705 * disable_vblank - disable vblank interrupt events
706 * @dev: DRM device
707 * @crtc: which irq to enable
708 *
709 * Disable vblank interrupts for @crtc. If the device doesn't have
710 * a hardware vblank counter, this routine should be a no-op, since
711 * interrupts will have to stay on to keep the count accurate.
712 */
713 void (*disable_vblank) (struct drm_device *dev, int crtc);
714
715 /**
Dave Airliecda17382005-07-10 17:31:26 +1000716 * Called by \c drm_device_is_agp. Typically used to determine if a
717 * card is really attached to AGP or not.
718 *
719 * \param dev DRM device handle
720 *
721 * \returns
722 * One of three values is returned depending on whether or not the
723 * card is absolutely \b not AGP (return of 0), absolutely \b is AGP
724 * (return of 1), or may or may not be AGP (return of 2).
725 */
Dave Airlie84b1fd12007-07-11 15:53:27 +1000726 int (*device_is_agp) (struct drm_device *dev);
Dave Airliecda17382005-07-10 17:31:26 +1000727
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 /* these have to be filled in */
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000729
Dave Airlie22eae942005-11-10 22:16:34 +1100730 irqreturn_t(*irq_handler) (DRM_IRQ_ARGS);
Dave Airlie84b1fd12007-07-11 15:53:27 +1000731 void (*irq_preinstall) (struct drm_device *dev);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700732 int (*irq_postinstall) (struct drm_device *dev);
Dave Airlie84b1fd12007-07-11 15:53:27 +1000733 void (*irq_uninstall) (struct drm_device *dev);
Eric Anholt6c340ea2007-08-25 20:23:09 +1000734 void (*reclaim_buffers) (struct drm_device *dev,
735 struct drm_file * file_priv);
Dave Airlied985c102006-01-02 21:32:48 +1100736 void (*reclaim_buffers_locked) (struct drm_device *dev,
Eric Anholt6c340ea2007-08-25 20:23:09 +1000737 struct drm_file *file_priv);
Thomas Hellstrom040ac322007-03-23 13:28:33 +1100738 void (*reclaim_buffers_idlelocked) (struct drm_device *dev,
Eric Anholt6c340ea2007-08-25 20:23:09 +1000739 struct drm_file *file_priv);
Dave Airliec60ce622007-07-11 15:27:12 +1000740 unsigned long (*get_map_ofs) (struct drm_map * map);
Dave Airlie84b1fd12007-07-11 15:53:27 +1000741 unsigned long (*get_reg_ofs) (struct drm_device *dev);
742 void (*set_version) (struct drm_device *dev,
Dave Airliec60ce622007-07-11 15:27:12 +1000743 struct drm_set_version *sv);
Dave Airlie22eae942005-11-10 22:16:34 +1100744
Dave Airlie7c1c2872008-11-28 14:22:24 +1000745 /* Master routines */
746 int (*master_create)(struct drm_device *dev, struct drm_master *master);
747 void (*master_destroy)(struct drm_device *dev, struct drm_master *master);
748
Eric Anholt673a3942008-07-30 12:06:12 -0700749 int (*proc_init)(struct drm_minor *minor);
750 void (*proc_cleanup)(struct drm_minor *minor);
751
752 /**
753 * Driver-specific constructor for drm_gem_objects, to set up
754 * obj->driver_private.
755 *
756 * Returns 0 on success.
757 */
758 int (*gem_init_object) (struct drm_gem_object *obj);
759 void (*gem_free_object) (struct drm_gem_object *obj);
760
Dave Airlie22eae942005-11-10 22:16:34 +1100761 int major;
762 int minor;
763 int patchlevel;
764 char *name;
765 char *desc;
766 char *date;
767
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 u32 driver_features;
769 int dev_priv_size;
Eric Anholtc153f452007-09-03 12:06:45 +1000770 struct drm_ioctl_desc *ioctls;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 int num_ioctls;
772 struct file_operations fops;
773 struct pci_driver pci_driver;
Dave Airliee7f7ab42008-11-28 13:43:47 +1000774 /* List of devices hanging off this driver */
775 struct list_head device_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776};
777
Dave Airlie2c14f282008-04-21 16:47:32 +1000778#define DRM_MINOR_UNASSIGNED 0
779#define DRM_MINOR_LEGACY 1
780
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781/**
Dave Airlie2c14f282008-04-21 16:47:32 +1000782 * DRM minor structure. This structure represents a drm minor number.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 */
Dave Airlie2c14f282008-04-21 16:47:32 +1000784struct drm_minor {
785 int index; /**< Minor device number */
786 int type; /**< Control or render */
787 dev_t device; /**< Device number for mknod */
788 struct device kdev; /**< Linux device */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 struct drm_device *dev;
790 struct proc_dir_entry *dev_root; /**< proc directory entry */
Dave Airlie7c1c2872008-11-28 14:22:24 +1000791 struct drm_master *master; /* currently active master for this node */
792 struct list_head master_list;
Dave Airlie84b1fd12007-07-11 15:53:27 +1000793};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794
795/**
796 * DRM device structure. This structure represent a complete card that
797 * may contain multiple heads.
798 */
Dave Airlie84b1fd12007-07-11 15:53:27 +1000799struct drm_device {
Dave Airliee7f7ab42008-11-28 13:43:47 +1000800 struct list_head driver_item; /**< list of devices per driver */
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000801 char *devname; /**< For /proc/interrupts */
802 int if_version; /**< Highest interface version set */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 /** \name Locks */
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000805 /*@{ */
806 spinlock_t count_lock; /**< For inuse, drm_device::open_count, drm_device::buf_use */
Dave Airlie30e2fb12006-02-02 19:37:46 +1100807 struct mutex struct_mutex; /**< For others */
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000808 /*@} */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809
810 /** \name Usage Counters */
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000811 /*@{ */
812 int open_count; /**< Outstanding files open */
813 atomic_t ioctl_count; /**< Outstanding IOCTLs pending */
814 atomic_t vma_count; /**< Outstanding vma areas open */
815 int buf_use; /**< Buffers in use -- cannot alloc */
816 atomic_t buf_alloc; /**< Buffer allocation in progress */
817 /*@} */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818
819 /** \name Performance counters */
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000820 /*@{ */
821 unsigned long counters;
Dave Airliec60ce622007-07-11 15:27:12 +1000822 enum drm_stat_type types[15];
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000823 atomic_t counts[15];
824 /*@} */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825
Dave Airliebd1b3312007-05-26 05:01:51 +1000826 struct list_head filelist;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827
828 /** \name Memory management */
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000829 /*@{ */
Dave Airliebd1b3312007-05-26 05:01:51 +1000830 struct list_head maplist; /**< Linked list of regions */
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000831 int map_count; /**< Number of mappable regions */
Dave Airliee0be4282007-07-12 10:26:44 +1000832 struct drm_open_hash map_hash; /**< User token hash table for maps */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833
834 /** \name Context handle management */
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000835 /*@{ */
Dave Airliebd1b3312007-05-26 05:01:51 +1000836 struct list_head ctxlist; /**< Linked list of context handles */
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000837 int ctx_count; /**< Number of context handles */
Dave Airlie30e2fb12006-02-02 19:37:46 +1100838 struct mutex ctxlist_mutex; /**< For ctxlist */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839
Dave Airlie62968142007-07-17 10:46:52 +1000840 struct idr ctx_idr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841
Dave Airliebd1b3312007-05-26 05:01:51 +1000842 struct list_head vmalist; /**< List of vmas (for debugging) */
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000843 /*@} */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844
845 /** \name DMA queues (contexts) */
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000846 /*@{ */
847 int queue_count; /**< Number of active DMA queues */
848 int queue_reserved; /**< Number of reserved DMA queues */
849 int queue_slots; /**< Actual length of queuelist */
Dave Airliecdd55a22007-07-11 16:32:08 +1000850 struct drm_queue **queuelist; /**< Vector of pointers to DMA queues */
851 struct drm_device_dma *dma; /**< Optional pointer for DMA support */
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000852 /*@} */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853
854 /** \name Context support */
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000855 /*@{ */
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000856 int irq_enabled; /**< True if irq handler is enabled */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 __volatile__ long context_flag; /**< Context swapping flag */
858 __volatile__ long interrupt_flag; /**< Interruption handler flag */
859 __volatile__ long dma_flag; /**< DMA dispatch flag */
860 struct timer_list timer; /**< Timer for delaying ctx switch */
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000861 wait_queue_head_t context_wait; /**< Processes waiting on ctx switch */
862 int last_checked; /**< Last context checked for DMA */
863 int last_context; /**< Last current context */
864 unsigned long last_switch; /**< jiffies at last context switch */
865 /*@} */
866
867 struct work_struct work;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 /** \name VBLANK IRQ support */
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000869 /*@{ */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700871 /*
872 * At load time, disabling the vblank interrupt won't be allowed since
873 * old clients may not call the modeset ioctl and therefore misbehave.
874 * Once the modeset ioctl *has* been called though, we can safely
875 * disable them when unused.
876 */
877 int vblank_disable_allowed;
878
879 wait_queue_head_t *vbl_queue; /**< VBLANK wait queue */
880 atomic_t *_vblank_count; /**< number of VBLANK interrupts (driver must alloc the right number of counters) */
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000881 spinlock_t vbl_lock;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700882 struct list_head *vbl_sigs; /**< signal list to send on VBLANK */
883 atomic_t vbl_signal_pending; /* number of signals pending on all crtcs*/
884 atomic_t *vblank_refcount; /* number of users of vblank interruptsper crtc */
885 u32 *last_vblank; /* protected by dev->vbl_lock, used */
886 /* for wraparound handling */
887 int *vblank_enabled; /* so we don't call enable more than
888 once per disable */
889 int *vblank_inmodeset; /* Display driver is setting mode */
890 struct timer_list vblank_disable_timer;
891
892 u32 max_vblank_count; /**< size of vblank counter register */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000894 /*@} */
895 cycles_t ctx_start;
896 cycles_t lck_start;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898 struct fasync_struct *buf_async;/**< Processes waiting for SIGIO */
899 wait_queue_head_t buf_readers; /**< Processes waiting to read */
900 wait_queue_head_t buf_writers; /**< Processes waiting to ctx switch */
901
Dave Airlie55910512007-07-11 16:53:40 +1000902 struct drm_agp_head *agp; /**< AGP data */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000904 struct pci_dev *pdev; /**< PCI device structure */
Eric Anholt2f02cc32006-09-22 04:19:34 +1000905 int pci_vendor; /**< PCI vendor id */
906 int pci_device; /**< PCI device id */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907#ifdef __alpha__
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908 struct pci_controller *hose;
909#endif
Dave Airlie55910512007-07-11 16:53:40 +1000910 struct drm_sg_mem *sg; /**< Scatter gather memory */
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700911 int num_crtcs; /**< Number of CRTCs on this device */
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000912 void *dev_private; /**< device private data */
Dave Airlie55910512007-07-11 16:53:40 +1000913 struct drm_sigdata sigdata; /**< For block_all_signals */
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000914 sigset_t sigmask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000916 struct drm_driver *driver;
917 drm_local_map_t *agp_buffer_map;
Dave Airlied1f2b552005-08-05 22:11:22 +1000918 unsigned int agp_buffer_token;
Dave Airlie2c14f282008-04-21 16:47:32 +1000919 struct drm_minor *primary; /**< render type primary screen head */
=?utf-8?q?Michel_D=C3=A4nzer?=bea56792006-10-24 23:04:19 +1000920
921 /** \name Drawable information */
922 /*@{ */
923 spinlock_t drw_lock;
Dave Airlied4e2cbe2007-07-17 10:55:47 +1000924 struct idr drw_idr;
=?utf-8?q?Michel_D=C3=A4nzer?=bea56792006-10-24 23:04:19 +1000925 /*@} */
Eric Anholt673a3942008-07-30 12:06:12 -0700926
927 /** \name GEM information */
928 /*@{ */
929 spinlock_t object_name_lock;
930 struct idr object_name_idr;
931 atomic_t object_count;
932 atomic_t object_memory;
933 atomic_t pin_count;
934 atomic_t pin_memory;
935 atomic_t gtt_count;
936 atomic_t gtt_memory;
937 uint32_t gtt_total;
938 uint32_t invalidate_domains; /* domains pending invalidation */
939 uint32_t flush_domains; /* domains pending flush */
940 /*@} */
941
Dave Airlie84b1fd12007-07-11 15:53:27 +1000942};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943
Jesse Barnes9bfbd5c2008-09-15 15:00:33 -0700944static inline int drm_dev_to_irq(struct drm_device *dev)
945{
946 return dev->pdev->irq;
947}
948
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000949static __inline__ int drm_core_check_feature(struct drm_device *dev,
950 int feature)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951{
952 return ((dev->driver->driver_features & feature) ? 1 : 0);
953}
954
Dave Airlie33229602006-08-07 20:23:42 +1000955#ifdef __alpha__
Jay Estabrook62442702007-03-11 11:46:27 +1100956#define drm_get_pci_domain(dev) dev->hose->index
Dave Airlie33229602006-08-07 20:23:42 +1000957#else
Dave Airlie9b1a51b2006-09-22 03:37:19 +1000958#define drm_get_pci_domain(dev) 0
Dave Airlie33229602006-08-07 20:23:42 +1000959#endif
960
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961#if __OS_HAS_AGP
962static inline int drm_core_has_AGP(struct drm_device *dev)
963{
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000964 return drm_core_check_feature(dev, DRIVER_USE_AGP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965}
966#else
967#define drm_core_has_AGP(dev) (0)
968#endif
969
970#if __OS_HAS_MTRR
971static inline int drm_core_has_MTRR(struct drm_device *dev)
972{
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000973 return drm_core_check_feature(dev, DRIVER_USE_MTRR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974}
Dave Airlie269dc512006-01-02 16:23:01 +1100975
976#define DRM_MTRR_WC MTRR_TYPE_WRCOMB
977
978static inline int drm_mtrr_add(unsigned long offset, unsigned long size,
979 unsigned int flags)
980{
981 return mtrr_add(offset, size, flags, 1);
982}
983
984static inline int drm_mtrr_del(int handle, unsigned long offset,
985 unsigned long size, unsigned int flags)
986{
987 return mtrr_del(handle, offset, size);
988}
989
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990#else
991#define drm_core_has_MTRR(dev) (0)
Dave Airlie9c7d4622006-01-12 20:44:30 +1100992
993#define DRM_MTRR_WC 0
994
995static inline int drm_mtrr_add(unsigned long offset, unsigned long size,
996 unsigned int flags)
997{
998 return 0;
999}
1000
1001static inline int drm_mtrr_del(int handle, unsigned long offset,
1002 unsigned long size, unsigned int flags)
1003{
1004 return 0;
1005}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006#endif
1007
1008/******************************************************************/
1009/** \name Internal function definitions */
1010/*@{*/
1011
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012 /* Driver support (drm_drv.h) */
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001013extern int drm_init(struct drm_driver *driver);
1014extern void drm_exit(struct drm_driver *driver);
1015extern int drm_ioctl(struct inode *inode, struct file *filp,
1016 unsigned int cmd, unsigned long arg);
1017extern long drm_compat_ioctl(struct file *filp,
1018 unsigned int cmd, unsigned long arg);
Dave Airlie84b1fd12007-07-11 15:53:27 +10001019extern int drm_lastclose(struct drm_device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020
1021 /* Device support (drm_fops.h) */
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001022extern int drm_open(struct inode *inode, struct file *filp);
1023extern int drm_stub_open(struct inode *inode, struct file *filp);
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001024extern int drm_fasync(int fd, struct file *filp, int on);
1025extern int drm_release(struct inode *inode, struct file *filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026
1027 /* Mapping support (drm_vm.h) */
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001028extern int drm_mmap(struct file *filp, struct vm_area_struct *vma);
Dave Airlieded23352007-11-05 13:07:28 +10001029extern unsigned long drm_core_get_map_ofs(struct drm_map * map);
1030extern unsigned long drm_core_get_reg_ofs(struct drm_device *dev);
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001031extern unsigned int drm_poll(struct file *filp, struct poll_table_struct *wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032
1033 /* Memory management support (drm_memory.h) */
1034#include "drm_memory.h"
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001035extern void drm_mem_init(void);
1036extern int drm_mem_info(char *buf, char **start, off_t offset,
1037 int request, int *eof, void *data);
1038extern void *drm_realloc(void *oldpt, size_t oldsize, size_t size, int area);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039
Dave Airlie84b1fd12007-07-11 15:53:27 +10001040extern DRM_AGP_MEM *drm_alloc_agp(struct drm_device *dev, int pages, u32 type);
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001041extern int drm_free_agp(DRM_AGP_MEM * handle, int pages);
1042extern int drm_bind_agp(DRM_AGP_MEM * handle, unsigned int start);
Eric Anholt673a3942008-07-30 12:06:12 -07001043extern DRM_AGP_MEM *drm_agp_bind_pages(struct drm_device *dev,
1044 struct page **pages,
1045 unsigned long num_pages,
Keith Packardba1eb1d2008-10-14 19:55:10 -07001046 uint32_t gtt_offset,
1047 uint32_t type);
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001048extern int drm_unbind_agp(DRM_AGP_MEM * handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049
1050 /* Misc. IOCTL support (drm_ioctl.h) */
Eric Anholtc153f452007-09-03 12:06:45 +10001051extern int drm_irq_by_busid(struct drm_device *dev, void *data,
1052 struct drm_file *file_priv);
1053extern int drm_getunique(struct drm_device *dev, void *data,
1054 struct drm_file *file_priv);
1055extern int drm_setunique(struct drm_device *dev, void *data,
1056 struct drm_file *file_priv);
1057extern int drm_getmap(struct drm_device *dev, void *data,
1058 struct drm_file *file_priv);
1059extern int drm_getclient(struct drm_device *dev, void *data,
1060 struct drm_file *file_priv);
1061extern int drm_getstats(struct drm_device *dev, void *data,
1062 struct drm_file *file_priv);
1063extern int drm_setversion(struct drm_device *dev, void *data,
1064 struct drm_file *file_priv);
1065extern int drm_noop(struct drm_device *dev, void *data,
1066 struct drm_file *file_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067
1068 /* Context IOCTL support (drm_context.h) */
Eric Anholtc153f452007-09-03 12:06:45 +10001069extern int drm_resctx(struct drm_device *dev, void *data,
1070 struct drm_file *file_priv);
1071extern int drm_addctx(struct drm_device *dev, void *data,
1072 struct drm_file *file_priv);
1073extern int drm_modctx(struct drm_device *dev, void *data,
1074 struct drm_file *file_priv);
1075extern int drm_getctx(struct drm_device *dev, void *data,
1076 struct drm_file *file_priv);
1077extern int drm_switchctx(struct drm_device *dev, void *data,
1078 struct drm_file *file_priv);
1079extern int drm_newctx(struct drm_device *dev, void *data,
1080 struct drm_file *file_priv);
1081extern int drm_rmctx(struct drm_device *dev, void *data,
1082 struct drm_file *file_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083
Dave Airlie84b1fd12007-07-11 15:53:27 +10001084extern int drm_ctxbitmap_init(struct drm_device *dev);
1085extern void drm_ctxbitmap_cleanup(struct drm_device *dev);
1086extern void drm_ctxbitmap_free(struct drm_device *dev, int ctx_handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087
Eric Anholtc153f452007-09-03 12:06:45 +10001088extern int drm_setsareactx(struct drm_device *dev, void *data,
1089 struct drm_file *file_priv);
1090extern int drm_getsareactx(struct drm_device *dev, void *data,
1091 struct drm_file *file_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092
1093 /* Drawable IOCTL support (drm_drawable.h) */
Eric Anholtc153f452007-09-03 12:06:45 +10001094extern int drm_adddraw(struct drm_device *dev, void *data,
1095 struct drm_file *file_priv);
1096extern int drm_rmdraw(struct drm_device *dev, void *data,
1097 struct drm_file *file_priv);
1098extern int drm_update_drawable_info(struct drm_device *dev, void *data,
1099 struct drm_file *file_priv);
Dave Airlie84b1fd12007-07-11 15:53:27 +10001100extern struct drm_drawable_info *drm_get_drawable_info(struct drm_device *dev,
=?utf-8?q?Michel_D=C3=A4nzer?=bea56792006-10-24 23:04:19 +10001101 drm_drawable_t id);
Dave Airlied4e2cbe2007-07-17 10:55:47 +10001102extern void drm_drawable_free_all(struct drm_device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103
1104 /* Authentication IOCTL support (drm_auth.h) */
Eric Anholtc153f452007-09-03 12:06:45 +10001105extern int drm_getmagic(struct drm_device *dev, void *data,
1106 struct drm_file *file_priv);
1107extern int drm_authmagic(struct drm_device *dev, void *data,
1108 struct drm_file *file_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109
Eric Anholt673a3942008-07-30 12:06:12 -07001110/* Cache management (drm_cache.c) */
1111void drm_clflush_pages(struct page *pages[], unsigned long num_pages);
1112
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113 /* Locking IOCTL support (drm_lock.h) */
Eric Anholtc153f452007-09-03 12:06:45 +10001114extern int drm_lock(struct drm_device *dev, void *data,
1115 struct drm_file *file_priv);
1116extern int drm_unlock(struct drm_device *dev, void *data,
1117 struct drm_file *file_priv);
Dave Airlie55910512007-07-11 16:53:40 +10001118extern int drm_lock_take(struct drm_lock_data *lock_data, unsigned int context);
1119extern int drm_lock_free(struct drm_lock_data *lock_data, unsigned int context);
1120extern void drm_idlelock_take(struct drm_lock_data *lock_data);
1121extern void drm_idlelock_release(struct drm_lock_data *lock_data);
Thomas Hellstrom040ac322007-03-23 13:28:33 +11001122
1123/*
1124 * These are exported to drivers so that they can implement fencing using
1125 * DMA quiscent + idle. DMA quiescent usually requires the hardware lock.
1126 */
1127
Eric Anholtc153f452007-09-03 12:06:45 +10001128extern int drm_i_have_hw_lock(struct drm_device *dev, struct drm_file *file_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129
1130 /* Buffer management support (drm_bufs.h) */
Dave Airlie84b1fd12007-07-11 15:53:27 +10001131extern int drm_addbufs_agp(struct drm_device *dev, struct drm_buf_desc * request);
1132extern int drm_addbufs_pci(struct drm_device *dev, struct drm_buf_desc * request);
1133extern int drm_addmap(struct drm_device *dev, unsigned int offset,
Dave Airliec60ce622007-07-11 15:27:12 +10001134 unsigned int size, enum drm_map_type type,
1135 enum drm_map_flags flags, drm_local_map_t ** map_ptr);
Eric Anholtc153f452007-09-03 12:06:45 +10001136extern int drm_addmap_ioctl(struct drm_device *dev, void *data,
1137 struct drm_file *file_priv);
1138extern int drm_rmmap(struct drm_device *dev, drm_local_map_t *map);
1139extern int drm_rmmap_locked(struct drm_device *dev, drm_local_map_t *map);
1140extern int drm_rmmap_ioctl(struct drm_device *dev, void *data,
1141 struct drm_file *file_priv);
1142extern int drm_addbufs(struct drm_device *dev, void *data,
1143 struct drm_file *file_priv);
1144extern int drm_infobufs(struct drm_device *dev, void *data,
1145 struct drm_file *file_priv);
1146extern int drm_markbufs(struct drm_device *dev, void *data,
1147 struct drm_file *file_priv);
1148extern int drm_freebufs(struct drm_device *dev, void *data,
1149 struct drm_file *file_priv);
1150extern int drm_mapbufs(struct drm_device *dev, void *data,
1151 struct drm_file *file_priv);
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001152extern int drm_order(unsigned long size);
Dave Airlie84b1fd12007-07-11 15:53:27 +10001153extern unsigned long drm_get_resource_start(struct drm_device *dev,
Dave Airlie836cf042005-07-10 19:27:04 +10001154 unsigned int resource);
Dave Airlie84b1fd12007-07-11 15:53:27 +10001155extern unsigned long drm_get_resource_len(struct drm_device *dev,
Dave Airlie836cf042005-07-10 19:27:04 +10001156 unsigned int resource);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157
1158 /* DMA support (drm_dma.h) */
Dave Airlie84b1fd12007-07-11 15:53:27 +10001159extern int drm_dma_setup(struct drm_device *dev);
1160extern void drm_dma_takedown(struct drm_device *dev);
Dave Airlie056219e2007-07-11 16:17:42 +10001161extern void drm_free_buffer(struct drm_device *dev, struct drm_buf * buf);
Eric Anholt6c340ea2007-08-25 20:23:09 +10001162extern void drm_core_reclaim_buffers(struct drm_device *dev,
1163 struct drm_file *filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164
1165 /* IRQ support (drm_irq.h) */
Eric Anholtc153f452007-09-03 12:06:45 +10001166extern int drm_control(struct drm_device *dev, void *data,
1167 struct drm_file *file_priv);
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001168extern irqreturn_t drm_irq_handler(DRM_IRQ_ARGS);
Kristian Høgsbergdbb19d32008-08-20 11:04:27 -04001169extern int drm_irq_install(struct drm_device *dev);
Dave Airlie84b1fd12007-07-11 15:53:27 +10001170extern int drm_irq_uninstall(struct drm_device *dev);
1171extern void drm_driver_irq_preinstall(struct drm_device *dev);
1172extern void drm_driver_irq_postinstall(struct drm_device *dev);
1173extern void drm_driver_irq_uninstall(struct drm_device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001175extern int drm_vblank_init(struct drm_device *dev, int num_crtcs);
Dave Airlieaf6061a2008-05-07 12:15:39 +10001176extern int drm_wait_vblank(struct drm_device *dev, void *data,
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001177 struct drm_file *filp);
Dave Airlieaf6061a2008-05-07 12:15:39 +10001178extern int drm_vblank_wait(struct drm_device *dev, unsigned int *vbl_seq);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001179extern u32 drm_vblank_count(struct drm_device *dev, int crtc);
1180extern void drm_handle_vblank(struct drm_device *dev, int crtc);
1181extern int drm_vblank_get(struct drm_device *dev, int crtc);
1182extern void drm_vblank_put(struct drm_device *dev, int crtc);
Keith Packard52440212008-11-18 09:30:25 -08001183extern void drm_vblank_cleanup(struct drm_device *dev);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07001184/* Modesetting support */
1185extern int drm_modeset_ctl(struct drm_device *dev, void *data,
1186 struct drm_file *file_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187
1188 /* AGP/GART support (drm_agpsupport.h) */
Dave Airlie55910512007-07-11 16:53:40 +10001189extern struct drm_agp_head *drm_agp_init(struct drm_device *dev);
Dave Airlie84b1fd12007-07-11 15:53:27 +10001190extern int drm_agp_acquire(struct drm_device *dev);
Eric Anholtc153f452007-09-03 12:06:45 +10001191extern int drm_agp_acquire_ioctl(struct drm_device *dev, void *data,
1192 struct drm_file *file_priv);
Dave Airlie84b1fd12007-07-11 15:53:27 +10001193extern int drm_agp_release(struct drm_device *dev);
Eric Anholtc153f452007-09-03 12:06:45 +10001194extern int drm_agp_release_ioctl(struct drm_device *dev, void *data,
1195 struct drm_file *file_priv);
Dave Airlie84b1fd12007-07-11 15:53:27 +10001196extern int drm_agp_enable(struct drm_device *dev, struct drm_agp_mode mode);
Eric Anholtc153f452007-09-03 12:06:45 +10001197extern int drm_agp_enable_ioctl(struct drm_device *dev, void *data,
1198 struct drm_file *file_priv);
1199extern int drm_agp_info(struct drm_device *dev, struct drm_agp_info *info);
1200extern int drm_agp_info_ioctl(struct drm_device *dev, void *data,
1201 struct drm_file *file_priv);
Dave Airlie84b1fd12007-07-11 15:53:27 +10001202extern int drm_agp_alloc(struct drm_device *dev, struct drm_agp_buffer *request);
Eric Anholtc153f452007-09-03 12:06:45 +10001203extern int drm_agp_alloc_ioctl(struct drm_device *dev, void *data,
1204 struct drm_file *file_priv);
Dave Airlie84b1fd12007-07-11 15:53:27 +10001205extern int drm_agp_free(struct drm_device *dev, struct drm_agp_buffer *request);
Eric Anholtc153f452007-09-03 12:06:45 +10001206extern int drm_agp_free_ioctl(struct drm_device *dev, void *data,
1207 struct drm_file *file_priv);
Dave Airlie84b1fd12007-07-11 15:53:27 +10001208extern int drm_agp_unbind(struct drm_device *dev, struct drm_agp_binding *request);
Eric Anholtc153f452007-09-03 12:06:45 +10001209extern int drm_agp_unbind_ioctl(struct drm_device *dev, void *data,
1210 struct drm_file *file_priv);
Dave Airlie84b1fd12007-07-11 15:53:27 +10001211extern int drm_agp_bind(struct drm_device *dev, struct drm_agp_binding *request);
Eric Anholtc153f452007-09-03 12:06:45 +10001212extern int drm_agp_bind_ioctl(struct drm_device *dev, void *data,
1213 struct drm_file *file_priv);
1214extern DRM_AGP_MEM *drm_agp_allocate_memory(struct agp_bridge_data *bridge, size_t pages, u32 type);
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001215extern int drm_agp_free_memory(DRM_AGP_MEM * handle);
1216extern int drm_agp_bind_memory(DRM_AGP_MEM * handle, off_t start);
1217extern int drm_agp_unbind_memory(DRM_AGP_MEM * handle);
Eric Anholt673a3942008-07-30 12:06:12 -07001218extern void drm_agp_chipset_flush(struct drm_device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219
1220 /* Stub support (drm_stub.h) */
Dave Airlie7c1c2872008-11-28 14:22:24 +10001221extern int drm_setmaster_ioctl(struct drm_device *dev, void *data,
1222 struct drm_file *file_priv);
1223extern int drm_dropmaster_ioctl(struct drm_device *dev, void *data,
1224 struct drm_file *file_priv);
1225struct drm_master *drm_master_create(struct drm_minor *minor);
1226extern struct drm_master *drm_master_get(struct drm_master *master);
1227extern void drm_master_put(struct drm_master **master);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228extern int drm_get_dev(struct pci_dev *pdev, const struct pci_device_id *ent,
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001229 struct drm_driver *driver);
Dave Airlie84b1fd12007-07-11 15:53:27 +10001230extern int drm_put_dev(struct drm_device *dev);
Dave Airlie2c14f282008-04-21 16:47:32 +10001231extern int drm_put_minor(struct drm_minor **minor);
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001232extern unsigned int drm_debug;
Dave Airlie2c14f282008-04-21 16:47:32 +10001233
Greg Kroah-Hartman0650fd52006-01-20 14:08:59 -08001234extern struct class *drm_class;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235extern struct proc_dir_entry *drm_proc_root;
1236
Dave Airlie2c14f282008-04-21 16:47:32 +10001237extern struct idr drm_minors_idr;
1238
Dave Airlieda509d72007-05-26 05:04:51 +10001239extern drm_local_map_t *drm_getsarea(struct drm_device *dev);
1240
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241 /* Proc support (drm_proc.h) */
Dave Airlie2c14f282008-04-21 16:47:32 +10001242extern int drm_proc_init(struct drm_minor *minor, int minor_id,
1243 struct proc_dir_entry *root);
1244extern int drm_proc_cleanup(struct drm_minor *minor, struct proc_dir_entry *root);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245
1246 /* Scatter Gather Support (drm_scatter.h) */
Dave Airlie55910512007-07-11 16:53:40 +10001247extern void drm_sg_cleanup(struct drm_sg_mem * entry);
Eric Anholtc153f452007-09-03 12:06:45 +10001248extern int drm_sg_alloc_ioctl(struct drm_device *dev, void *data,
1249 struct drm_file *file_priv);
1250extern int drm_sg_alloc(struct drm_device *dev, struct drm_scatter_gather * request);
1251extern int drm_sg_free(struct drm_device *dev, void *data,
1252 struct drm_file *file_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001254 /* ATI PCIGART support (ati_pcigart.h) */
Dave Airlie84b1fd12007-07-11 15:53:27 +10001255extern int drm_ati_pcigart_init(struct drm_device *dev,
Dave Airlie55910512007-07-11 16:53:40 +10001256 struct drm_ati_pcigart_info * gart_info);
Dave Airlie84b1fd12007-07-11 15:53:27 +10001257extern int drm_ati_pcigart_cleanup(struct drm_device *dev,
Dave Airlie55910512007-07-11 16:53:40 +10001258 struct drm_ati_pcigart_info * gart_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259
Dave Airlie84b1fd12007-07-11 15:53:27 +10001260extern drm_dma_handle_t *drm_pci_alloc(struct drm_device *dev, size_t size,
Dave Airlie9c8da5e2005-07-10 15:38:56 +10001261 size_t align, dma_addr_t maxaddr);
Dave Airlie84b1fd12007-07-11 15:53:27 +10001262extern void __drm_pci_free(struct drm_device *dev, drm_dma_handle_t * dmah);
1263extern void drm_pci_free(struct drm_device *dev, drm_dma_handle_t * dmah);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264
1265 /* sysfs support (drm_sysfs.c) */
Jesse Barnese8b962b2007-11-22 14:02:38 +10001266struct drm_sysfs_class;
Greg Kroah-Hartman0650fd52006-01-20 14:08:59 -08001267extern struct class *drm_sysfs_create(struct module *owner, char *name);
Jesse Barnese8b962b2007-11-22 14:02:38 +10001268extern void drm_sysfs_destroy(void);
Dave Airlie2c14f282008-04-21 16:47:32 +10001269extern int drm_sysfs_device_add(struct drm_minor *minor);
1270extern void drm_sysfs_device_remove(struct drm_minor *minor);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271
Thomas Hellstrom3a1bd922006-08-07 21:30:28 +10001272/*
1273 * Basic memory manager support (drm_mm.c)
1274 */
Dave Airlie55910512007-07-11 16:53:40 +10001275extern struct drm_mm_node *drm_mm_get_block(struct drm_mm_node * parent,
Thomas Hellstrom3a1bd922006-08-07 21:30:28 +10001276 unsigned long size,
1277 unsigned alignment);
Dave Airlie8562b3f2007-11-05 12:37:41 +10001278extern void drm_mm_put_block(struct drm_mm_node * cur);
Dave Airlie55910512007-07-11 16:53:40 +10001279extern struct drm_mm_node *drm_mm_search_free(const struct drm_mm *mm, unsigned long size,
Thomas Hellstrom3a1bd922006-08-07 21:30:28 +10001280 unsigned alignment, int best_match);
Dave Airlie55910512007-07-11 16:53:40 +10001281extern int drm_mm_init(struct drm_mm *mm, unsigned long start, unsigned long size);
1282extern void drm_mm_takedown(struct drm_mm *mm);
1283extern int drm_mm_clean(struct drm_mm *mm);
1284extern unsigned long drm_mm_tail_space(struct drm_mm *mm);
1285extern int drm_mm_remove_space_from_tail(struct drm_mm *mm, unsigned long size);
1286extern int drm_mm_add_space_to_tail(struct drm_mm *mm, unsigned long size);
Thomas Hellstrom3a1bd922006-08-07 21:30:28 +10001287
Eric Anholt673a3942008-07-30 12:06:12 -07001288/* Graphics Execution Manager library functions (drm_gem.c) */
1289int drm_gem_init(struct drm_device *dev);
1290void drm_gem_object_free(struct kref *kref);
1291struct drm_gem_object *drm_gem_object_alloc(struct drm_device *dev,
1292 size_t size);
1293void drm_gem_object_handle_free(struct kref *kref);
1294
1295static inline void
1296drm_gem_object_reference(struct drm_gem_object *obj)
1297{
1298 kref_get(&obj->refcount);
1299}
1300
1301static inline void
1302drm_gem_object_unreference(struct drm_gem_object *obj)
1303{
1304 if (obj == NULL)
1305 return;
1306
1307 kref_put(&obj->refcount, drm_gem_object_free);
1308}
1309
1310int drm_gem_handle_create(struct drm_file *file_priv,
1311 struct drm_gem_object *obj,
1312 int *handlep);
1313
1314static inline void
1315drm_gem_object_handle_reference(struct drm_gem_object *obj)
1316{
1317 drm_gem_object_reference(obj);
1318 kref_get(&obj->handlecount);
1319}
1320
1321static inline void
1322drm_gem_object_handle_unreference(struct drm_gem_object *obj)
1323{
1324 if (obj == NULL)
1325 return;
1326
1327 /*
1328 * Must bump handle count first as this may be the last
1329 * ref, in which case the object would disappear before we
1330 * checked for a name
1331 */
1332 kref_put(&obj->handlecount, drm_gem_object_handle_free);
1333 drm_gem_object_unreference(obj);
1334}
1335
1336struct drm_gem_object *drm_gem_object_lookup(struct drm_device *dev,
1337 struct drm_file *filp,
1338 int handle);
1339int drm_gem_close_ioctl(struct drm_device *dev, void *data,
1340 struct drm_file *file_priv);
1341int drm_gem_flink_ioctl(struct drm_device *dev, void *data,
1342 struct drm_file *file_priv);
1343int drm_gem_open_ioctl(struct drm_device *dev, void *data,
1344 struct drm_file *file_priv);
1345void drm_gem_open(struct drm_device *dev, struct drm_file *file_private);
1346void drm_gem_release(struct drm_device *dev, struct drm_file *file_private);
1347
Christoph Hellwig004a7722007-01-08 21:56:59 +11001348extern void drm_core_ioremap(struct drm_map *map, struct drm_device *dev);
Dave Airlie242e3df2008-07-15 15:48:05 +10001349extern void drm_core_ioremap_wc(struct drm_map *map, struct drm_device *dev);
Christoph Hellwig004a7722007-01-08 21:56:59 +11001350extern void drm_core_ioremapfree(struct drm_map *map, struct drm_device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001352static __inline__ struct drm_map *drm_core_findmap(struct drm_device *dev,
1353 unsigned int token)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354{
Dave Airlie55910512007-07-11 16:53:40 +10001355 struct drm_map_list *_entry;
Dave Airliebd1b3312007-05-26 05:01:51 +10001356 list_for_each_entry(_entry, &dev->maplist, head)
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001357 if (_entry->user_token == token)
1358 return _entry->map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359 return NULL;
1360}
1361
Dave Airlie84b1fd12007-07-11 15:53:27 +10001362static __inline__ int drm_device_is_agp(struct drm_device *dev)
Dave Airliecda17382005-07-10 17:31:26 +10001363{
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001364 if (dev->driver->device_is_agp != NULL) {
1365 int err = (*dev->driver->device_is_agp) (dev);
1366
Dave Airliecda17382005-07-10 17:31:26 +10001367 if (err != 2) {
1368 return err;
1369 }
1370 }
1371
1372 return pci_find_capability(dev->pdev, PCI_CAP_ID_AGP);
1373}
1374
Dave Airlie84b1fd12007-07-11 15:53:27 +10001375static __inline__ int drm_device_is_pcie(struct drm_device *dev)
Dave Airlieea98a922005-09-11 20:28:11 +10001376{
1377 return pci_find_capability(dev->pdev, PCI_CAP_ID_EXP);
1378}
1379
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380static __inline__ void drm_core_dropmap(struct drm_map *map)
1381{
1382}
1383
1384#ifndef DEBUG_MEMORY
1385/** Wrapper around kmalloc() */
1386static __inline__ void *drm_alloc(size_t size, int area)
1387{
1388 return kmalloc(size, GFP_KERNEL);
1389}
1390
1391/** Wrapper around kfree() */
1392static __inline__ void drm_free(void *pt, size_t size, int area)
1393{
1394 kfree(pt);
1395}
Dave Airlieb9523242005-07-07 20:33:26 +10001396
1397/** Wrapper around kcalloc() */
1398static __inline__ void *drm_calloc(size_t nmemb, size_t size, int area)
1399{
1400 return kcalloc(nmemb, size, GFP_KERNEL);
1401}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402#else
1403extern void *drm_alloc(size_t size, int area);
1404extern void drm_free(void *pt, size_t size, int area);
Dave Airlieb9523242005-07-07 20:33:26 +10001405extern void *drm_calloc(size_t nmemb, size_t size, int area);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406#endif
1407
1408/*@}*/
1409
Dave Airlieb5e89ed2005-09-25 14:28:13 +10001410#endif /* __KERNEL__ */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411#endif