drm: Make drm_local_map use a resource_size_t offset
[deliverable/linux.git] / include / drm / drmP.h
CommitLineData
1da177e4 1/**
b5e89ed5 2 * \file drmP.h
1da177e4 3 * Private header for Direct Rendering Manager
b5e89ed5 4 *
1da177e4
LT
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 * 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>
b5e89ed5 46#endif /* __alpha__ */
1da177e4
LT
47#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>
1da177e4
LT
55#include <linux/jiffies.h>
56#include <linux/smp_lock.h> /* For (un)lock_kernel */
b05c2385 57#include <linux/dma-mapping.h>
1da177e4
LT
58#include <linux/mm.h>
59#include <linux/cdev.h>
30e2fb18 60#include <linux/mutex.h>
1da177e4 61#if defined(__alpha__) || defined(__powerpc__)
b5e89ed5 62#include <asm/pgtable.h> /* For pte_wrprotect */
1da177e4
LT
63#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
62968144
DA
79#include <linux/idr.h>
80
1da177e4
LT
81#define __OS_HAS_AGP (defined(CONFIG_AGP) || (defined(CONFIG_AGP_MODULE) && defined(MODULE)))
82#define __OS_HAS_MTRR (defined(CONFIG_MTRR))
83
c153f45f
EA
84struct drm_file;
85struct drm_device;
86
1da177e4 87#include "drm_os_linux.h"
3a1bd924 88#include "drm_hashtab.h"
1da177e4
LT
89
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
af6061af 103#define DRIVER_IRQ_VBL 0x100
1da177e4 104#define DRIVER_DMA_QUEUE 0x200
b84397d6 105#define DRIVER_FB_DMA 0x400
af6061af 106#define DRIVER_IRQ_VBL2 0x800
673a394b 107#define DRIVER_GEM 0x1000
f453ba04 108#define DRIVER_MODESET 0x2000
1da177e4
LT
109
110/***********************************************************************/
111/** \name Begin the DRM... */
112/*@{*/
113
114#define DRM_DEBUG_CODE 2 /**< Include debugging code if > 1, then
115 also include looping detection. */
116
8669cbc5 117#define DRM_MAGIC_HASH_ORDER 4 /**< Size of key hash table. Must be power of 2. */
1da177e4
LT
118#define DRM_KERNEL_CONTEXT 0 /**< Change drm_resctx if changed */
119#define DRM_RESERVED_CONTEXTS 1 /**< Change drm_resctx if changed */
120#define DRM_LOOPING_LIMIT 5000000
1da177e4
LT
121#define DRM_TIME_SLICE (HZ/20) /**< Time slice for GLXContexts */
122#define DRM_LOCK_SLICE 1 /**< Time slice for lock, in jiffies */
123
124#define DRM_FLAG_DEBUG 0x01
125
126#define DRM_MEM_DMA 0
127#define DRM_MEM_SAREA 1
128#define DRM_MEM_DRIVER 2
129#define DRM_MEM_MAGIC 3
130#define DRM_MEM_IOCTLS 4
131#define DRM_MEM_MAPS 5
132#define DRM_MEM_VMAS 6
133#define DRM_MEM_BUFS 7
134#define DRM_MEM_SEGS 8
135#define DRM_MEM_PAGES 9
136#define DRM_MEM_FILES 10
137#define DRM_MEM_QUEUES 11
138#define DRM_MEM_CMDS 12
139#define DRM_MEM_MAPPINGS 13
140#define DRM_MEM_BUFLISTS 14
141#define DRM_MEM_AGPLISTS 15
142#define DRM_MEM_TOTALAGP 16
143#define DRM_MEM_BOUNDAGP 17
144#define DRM_MEM_CTXBITMAP 18
145#define DRM_MEM_STUB 19
146#define DRM_MEM_SGLISTS 20
3a1bd924
TH
147#define DRM_MEM_CTXLIST 21
148#define DRM_MEM_MM 22
149#define DRM_MEM_HASHTAB 23
1da177e4
LT
150
151#define DRM_MAX_CTXBITMAP (PAGE_SIZE * 8)
8d153f71 152#define DRM_MAP_HASH_OFFSET 0x10000000
1da177e4 153
b5e89ed5 154/*@}*/
1da177e4 155
1da177e4
LT
156/***********************************************************************/
157/** \name Macros to make printk easier */
158/*@{*/
159
160/**
161 * Error output.
162 *
163 * \param fmt printf() like format string.
164 * \param arg arguments
165 */
166#define DRM_ERROR(fmt, arg...) \
bf9d8929 167 printk(KERN_ERR "[" DRM_NAME ":%s] *ERROR* " fmt , __func__ , ##arg)
1da177e4
LT
168
169/**
170 * Memory error output.
171 *
172 * \param area memory area where the error occurred.
173 * \param fmt printf() like format string.
174 * \param arg arguments
175 */
176#define DRM_MEM_ERROR(area, fmt, arg...) \
bf9d8929 177 printk(KERN_ERR "[" DRM_NAME ":%s:%s] *ERROR* " fmt , __func__, \
1da177e4
LT
178 drm_mem_stats[area].name , ##arg)
179
180#define DRM_INFO(fmt, arg...) printk(KERN_INFO "[" DRM_NAME "] " fmt , ##arg)
181
182/**
183 * Debug output.
b5e89ed5 184 *
1da177e4
LT
185 * \param fmt printf() like format string.
186 * \param arg arguments
187 */
188#if DRM_DEBUG_CODE
189#define DRM_DEBUG(fmt, arg...) \
190 do { \
191 if ( drm_debug ) \
192 printk(KERN_DEBUG \
193 "[" DRM_NAME ":%s] " fmt , \
bf9d8929 194 __func__ , ##arg); \
1da177e4
LT
195 } while (0)
196#else
197#define DRM_DEBUG(fmt, arg...) do { } while (0)
198#endif
199
200#define DRM_PROC_LIMIT (PAGE_SIZE-80)
201
202#define DRM_PROC_PRINT(fmt, arg...) \
203 len += sprintf(&buf[len], fmt , ##arg); \
204 if (len > DRM_PROC_LIMIT) { *eof = 1; return len - offset; }
205
206#define DRM_PROC_PRINT_RET(ret, fmt, arg...) \
207 len += sprintf(&buf[len], fmt , ##arg); \
208 if (len > DRM_PROC_LIMIT) { ret; *eof = 1; return len - offset; }
209
210/*@}*/
211
1da177e4
LT
212/***********************************************************************/
213/** \name Internal types and structures */
214/*@{*/
215
99a2657a 216#define DRM_ARRAY_SIZE(x) ARRAY_SIZE(x)
1da177e4
LT
217
218#define DRM_LEFTCOUNT(x) (((x)->rp + (x)->count - (x)->wp) % ((x)->count + 1))
219#define DRM_BUFCOUNT(x) ((x)->count - DRM_LEFTCOUNT(x))
220#define DRM_WAITCOUNT(dev,idx) DRM_BUFCOUNT(&dev->queuelist[idx]->waitlist)
221
222#define DRM_IF_VERSION(maj, min) (maj << 16 | min)
223/**
224 * Get the private SAREA mapping.
225 *
226 * \param _dev DRM device.
227 * \param _ctx context number.
228 * \param _map output mapping.
229 */
230#define DRM_GET_PRIV_SAREA(_dev, _ctx, _map) do { \
231 (_map) = (_dev)->context_sareas[_ctx]; \
232} while(0)
233
234/**
235 * Test that the hardware lock is held by the caller, returning otherwise.
236 *
237 * \param dev DRM device.
238 * \param filp file pointer of the caller.
239 */
c153f45f 240#define LOCK_TEST_WITH_RETURN( dev, file_priv ) \
1da177e4 241do { \
7c1c2871
DA
242 if (!_DRM_LOCK_IS_HELD(file_priv->master->lock.hw_lock->lock) || \
243 file_priv->master->lock.file_priv != file_priv) { \
c153f45f 244 DRM_ERROR( "%s called without lock held, held %d owner %p %p\n",\
7c1c2871
DA
245 __func__, _DRM_LOCK_IS_HELD(file_priv->master->lock.hw_lock->lock),\
246 file_priv->master->lock.file_priv, file_priv); \
1da177e4
LT
247 return -EINVAL; \
248 } \
249} while (0)
250
251/**
252 * Copy and IOCTL return string to user space
253 */
254#define DRM_COPY( name, value ) \
255 len = strlen( value ); \
256 if ( len > name##_len ) len = name##_len; \
257 name##_len = strlen( value ); \
258 if ( len && name ) { \
259 if ( copy_to_user( name, value, len ) ) \
260 return -EFAULT; \
261 }
b5e89ed5 262
1da177e4
LT
263/**
264 * Ioctl function type.
265 *
266 * \param inode device inode.
6c340eac 267 * \param file_priv DRM file private pointer.
1da177e4
LT
268 * \param cmd command.
269 * \param arg argument.
270 */
c153f45f
EA
271typedef int drm_ioctl_t(struct drm_device *dev, void *data,
272 struct drm_file *file_priv);
1da177e4 273
9a186645
DA
274typedef int drm_ioctl_compat_t(struct file *filp, unsigned int cmd,
275 unsigned long arg);
276
a7a2cc31
DA
277#define DRM_AUTH 0x1
278#define DRM_MASTER 0x2
279#define DRM_ROOT_ONLY 0x4
f453ba04 280#define DRM_CONTROL_ALLOW 0x8
a7a2cc31 281
c153f45f
EA
282struct drm_ioctl_desc {
283 unsigned int cmd;
b5e89ed5 284 drm_ioctl_t *func;
a7a2cc31 285 int flags;
c153f45f
EA
286};
287
288/**
289 * Creates a driver or general drm_ioctl_desc array entry for the given
290 * ioctl, for use by drm_ioctl().
291 */
292#define DRM_IOCTL_DEF(ioctl, func, flags) \
293 [DRM_IOCTL_NR(ioctl)] = {ioctl, func, flags}
1da177e4 294
8fc2fdf4 295struct drm_magic_entry {
8669cbc5 296 struct list_head head;
e0be428e 297 struct drm_hash_item hash_item;
b5e89ed5 298 struct drm_file *priv;
8fc2fdf4 299};
1da177e4 300
8fc2fdf4 301struct drm_vma_entry {
bd1b331f 302 struct list_head head;
1da177e4 303 struct vm_area_struct *vma;
b5e89ed5 304 pid_t pid;
8fc2fdf4 305};
1da177e4
LT
306
307/**
308 * DMA buffer.
309 */
056219e2 310struct drm_buf {
b5e89ed5
DA
311 int idx; /**< Index into master buflist */
312 int total; /**< Buffer size */
313 int order; /**< log-base-2(total) */
314 int used; /**< Amount of buffer in use (for DMA) */
315 unsigned long offset; /**< Byte offset (used internally) */
316 void *address; /**< Address of buffer */
317 unsigned long bus_address; /**< Bus address of buffer */
318 struct drm_buf *next; /**< Kernel-only: used for free list */
319 __volatile__ int waiting; /**< On kernel DMA queue */
320 __volatile__ int pending; /**< On hardware DMA queue */
1da177e4 321 wait_queue_head_t dma_wait; /**< Processes waiting */
6c340eac 322 struct drm_file *file_priv; /**< Private of holding file descr */
b5e89ed5
DA
323 int context; /**< Kernel queue for this buffer */
324 int while_locked; /**< Dispatch this buffer while locked */
1da177e4 325 enum {
b5e89ed5
DA
326 DRM_LIST_NONE = 0,
327 DRM_LIST_FREE = 1,
328 DRM_LIST_WAIT = 2,
329 DRM_LIST_PEND = 3,
330 DRM_LIST_PRIO = 4,
1da177e4 331 DRM_LIST_RECLAIM = 5
b5e89ed5 332 } list; /**< Which list we're on */
1da177e4 333
b5e89ed5
DA
334 int dev_priv_size; /**< Size of buffer private storage */
335 void *dev_private; /**< Per-buffer private storage */
056219e2 336};
1da177e4 337
1da177e4 338/** bufs is one longer than it has to be */
cdd55a29 339struct drm_waitlist {
b5e89ed5 340 int count; /**< Number of possible buffers */
056219e2
DA
341 struct drm_buf **bufs; /**< List of pointers to buffers */
342 struct drm_buf **rp; /**< Read pointer */
343 struct drm_buf **wp; /**< Write pointer */
344 struct drm_buf **end; /**< End pointer */
b5e89ed5
DA
345 spinlock_t read_lock;
346 spinlock_t write_lock;
cdd55a29 347};
1da177e4 348
cdd55a29 349struct drm_freelist {
b5e89ed5
DA
350 int initialized; /**< Freelist in use */
351 atomic_t count; /**< Number of free buffers */
056219e2 352 struct drm_buf *next; /**< End pointer */
1da177e4
LT
353
354 wait_queue_head_t waiting; /**< Processes waiting on free bufs */
b5e89ed5
DA
355 int low_mark; /**< Low water mark */
356 int high_mark; /**< High water mark */
357 atomic_t wfh; /**< If waiting for high mark */
358 spinlock_t lock;
cdd55a29 359};
1da177e4 360
ddf19b97
DA
361typedef struct drm_dma_handle {
362 dma_addr_t busaddr;
363 void *vaddr;
364 size_t size;
365} drm_dma_handle_t;
366
1da177e4
LT
367/**
368 * Buffer entry. There is one of this for each buffer size order.
369 */
cdd55a29 370struct drm_buf_entry {
b5e89ed5
DA
371 int buf_size; /**< size */
372 int buf_count; /**< number of buffers */
056219e2 373 struct drm_buf *buflist; /**< buffer list */
b5e89ed5
DA
374 int seg_count;
375 int page_order;
cdd55a29 376 struct drm_dma_handle **seglist;
b5e89ed5 377
cdd55a29
DA
378 struct drm_freelist freelist;
379};
1da177e4
LT
380
381/** File private data */
84b1fd10 382struct drm_file {
b5e89ed5 383 int authenticated;
b5e89ed5
DA
384 pid_t pid;
385 uid_t uid;
386 drm_magic_t magic;
387 unsigned long ioctl_count;
bd1b331f 388 struct list_head lhead;
2c14f28b 389 struct drm_minor *minor;
b5e89ed5 390 unsigned long lock_count;
7c1c2871 391
673a394b
EA
392 /** Mapping of mm object handles to object pointers. */
393 struct idr object_idr;
394 /** Lock for synchronization of access to object_idr. */
395 spinlock_t table_lock;
7c1c2871 396
6c340eac 397 struct file *filp;
8562b3f2 398 void *driver_priv;
7c1c2871
DA
399
400 int is_master; /* this file private is a master for a minor */
401 struct drm_master *master; /* master this node is currently associated with
402 N.B. not always minor->master */
f453ba04 403 struct list_head fbs;
84b1fd10 404};
1da177e4
LT
405
406/** Wait queue */
cdd55a29 407struct drm_queue {
b5e89ed5
DA
408 atomic_t use_count; /**< Outstanding uses (+1) */
409 atomic_t finalization; /**< Finalization in progress */
410 atomic_t block_count; /**< Count of processes waiting */
411 atomic_t block_read; /**< Queue blocked for reads */
1da177e4 412 wait_queue_head_t read_queue; /**< Processes waiting on block_read */
b5e89ed5 413 atomic_t block_write; /**< Queue blocked for writes */
1da177e4 414 wait_queue_head_t write_queue; /**< Processes waiting on block_write */
b5e89ed5
DA
415 atomic_t total_queued; /**< Total queued statistic */
416 atomic_t total_flushed; /**< Total flushes statistic */
417 atomic_t total_locks; /**< Total locks statistics */
c60ce623 418 enum drm_ctx_flags flags; /**< Context preserving and 2D-only */
cdd55a29 419 struct drm_waitlist waitlist; /**< Pending buffers */
1da177e4 420 wait_queue_head_t flush_queue; /**< Processes waiting until flush */
cdd55a29 421};
1da177e4
LT
422
423/**
424 * Lock data.
425 */
55910517 426struct drm_lock_data {
c60ce623 427 struct drm_hw_lock *hw_lock; /**< Hardware lock */
8562b3f2
DA
428 /** Private of lock holder's file (NULL=kernel) */
429 struct drm_file *file_priv;
1da177e4 430 wait_queue_head_t lock_queue; /**< Queue of blocked processes */
b5e89ed5 431 unsigned long lock_time; /**< Time of last lock in jiffies */
040ac320
TH
432 spinlock_t spinlock;
433 uint32_t kernel_waiters;
434 uint32_t user_waiters;
435 int idle_has_lock;
55910517 436};
1da177e4
LT
437
438/**
439 * DMA data.
440 */
cdd55a29 441struct drm_device_dma {
1da177e4 442
cdd55a29 443 struct drm_buf_entry bufs[DRM_MAX_ORDER + 1]; /**< buffers, grouped by their size order */
b5e89ed5 444 int buf_count; /**< total number of buffers */
056219e2 445 struct drm_buf **buflist; /**< Vector of pointers into drm_device_dma::bufs */
b5e89ed5
DA
446 int seg_count;
447 int page_count; /**< number of pages */
448 unsigned long *pagelist; /**< page list */
449 unsigned long byte_count;
1da177e4
LT
450 enum {
451 _DRM_DMA_USE_AGP = 0x01,
b5e89ed5 452 _DRM_DMA_USE_SG = 0x02,
3417f33e
GS
453 _DRM_DMA_USE_FB = 0x04,
454 _DRM_DMA_USE_PCI_RO = 0x08
1da177e4
LT
455 } flags;
456
cdd55a29 457};
1da177e4 458
b5e89ed5 459/**
1da177e4
LT
460 * AGP memory entry. Stored as a doubly linked list.
461 */
55910517 462struct drm_agp_mem {
b5e89ed5
DA
463 unsigned long handle; /**< handle */
464 DRM_AGP_MEM *memory;
465 unsigned long bound; /**< address */
466 int pages;
bd1b331f 467 struct list_head head;
55910517 468};
1da177e4
LT
469
470/**
471 * AGP data.
472 *
473 * \sa drm_agp_init() and drm_device::agp.
474 */
55910517 475struct drm_agp_head {
b5e89ed5 476 DRM_AGP_KERN agp_info; /**< AGP device information */
bd1b331f 477 struct list_head memory;
b5e89ed5
DA
478 unsigned long mode; /**< AGP mode */
479 struct agp_bridge_data *bridge;
480 int enabled; /**< whether the AGP bus as been enabled */
481 int acquired; /**< whether the AGP device has been acquired */
482 unsigned long base;
483 int agp_mtrr;
484 int cant_use_aperture;
485 unsigned long page_mask;
55910517 486};
1da177e4
LT
487
488/**
489 * Scatter-gather memory.
490 */
55910517 491struct drm_sg_mem {
b5e89ed5
DA
492 unsigned long handle;
493 void *virtual;
494 int pages;
495 struct page **pagelist;
496 dma_addr_t *busaddr;
55910517 497};
1da177e4 498
55910517 499struct drm_sigdata {
b5e89ed5 500 int context;
c60ce623 501 struct drm_hw_lock *lock;
55910517 502};
1da177e4 503
8562b3f2
DA
504
505/*
506 * Generic memory manager structs
507 */
508
509struct drm_mm_node {
510 struct list_head fl_entry;
511 struct list_head ml_entry;
512 int free;
513 unsigned long start;
514 unsigned long size;
515 struct drm_mm *mm;
516 void *private;
517};
518
519struct drm_mm {
520 struct list_head fl_entry;
521 struct list_head ml_entry;
522};
523
524
f77d390c
BH
525/**
526 * Kernel side of a mapping
527 */
528struct drm_local_map {
41c2e75e 529 resource_size_t offset; /**< Requested physical address (0 for SAREA)*/
f77d390c
BH
530 unsigned long size; /**< Requested physical size (bytes) */
531 enum drm_map_type type; /**< Type of memory to map */
532 enum drm_map_flags flags; /**< Flags */
533 void *handle; /**< User-space: "Handle" to pass to mmap() */
534 /**< Kernel-space: kernel-virtual address */
535 int mtrr; /**< MTRR slot used */
536};
537
538typedef struct drm_local_map drm_local_map_t;
539
1da177e4
LT
540/**
541 * Mappings list
542 */
55910517 543struct drm_map_list {
b5e89ed5 544 struct list_head head; /**< list head */
e0be428e 545 struct drm_hash_item hash;
f77d390c 546 struct drm_local_map *map; /**< mapping */
8562b3f2 547 uint64_t user_token;
7c1c2871 548 struct drm_master *master;
a2c0a97b 549 struct drm_mm_node *file_offset_node; /**< fake offset */
55910517 550};
1da177e4 551
1da177e4
LT
552/**
553 * Context handle list
554 */
55910517 555struct drm_ctx_list {
b5e89ed5
DA
556 struct list_head head; /**< list head */
557 drm_context_t handle; /**< context handle */
84b1fd10 558 struct drm_file *tag; /**< associated fd private data */
55910517 559};
1da177e4 560
ea98a92f
DA
561/* location of GART table */
562#define DRM_ATI_GART_MAIN 1
563#define DRM_ATI_GART_FB 2
564
f2b04cd2
DA
565#define DRM_ATI_GART_PCI 1
566#define DRM_ATI_GART_PCIE 2
567#define DRM_ATI_GART_IGP 3
568
55910517 569struct drm_ati_pcigart_info {
ea98a92f 570 int gart_table_location;
f2b04cd2 571 int gart_reg_if;
f26c473c 572 void *addr;
ea98a92f 573 dma_addr_t bus_addr;
b05c2385
DA
574 dma_addr_t table_mask;
575 struct drm_dma_handle *table_handle;
f77d390c 576 struct drm_local_map mapping;
f2b04cd2 577 int table_size;
55910517 578};
ea98a92f 579
a2c0a97b
JB
580/**
581 * GEM specific mm private for tracking GEM objects
582 */
583struct drm_gem_mm {
584 struct drm_mm offset_manager; /**< Offset mgmt for buffer objects */
585 struct drm_open_hash offset_hash; /**< User token hash table for maps */
586};
587
673a394b
EA
588/**
589 * This structure defines the drm_mm memory object, which will be used by the
590 * DRM for its buffer objects.
591 */
592struct drm_gem_object {
593 /** Reference count of this object */
594 struct kref refcount;
595
596 /** Handle count of this object. Each handle also holds a reference */
597 struct kref handlecount;
598
599 /** Related drm device */
600 struct drm_device *dev;
601
602 /** File representing the shmem storage */
603 struct file *filp;
604
a2c0a97b
JB
605 /* Mapping info for this object */
606 struct drm_map_list map_list;
607
673a394b
EA
608 /**
609 * Size of the object, in bytes. Immutable over the object's
610 * lifetime.
611 */
612 size_t size;
613
614 /**
615 * Global name for this object, starts at 1. 0 means unnamed.
616 * Access is covered by the object_name_lock in the related drm_device
617 */
618 int name;
619
620 /**
621 * Memory domains. These monitor which caches contain read/write data
622 * related to the object. When transitioning from one set of domains
623 * to another, the driver is called to ensure that caches are suitably
624 * flushed and invalidated
625 */
626 uint32_t read_domains;
627 uint32_t write_domain;
628
629 /**
630 * While validating an exec operation, the
631 * new read/write domain values are computed here.
632 * They will be transferred to the above values
633 * at the point that any cache flushing occurs
634 */
635 uint32_t pending_read_domains;
636 uint32_t pending_write_domain;
637
638 void *driver_private;
639};
640
f453ba04
DA
641#include "drm_crtc.h"
642
7c1c2871
DA
643/* per-master structure */
644struct drm_master {
645
646 struct kref refcount; /* refcount for this master */
647
648 struct list_head head; /**< each minor contains a list of masters */
649 struct drm_minor *minor; /**< link back to minor we are a master for */
650
651 char *unique; /**< Unique identifier: e.g., busid */
652 int unique_len; /**< Length of unique field */
1147c9cd 653 int unique_size; /**< amount allocated */
7c1c2871
DA
654
655 int blocked; /**< Blocked due to VC switch? */
656
657 /** \name Authentication */
658 /*@{ */
659 struct drm_open_hash magiclist;
660 struct list_head magicfree;
661 /*@} */
662
663 struct drm_lock_data lock; /**< Information on hardware lock */
664
665 void *driver_priv; /**< Private structure for driver to use */
666};
667
1da177e4
LT
668/**
669 * DRM driver structure. This structure represent the common code for
670 * a family of cards. There will one drm_device for each card present
671 * in this family
672 */
1da177e4 673struct drm_driver {
22eae947
DA
674 int (*load) (struct drm_device *, unsigned long flags);
675 int (*firstopen) (struct drm_device *);
84b1fd10 676 int (*open) (struct drm_device *, struct drm_file *);
6c340eac 677 void (*preclose) (struct drm_device *, struct drm_file *file_priv);
84b1fd10 678 void (*postclose) (struct drm_device *, struct drm_file *);
22eae947
DA
679 void (*lastclose) (struct drm_device *);
680 int (*unload) (struct drm_device *);
b932ccb5 681 int (*suspend) (struct drm_device *, pm_message_t state);
e8b962b6 682 int (*resume) (struct drm_device *);
c153f45f 683 int (*dma_ioctl) (struct drm_device *dev, void *data, struct drm_file *file_priv);
b5e89ed5
DA
684 void (*dma_ready) (struct drm_device *);
685 int (*dma_quiescent) (struct drm_device *);
84b1fd10
DA
686 int (*context_ctor) (struct drm_device *dev, int context);
687 int (*context_dtor) (struct drm_device *dev, int context);
688 int (*kernel_context_switch) (struct drm_device *dev, int old,
b5e89ed5 689 int new);
af6061af 690 void (*kernel_context_switch_unlock) (struct drm_device *dev);
af6061af 691 int (*dri_library_name) (struct drm_device *dev, char *buf);
b5e89ed5 692
0a3e67a4
JB
693 /**
694 * get_vblank_counter - get raw hardware vblank counter
695 * @dev: DRM device
696 * @crtc: counter to fetch
697 *
698 * Driver callback for fetching a raw hardware vblank counter
699 * for @crtc. If a device doesn't have a hardware counter, the
700 * driver can simply return the value of drm_vblank_count and
701 * make the enable_vblank() and disable_vblank() hooks into no-ops,
702 * leaving interrupts enabled at all times.
703 *
704 * Wraparound handling and loss of events due to modesetting is dealt
705 * with in the DRM core code.
706 *
707 * RETURNS
708 * Raw vblank counter value.
709 */
710 u32 (*get_vblank_counter) (struct drm_device *dev, int crtc);
711
712 /**
713 * enable_vblank - enable vblank interrupt events
714 * @dev: DRM device
715 * @crtc: which irq to enable
716 *
717 * Enable vblank interrupts for @crtc. If the device doesn't have
718 * a hardware vblank counter, this routine should be a no-op, since
719 * interrupts will have to stay on to keep the count accurate.
720 *
721 * RETURNS
722 * Zero on success, appropriate errno if the given @crtc's vblank
723 * interrupt cannot be enabled.
724 */
725 int (*enable_vblank) (struct drm_device *dev, int crtc);
726
727 /**
728 * disable_vblank - disable vblank interrupt events
729 * @dev: DRM device
730 * @crtc: which irq to enable
731 *
732 * Disable vblank interrupts for @crtc. If the device doesn't have
733 * a hardware vblank counter, this routine should be a no-op, since
734 * interrupts will have to stay on to keep the count accurate.
735 */
736 void (*disable_vblank) (struct drm_device *dev, int crtc);
737
cda17380
DA
738 /**
739 * Called by \c drm_device_is_agp. Typically used to determine if a
740 * card is really attached to AGP or not.
741 *
742 * \param dev DRM device handle
743 *
744 * \returns
745 * One of three values is returned depending on whether or not the
746 * card is absolutely \b not AGP (return of 0), absolutely \b is AGP
747 * (return of 1), or may or may not be AGP (return of 2).
748 */
84b1fd10 749 int (*device_is_agp) (struct drm_device *dev);
cda17380 750
1da177e4 751 /* these have to be filled in */
b5e89ed5 752
22eae947 753 irqreturn_t(*irq_handler) (DRM_IRQ_ARGS);
84b1fd10 754 void (*irq_preinstall) (struct drm_device *dev);
0a3e67a4 755 int (*irq_postinstall) (struct drm_device *dev);
84b1fd10 756 void (*irq_uninstall) (struct drm_device *dev);
6c340eac
EA
757 void (*reclaim_buffers) (struct drm_device *dev,
758 struct drm_file * file_priv);
d985c108 759 void (*reclaim_buffers_locked) (struct drm_device *dev,
6c340eac 760 struct drm_file *file_priv);
040ac320 761 void (*reclaim_buffers_idlelocked) (struct drm_device *dev,
6c340eac 762 struct drm_file *file_priv);
41c2e75e
BH
763 resource_size_t (*get_map_ofs) (struct drm_local_map * map);
764 resource_size_t (*get_reg_ofs) (struct drm_device *dev);
84b1fd10 765 void (*set_version) (struct drm_device *dev,
c60ce623 766 struct drm_set_version *sv);
22eae947 767
7c1c2871
DA
768 /* Master routines */
769 int (*master_create)(struct drm_device *dev, struct drm_master *master);
770 void (*master_destroy)(struct drm_device *dev, struct drm_master *master);
771
673a394b
EA
772 int (*proc_init)(struct drm_minor *minor);
773 void (*proc_cleanup)(struct drm_minor *minor);
774
775 /**
776 * Driver-specific constructor for drm_gem_objects, to set up
777 * obj->driver_private.
778 *
779 * Returns 0 on success.
780 */
781 int (*gem_init_object) (struct drm_gem_object *obj);
782 void (*gem_free_object) (struct drm_gem_object *obj);
783
a2c0a97b
JB
784 /* Driver private ops for this object */
785 struct vm_operations_struct *gem_vm_ops;
786
22eae947
DA
787 int major;
788 int minor;
789 int patchlevel;
790 char *name;
791 char *desc;
792 char *date;
793
1da177e4
LT
794 u32 driver_features;
795 int dev_priv_size;
c153f45f 796 struct drm_ioctl_desc *ioctls;
1da177e4
LT
797 int num_ioctls;
798 struct file_operations fops;
799 struct pci_driver pci_driver;
e7f7ab45
DA
800 /* List of devices hanging off this driver */
801 struct list_head device_list;
1da177e4
LT
802};
803
2c14f28b
DA
804#define DRM_MINOR_UNASSIGNED 0
805#define DRM_MINOR_LEGACY 1
f453ba04
DA
806#define DRM_MINOR_CONTROL 2
807#define DRM_MINOR_RENDER 3
2c14f28b 808
1da177e4 809/**
2c14f28b 810 * DRM minor structure. This structure represents a drm minor number.
1da177e4 811 */
2c14f28b
DA
812struct drm_minor {
813 int index; /**< Minor device number */
814 int type; /**< Control or render */
815 dev_t device; /**< Device number for mknod */
816 struct device kdev; /**< Linux device */
1da177e4
LT
817 struct drm_device *dev;
818 struct proc_dir_entry *dev_root; /**< proc directory entry */
7c1c2871
DA
819 struct drm_master *master; /* currently active master for this node */
820 struct list_head master_list;
f453ba04 821 struct drm_mode_group mode_group;
84b1fd10 822};
1da177e4
LT
823
824/**
825 * DRM device structure. This structure represent a complete card that
826 * may contain multiple heads.
827 */
84b1fd10 828struct drm_device {
e7f7ab45 829 struct list_head driver_item; /**< list of devices per driver */
b5e89ed5
DA
830 char *devname; /**< For /proc/interrupts */
831 int if_version; /**< Highest interface version set */
1da177e4 832
1da177e4 833 /** \name Locks */
b5e89ed5
DA
834 /*@{ */
835 spinlock_t count_lock; /**< For inuse, drm_device::open_count, drm_device::buf_use */
30e2fb18 836 struct mutex struct_mutex; /**< For others */
b5e89ed5 837 /*@} */
1da177e4
LT
838
839 /** \name Usage Counters */
b5e89ed5
DA
840 /*@{ */
841 int open_count; /**< Outstanding files open */
842 atomic_t ioctl_count; /**< Outstanding IOCTLs pending */
843 atomic_t vma_count; /**< Outstanding vma areas open */
844 int buf_use; /**< Buffers in use -- cannot alloc */
845 atomic_t buf_alloc; /**< Buffer allocation in progress */
846 /*@} */
1da177e4
LT
847
848 /** \name Performance counters */
b5e89ed5
DA
849 /*@{ */
850 unsigned long counters;
c60ce623 851 enum drm_stat_type types[15];
b5e89ed5
DA
852 atomic_t counts[15];
853 /*@} */
1da177e4 854
bd1b331f 855 struct list_head filelist;
1da177e4
LT
856
857 /** \name Memory management */
b5e89ed5 858 /*@{ */
bd1b331f 859 struct list_head maplist; /**< Linked list of regions */
b5e89ed5 860 int map_count; /**< Number of mappable regions */
e0be428e 861 struct drm_open_hash map_hash; /**< User token hash table for maps */
1da177e4
LT
862
863 /** \name Context handle management */
b5e89ed5 864 /*@{ */
bd1b331f 865 struct list_head ctxlist; /**< Linked list of context handles */
b5e89ed5 866 int ctx_count; /**< Number of context handles */
30e2fb18 867 struct mutex ctxlist_mutex; /**< For ctxlist */
1da177e4 868
62968144 869 struct idr ctx_idr;
1da177e4 870
bd1b331f 871 struct list_head vmalist; /**< List of vmas (for debugging) */
f453ba04 872
b5e89ed5 873 /*@} */
1da177e4
LT
874
875 /** \name DMA queues (contexts) */
b5e89ed5
DA
876 /*@{ */
877 int queue_count; /**< Number of active DMA queues */
878 int queue_reserved; /**< Number of reserved DMA queues */
879 int queue_slots; /**< Actual length of queuelist */
cdd55a29
DA
880 struct drm_queue **queuelist; /**< Vector of pointers to DMA queues */
881 struct drm_device_dma *dma; /**< Optional pointer for DMA support */
b5e89ed5 882 /*@} */
1da177e4
LT
883
884 /** \name Context support */
b5e89ed5 885 /*@{ */
b5e89ed5 886 int irq_enabled; /**< True if irq handler is enabled */
1da177e4
LT
887 __volatile__ long context_flag; /**< Context swapping flag */
888 __volatile__ long interrupt_flag; /**< Interruption handler flag */
889 __volatile__ long dma_flag; /**< DMA dispatch flag */
890 struct timer_list timer; /**< Timer for delaying ctx switch */
b5e89ed5
DA
891 wait_queue_head_t context_wait; /**< Processes waiting on ctx switch */
892 int last_checked; /**< Last context checked for DMA */
893 int last_context; /**< Last current context */
894 unsigned long last_switch; /**< jiffies at last context switch */
895 /*@} */
896
897 struct work_struct work;
1da177e4 898 /** \name VBLANK IRQ support */
b5e89ed5
DA
899 /*@{ */
900
0a3e67a4
JB
901 /*
902 * At load time, disabling the vblank interrupt won't be allowed since
903 * old clients may not call the modeset ioctl and therefore misbehave.
904 * Once the modeset ioctl *has* been called though, we can safely
905 * disable them when unused.
906 */
907 int vblank_disable_allowed;
908
909 wait_queue_head_t *vbl_queue; /**< VBLANK wait queue */
910 atomic_t *_vblank_count; /**< number of VBLANK interrupts (driver must alloc the right number of counters) */
b5e89ed5 911 spinlock_t vbl_lock;
0a3e67a4
JB
912 atomic_t *vblank_refcount; /* number of users of vblank interruptsper crtc */
913 u32 *last_vblank; /* protected by dev->vbl_lock, used */
914 /* for wraparound handling */
915 int *vblank_enabled; /* so we don't call enable more than
916 once per disable */
917 int *vblank_inmodeset; /* Display driver is setting mode */
fede5c91 918 u32 *last_vblank_wait; /* Last vblank seqno waited per CRTC */
0a3e67a4
JB
919 struct timer_list vblank_disable_timer;
920
921 u32 max_vblank_count; /**< size of vblank counter register */
b5e89ed5
DA
922
923 /*@} */
924 cycles_t ctx_start;
925 cycles_t lck_start;
926
1da177e4
LT
927 struct fasync_struct *buf_async;/**< Processes waiting for SIGIO */
928 wait_queue_head_t buf_readers; /**< Processes waiting to read */
929 wait_queue_head_t buf_writers; /**< Processes waiting to ctx switch */
930
55910517 931 struct drm_agp_head *agp; /**< AGP data */
1da177e4 932
b5e89ed5 933 struct pci_dev *pdev; /**< PCI device structure */
2f02cc3f
EA
934 int pci_vendor; /**< PCI vendor id */
935 int pci_device; /**< PCI device id */
1da177e4 936#ifdef __alpha__
1da177e4 937 struct pci_controller *hose;
1da177e4 938#endif
55910517 939 struct drm_sg_mem *sg; /**< Scatter gather memory */
0a3e67a4 940 int num_crtcs; /**< Number of CRTCs on this device */
b5e89ed5 941 void *dev_private; /**< device private data */
a2c0a97b
JB
942 void *mm_private;
943 struct address_space *dev_mapping;
55910517 944 struct drm_sigdata sigdata; /**< For block_all_signals */
b5e89ed5
DA
945 sigset_t sigmask;
946
947 struct drm_driver *driver;
f77d390c 948 struct drm_local_map *agp_buffer_map;
d1f2b55a 949 unsigned int agp_buffer_token;
f453ba04 950 struct drm_minor *control; /**< Control node for card */
2c14f28b 951 struct drm_minor *primary; /**< render type primary screen head */
bea5679f
MCA
952
953 /** \name Drawable information */
954 /*@{ */
955 spinlock_t drw_lock;
d4e2cbe9 956 struct idr drw_idr;
bea5679f 957 /*@} */
673a394b 958
f453ba04
DA
959 struct drm_mode_config mode_config; /**< Current mode config */
960
673a394b
EA
961 /** \name GEM information */
962 /*@{ */
963 spinlock_t object_name_lock;
964 struct idr object_name_idr;
965 atomic_t object_count;
966 atomic_t object_memory;
967 atomic_t pin_count;
968 atomic_t pin_memory;
969 atomic_t gtt_count;
970 atomic_t gtt_memory;
971 uint32_t gtt_total;
972 uint32_t invalidate_domains; /* domains pending invalidation */
973 uint32_t flush_domains; /* domains pending flush */
974 /*@} */
975
84b1fd10 976};
1da177e4 977
9bfbd5cb
JB
978static inline int drm_dev_to_irq(struct drm_device *dev)
979{
980 return dev->pdev->irq;
981}
982
b5e89ed5
DA
983static __inline__ int drm_core_check_feature(struct drm_device *dev,
984 int feature)
1da177e4
LT
985{
986 return ((dev->driver->driver_features & feature) ? 1 : 0);
987}
988
33229601 989#ifdef __alpha__
6244270e 990#define drm_get_pci_domain(dev) dev->hose->index
33229601 991#else
9b1a51b6 992#define drm_get_pci_domain(dev) 0
33229601
DA
993#endif
994
1da177e4
LT
995#if __OS_HAS_AGP
996static inline int drm_core_has_AGP(struct drm_device *dev)
997{
b5e89ed5 998 return drm_core_check_feature(dev, DRIVER_USE_AGP);
1da177e4
LT
999}
1000#else
1001#define drm_core_has_AGP(dev) (0)
1002#endif
1003
1004#if __OS_HAS_MTRR
1005static inline int drm_core_has_MTRR(struct drm_device *dev)
1006{
b5e89ed5 1007 return drm_core_check_feature(dev, DRIVER_USE_MTRR);
1da177e4 1008}
269dc512
DA
1009
1010#define DRM_MTRR_WC MTRR_TYPE_WRCOMB
1011
1012static inline int drm_mtrr_add(unsigned long offset, unsigned long size,
1013 unsigned int flags)
1014{
1015 return mtrr_add(offset, size, flags, 1);
1016}
1017
1018static inline int drm_mtrr_del(int handle, unsigned long offset,
1019 unsigned long size, unsigned int flags)
1020{
1021 return mtrr_del(handle, offset, size);
1022}
1023
1da177e4
LT
1024#else
1025#define drm_core_has_MTRR(dev) (0)
9c7d462e
DA
1026
1027#define DRM_MTRR_WC 0
1028
1029static inline int drm_mtrr_add(unsigned long offset, unsigned long size,
1030 unsigned int flags)
1031{
1032 return 0;
1033}
1034
1035static inline int drm_mtrr_del(int handle, unsigned long offset,
1036 unsigned long size, unsigned int flags)
1037{
1038 return 0;
1039}
1da177e4
LT
1040#endif
1041
1042/******************************************************************/
1043/** \name Internal function definitions */
1044/*@{*/
1045
1da177e4 1046 /* Driver support (drm_drv.h) */
b5e89ed5
DA
1047extern int drm_init(struct drm_driver *driver);
1048extern void drm_exit(struct drm_driver *driver);
1049extern int drm_ioctl(struct inode *inode, struct file *filp,
1050 unsigned int cmd, unsigned long arg);
1051extern long drm_compat_ioctl(struct file *filp,
1052 unsigned int cmd, unsigned long arg);
84b1fd10 1053extern int drm_lastclose(struct drm_device *dev);
1da177e4
LT
1054
1055 /* Device support (drm_fops.h) */
b5e89ed5
DA
1056extern int drm_open(struct inode *inode, struct file *filp);
1057extern int drm_stub_open(struct inode *inode, struct file *filp);
b5e89ed5
DA
1058extern int drm_fasync(int fd, struct file *filp, int on);
1059extern int drm_release(struct inode *inode, struct file *filp);
1da177e4
LT
1060
1061 /* Mapping support (drm_vm.h) */
b5e89ed5 1062extern int drm_mmap(struct file *filp, struct vm_area_struct *vma);
a2c0a97b
JB
1063extern int drm_mmap_locked(struct file *filp, struct vm_area_struct *vma);
1064extern void drm_vm_open_locked(struct vm_area_struct *vma);
41c2e75e
BH
1065extern resource_size_t drm_core_get_map_ofs(struct drm_local_map * map);
1066extern resource_size_t drm_core_get_reg_ofs(struct drm_device *dev);
b5e89ed5 1067extern unsigned int drm_poll(struct file *filp, struct poll_table_struct *wait);
1da177e4
LT
1068
1069 /* Memory management support (drm_memory.h) */
1070#include "drm_memory.h"
b5e89ed5
DA
1071extern void drm_mem_init(void);
1072extern int drm_mem_info(char *buf, char **start, off_t offset,
1073 int request, int *eof, void *data);
1074extern void *drm_realloc(void *oldpt, size_t oldsize, size_t size, int area);
b5e89ed5 1075
84b1fd10 1076extern DRM_AGP_MEM *drm_alloc_agp(struct drm_device *dev, int pages, u32 type);
b5e89ed5
DA
1077extern int drm_free_agp(DRM_AGP_MEM * handle, int pages);
1078extern int drm_bind_agp(DRM_AGP_MEM * handle, unsigned int start);
673a394b
EA
1079extern DRM_AGP_MEM *drm_agp_bind_pages(struct drm_device *dev,
1080 struct page **pages,
1081 unsigned long num_pages,
ba1eb1d8
KP
1082 uint32_t gtt_offset,
1083 uint32_t type);
b5e89ed5 1084extern int drm_unbind_agp(DRM_AGP_MEM * handle);
1da177e4
LT
1085
1086 /* Misc. IOCTL support (drm_ioctl.h) */
c153f45f
EA
1087extern int drm_irq_by_busid(struct drm_device *dev, void *data,
1088 struct drm_file *file_priv);
1089extern int drm_getunique(struct drm_device *dev, void *data,
1090 struct drm_file *file_priv);
1091extern int drm_setunique(struct drm_device *dev, void *data,
1092 struct drm_file *file_priv);
1093extern int drm_getmap(struct drm_device *dev, void *data,
1094 struct drm_file *file_priv);
1095extern int drm_getclient(struct drm_device *dev, void *data,
1096 struct drm_file *file_priv);
1097extern int drm_getstats(struct drm_device *dev, void *data,
1098 struct drm_file *file_priv);
1099extern int drm_setversion(struct drm_device *dev, void *data,
1100 struct drm_file *file_priv);
1101extern int drm_noop(struct drm_device *dev, void *data,
1102 struct drm_file *file_priv);
1da177e4
LT
1103
1104 /* Context IOCTL support (drm_context.h) */
c153f45f
EA
1105extern int drm_resctx(struct drm_device *dev, void *data,
1106 struct drm_file *file_priv);
1107extern int drm_addctx(struct drm_device *dev, void *data,
1108 struct drm_file *file_priv);
1109extern int drm_modctx(struct drm_device *dev, void *data,
1110 struct drm_file *file_priv);
1111extern int drm_getctx(struct drm_device *dev, void *data,
1112 struct drm_file *file_priv);
1113extern int drm_switchctx(struct drm_device *dev, void *data,
1114 struct drm_file *file_priv);
1115extern int drm_newctx(struct drm_device *dev, void *data,
1116 struct drm_file *file_priv);
1117extern int drm_rmctx(struct drm_device *dev, void *data,
1118 struct drm_file *file_priv);
b5e89ed5 1119
84b1fd10
DA
1120extern int drm_ctxbitmap_init(struct drm_device *dev);
1121extern void drm_ctxbitmap_cleanup(struct drm_device *dev);
1122extern void drm_ctxbitmap_free(struct drm_device *dev, int ctx_handle);
b5e89ed5 1123
c153f45f
EA
1124extern int drm_setsareactx(struct drm_device *dev, void *data,
1125 struct drm_file *file_priv);
1126extern int drm_getsareactx(struct drm_device *dev, void *data,
1127 struct drm_file *file_priv);
1da177e4
LT
1128
1129 /* Drawable IOCTL support (drm_drawable.h) */
c153f45f
EA
1130extern int drm_adddraw(struct drm_device *dev, void *data,
1131 struct drm_file *file_priv);
1132extern int drm_rmdraw(struct drm_device *dev, void *data,
1133 struct drm_file *file_priv);
1134extern int drm_update_drawable_info(struct drm_device *dev, void *data,
1135 struct drm_file *file_priv);
84b1fd10 1136extern struct drm_drawable_info *drm_get_drawable_info(struct drm_device *dev,
bea5679f 1137 drm_drawable_t id);
d4e2cbe9 1138extern void drm_drawable_free_all(struct drm_device *dev);
1da177e4
LT
1139
1140 /* Authentication IOCTL support (drm_auth.h) */
c153f45f
EA
1141extern int drm_getmagic(struct drm_device *dev, void *data,
1142 struct drm_file *file_priv);
1143extern int drm_authmagic(struct drm_device *dev, void *data,
1144 struct drm_file *file_priv);
1da177e4 1145
673a394b
EA
1146/* Cache management (drm_cache.c) */
1147void drm_clflush_pages(struct page *pages[], unsigned long num_pages);
1148
1da177e4 1149 /* Locking IOCTL support (drm_lock.h) */
c153f45f
EA
1150extern int drm_lock(struct drm_device *dev, void *data,
1151 struct drm_file *file_priv);
1152extern int drm_unlock(struct drm_device *dev, void *data,
1153 struct drm_file *file_priv);
55910517
DA
1154extern int drm_lock_take(struct drm_lock_data *lock_data, unsigned int context);
1155extern int drm_lock_free(struct drm_lock_data *lock_data, unsigned int context);
1156extern void drm_idlelock_take(struct drm_lock_data *lock_data);
1157extern void drm_idlelock_release(struct drm_lock_data *lock_data);
040ac320
TH
1158
1159/*
1160 * These are exported to drivers so that they can implement fencing using
1161 * DMA quiscent + idle. DMA quiescent usually requires the hardware lock.
1162 */
1163
c153f45f 1164extern int drm_i_have_hw_lock(struct drm_device *dev, struct drm_file *file_priv);
1da177e4
LT
1165
1166 /* Buffer management support (drm_bufs.h) */
84b1fd10
DA
1167extern int drm_addbufs_agp(struct drm_device *dev, struct drm_buf_desc * request);
1168extern int drm_addbufs_pci(struct drm_device *dev, struct drm_buf_desc * request);
41c2e75e 1169extern int drm_addmap(struct drm_device *dev, resource_size_t offset,
c60ce623 1170 unsigned int size, enum drm_map_type type,
f77d390c 1171 enum drm_map_flags flags, struct drm_local_map **map_ptr);
c153f45f
EA
1172extern int drm_addmap_ioctl(struct drm_device *dev, void *data,
1173 struct drm_file *file_priv);
f77d390c
BH
1174extern int drm_rmmap(struct drm_device *dev, struct drm_local_map *map);
1175extern int drm_rmmap_locked(struct drm_device *dev, struct drm_local_map *map);
c153f45f
EA
1176extern int drm_rmmap_ioctl(struct drm_device *dev, void *data,
1177 struct drm_file *file_priv);
1178extern int drm_addbufs(struct drm_device *dev, void *data,
1179 struct drm_file *file_priv);
1180extern int drm_infobufs(struct drm_device *dev, void *data,
1181 struct drm_file *file_priv);
1182extern int drm_markbufs(struct drm_device *dev, void *data,
1183 struct drm_file *file_priv);
1184extern int drm_freebufs(struct drm_device *dev, void *data,
1185 struct drm_file *file_priv);
1186extern int drm_mapbufs(struct drm_device *dev, void *data,
1187 struct drm_file *file_priv);
b5e89ed5 1188extern int drm_order(unsigned long size);
d883f7f1
BH
1189extern resource_size_t drm_get_resource_start(struct drm_device *dev,
1190 unsigned int resource);
1191extern resource_size_t drm_get_resource_len(struct drm_device *dev,
836cf046 1192 unsigned int resource);
1da177e4
LT
1193
1194 /* DMA support (drm_dma.h) */
84b1fd10
DA
1195extern int drm_dma_setup(struct drm_device *dev);
1196extern void drm_dma_takedown(struct drm_device *dev);
056219e2 1197extern void drm_free_buffer(struct drm_device *dev, struct drm_buf * buf);
6c340eac
EA
1198extern void drm_core_reclaim_buffers(struct drm_device *dev,
1199 struct drm_file *filp);
1da177e4
LT
1200
1201 /* IRQ support (drm_irq.h) */
c153f45f
EA
1202extern int drm_control(struct drm_device *dev, void *data,
1203 struct drm_file *file_priv);
b5e89ed5 1204extern irqreturn_t drm_irq_handler(DRM_IRQ_ARGS);
dbb19d30 1205extern int drm_irq_install(struct drm_device *dev);
84b1fd10
DA
1206extern int drm_irq_uninstall(struct drm_device *dev);
1207extern void drm_driver_irq_preinstall(struct drm_device *dev);
1208extern void drm_driver_irq_postinstall(struct drm_device *dev);
1209extern void drm_driver_irq_uninstall(struct drm_device *dev);
b5e89ed5 1210
0a3e67a4 1211extern int drm_vblank_init(struct drm_device *dev, int num_crtcs);
af6061af 1212extern int drm_wait_vblank(struct drm_device *dev, void *data,
0a3e67a4 1213 struct drm_file *filp);
af6061af 1214extern int drm_vblank_wait(struct drm_device *dev, unsigned int *vbl_seq);
0a3e67a4
JB
1215extern u32 drm_vblank_count(struct drm_device *dev, int crtc);
1216extern void drm_handle_vblank(struct drm_device *dev, int crtc);
1217extern int drm_vblank_get(struct drm_device *dev, int crtc);
1218extern void drm_vblank_put(struct drm_device *dev, int crtc);
52440211 1219extern void drm_vblank_cleanup(struct drm_device *dev);
0a3e67a4 1220/* Modesetting support */
f453ba04
DA
1221extern void drm_vblank_pre_modeset(struct drm_device *dev, int crtc);
1222extern void drm_vblank_post_modeset(struct drm_device *dev, int crtc);
0a3e67a4
JB
1223extern int drm_modeset_ctl(struct drm_device *dev, void *data,
1224 struct drm_file *file_priv);
1da177e4
LT
1225
1226 /* AGP/GART support (drm_agpsupport.h) */
55910517 1227extern struct drm_agp_head *drm_agp_init(struct drm_device *dev);
84b1fd10 1228extern int drm_agp_acquire(struct drm_device *dev);
c153f45f
EA
1229extern int drm_agp_acquire_ioctl(struct drm_device *dev, void *data,
1230 struct drm_file *file_priv);
84b1fd10 1231extern int drm_agp_release(struct drm_device *dev);
c153f45f
EA
1232extern int drm_agp_release_ioctl(struct drm_device *dev, void *data,
1233 struct drm_file *file_priv);
84b1fd10 1234extern int drm_agp_enable(struct drm_device *dev, struct drm_agp_mode mode);
c153f45f
EA
1235extern int drm_agp_enable_ioctl(struct drm_device *dev, void *data,
1236 struct drm_file *file_priv);
1237extern int drm_agp_info(struct drm_device *dev, struct drm_agp_info *info);
1238extern int drm_agp_info_ioctl(struct drm_device *dev, void *data,
1239 struct drm_file *file_priv);
84b1fd10 1240extern int drm_agp_alloc(struct drm_device *dev, struct drm_agp_buffer *request);
c153f45f
EA
1241extern int drm_agp_alloc_ioctl(struct drm_device *dev, void *data,
1242 struct drm_file *file_priv);
84b1fd10 1243extern int drm_agp_free(struct drm_device *dev, struct drm_agp_buffer *request);
c153f45f
EA
1244extern int drm_agp_free_ioctl(struct drm_device *dev, void *data,
1245 struct drm_file *file_priv);
84b1fd10 1246extern int drm_agp_unbind(struct drm_device *dev, struct drm_agp_binding *request);
c153f45f
EA
1247extern int drm_agp_unbind_ioctl(struct drm_device *dev, void *data,
1248 struct drm_file *file_priv);
84b1fd10 1249extern int drm_agp_bind(struct drm_device *dev, struct drm_agp_binding *request);
c153f45f
EA
1250extern int drm_agp_bind_ioctl(struct drm_device *dev, void *data,
1251 struct drm_file *file_priv);
1252extern DRM_AGP_MEM *drm_agp_allocate_memory(struct agp_bridge_data *bridge, size_t pages, u32 type);
b5e89ed5
DA
1253extern int drm_agp_free_memory(DRM_AGP_MEM * handle);
1254extern int drm_agp_bind_memory(DRM_AGP_MEM * handle, off_t start);
1255extern int drm_agp_unbind_memory(DRM_AGP_MEM * handle);
673a394b 1256extern void drm_agp_chipset_flush(struct drm_device *dev);
1da177e4
LT
1257
1258 /* Stub support (drm_stub.h) */
7c1c2871
DA
1259extern int drm_setmaster_ioctl(struct drm_device *dev, void *data,
1260 struct drm_file *file_priv);
1261extern int drm_dropmaster_ioctl(struct drm_device *dev, void *data,
1262 struct drm_file *file_priv);
1263struct drm_master *drm_master_create(struct drm_minor *minor);
1264extern struct drm_master *drm_master_get(struct drm_master *master);
1265extern void drm_master_put(struct drm_master **master);
1da177e4 1266extern int drm_get_dev(struct pci_dev *pdev, const struct pci_device_id *ent,
b5e89ed5 1267 struct drm_driver *driver);
84b1fd10 1268extern int drm_put_dev(struct drm_device *dev);
2c14f28b 1269extern int drm_put_minor(struct drm_minor **minor);
b5e89ed5 1270extern unsigned int drm_debug;
2c14f28b 1271
0650fd58 1272extern struct class *drm_class;
1da177e4
LT
1273extern struct proc_dir_entry *drm_proc_root;
1274
2c14f28b
DA
1275extern struct idr drm_minors_idr;
1276
f77d390c 1277extern struct drm_local_map *drm_getsarea(struct drm_device *dev);
da509d7a 1278
1da177e4 1279 /* Proc support (drm_proc.h) */
2c14f28b
DA
1280extern int drm_proc_init(struct drm_minor *minor, int minor_id,
1281 struct proc_dir_entry *root);
1282extern int drm_proc_cleanup(struct drm_minor *minor, struct proc_dir_entry *root);
1da177e4
LT
1283
1284 /* Scatter Gather Support (drm_scatter.h) */
55910517 1285extern void drm_sg_cleanup(struct drm_sg_mem * entry);
c153f45f
EA
1286extern int drm_sg_alloc_ioctl(struct drm_device *dev, void *data,
1287 struct drm_file *file_priv);
1288extern int drm_sg_alloc(struct drm_device *dev, struct drm_scatter_gather * request);
1289extern int drm_sg_free(struct drm_device *dev, void *data,
1290 struct drm_file *file_priv);
1da177e4 1291
b5e89ed5 1292 /* ATI PCIGART support (ati_pcigart.h) */
84b1fd10 1293extern int drm_ati_pcigart_init(struct drm_device *dev,
55910517 1294 struct drm_ati_pcigart_info * gart_info);
84b1fd10 1295extern int drm_ati_pcigart_cleanup(struct drm_device *dev,
55910517 1296 struct drm_ati_pcigart_info * gart_info);
1da177e4 1297
84b1fd10 1298extern drm_dma_handle_t *drm_pci_alloc(struct drm_device *dev, size_t size,
9c8da5eb 1299 size_t align, dma_addr_t maxaddr);
84b1fd10
DA
1300extern void __drm_pci_free(struct drm_device *dev, drm_dma_handle_t * dmah);
1301extern void drm_pci_free(struct drm_device *dev, drm_dma_handle_t * dmah);
1da177e4
LT
1302
1303 /* sysfs support (drm_sysfs.c) */
e8b962b6 1304struct drm_sysfs_class;
0650fd58 1305extern struct class *drm_sysfs_create(struct module *owner, char *name);
e8b962b6 1306extern void drm_sysfs_destroy(void);
2c14f28b 1307extern int drm_sysfs_device_add(struct drm_minor *minor);
f453ba04 1308extern void drm_sysfs_hotplug_event(struct drm_device *dev);
2c14f28b 1309extern void drm_sysfs_device_remove(struct drm_minor *minor);
f453ba04
DA
1310extern char *drm_get_connector_status_name(enum drm_connector_status status);
1311extern int drm_sysfs_connector_add(struct drm_connector *connector);
1312extern void drm_sysfs_connector_remove(struct drm_connector *connector);
1da177e4 1313
3a1bd924
TH
1314/*
1315 * Basic memory manager support (drm_mm.c)
1316 */
55910517 1317extern struct drm_mm_node *drm_mm_get_block(struct drm_mm_node * parent,
3a1bd924
TH
1318 unsigned long size,
1319 unsigned alignment);
8562b3f2 1320extern void drm_mm_put_block(struct drm_mm_node * cur);
55910517 1321extern struct drm_mm_node *drm_mm_search_free(const struct drm_mm *mm, unsigned long size,
3a1bd924 1322 unsigned alignment, int best_match);
55910517
DA
1323extern int drm_mm_init(struct drm_mm *mm, unsigned long start, unsigned long size);
1324extern void drm_mm_takedown(struct drm_mm *mm);
1325extern int drm_mm_clean(struct drm_mm *mm);
1326extern unsigned long drm_mm_tail_space(struct drm_mm *mm);
1327extern int drm_mm_remove_space_from_tail(struct drm_mm *mm, unsigned long size);
1328extern int drm_mm_add_space_to_tail(struct drm_mm *mm, unsigned long size);
3a1bd924 1329
673a394b
EA
1330/* Graphics Execution Manager library functions (drm_gem.c) */
1331int drm_gem_init(struct drm_device *dev);
a2c0a97b 1332void drm_gem_destroy(struct drm_device *dev);
673a394b
EA
1333void drm_gem_object_free(struct kref *kref);
1334struct drm_gem_object *drm_gem_object_alloc(struct drm_device *dev,
1335 size_t size);
1336void drm_gem_object_handle_free(struct kref *kref);
ab00b3e5
JB
1337void drm_gem_vm_open(struct vm_area_struct *vma);
1338void drm_gem_vm_close(struct vm_area_struct *vma);
a2c0a97b 1339int drm_gem_mmap(struct file *filp, struct vm_area_struct *vma);
673a394b
EA
1340
1341static inline void
1342drm_gem_object_reference(struct drm_gem_object *obj)
1343{
1344 kref_get(&obj->refcount);
1345}
1346
1347static inline void
1348drm_gem_object_unreference(struct drm_gem_object *obj)
1349{
1350 if (obj == NULL)
1351 return;
1352
1353 kref_put(&obj->refcount, drm_gem_object_free);
1354}
1355
1356int drm_gem_handle_create(struct drm_file *file_priv,
1357 struct drm_gem_object *obj,
1358 int *handlep);
1359
1360static inline void
1361drm_gem_object_handle_reference(struct drm_gem_object *obj)
1362{
1363 drm_gem_object_reference(obj);
1364 kref_get(&obj->handlecount);
1365}
1366
1367static inline void
1368drm_gem_object_handle_unreference(struct drm_gem_object *obj)
1369{
1370 if (obj == NULL)
1371 return;
1372
1373 /*
1374 * Must bump handle count first as this may be the last
1375 * ref, in which case the object would disappear before we
1376 * checked for a name
1377 */
1378 kref_put(&obj->handlecount, drm_gem_object_handle_free);
1379 drm_gem_object_unreference(obj);
1380}
1381
1382struct drm_gem_object *drm_gem_object_lookup(struct drm_device *dev,
1383 struct drm_file *filp,
1384 int handle);
1385int drm_gem_close_ioctl(struct drm_device *dev, void *data,
1386 struct drm_file *file_priv);
1387int drm_gem_flink_ioctl(struct drm_device *dev, void *data,
1388 struct drm_file *file_priv);
1389int drm_gem_open_ioctl(struct drm_device *dev, void *data,
1390 struct drm_file *file_priv);
1391void drm_gem_open(struct drm_device *dev, struct drm_file *file_private);
1392void drm_gem_release(struct drm_device *dev, struct drm_file *file_private);
1393
f77d390c
BH
1394extern void drm_core_ioremap(struct drm_local_map *map, struct drm_device *dev);
1395extern void drm_core_ioremap_wc(struct drm_local_map *map, struct drm_device *dev);
1396extern void drm_core_ioremapfree(struct drm_local_map *map, struct drm_device *dev);
1da177e4 1397
f77d390c
BH
1398static __inline__ struct drm_local_map *drm_core_findmap(struct drm_device *dev,
1399 unsigned int token)
1da177e4 1400{
55910517 1401 struct drm_map_list *_entry;
bd1b331f 1402 list_for_each_entry(_entry, &dev->maplist, head)
b5e89ed5
DA
1403 if (_entry->user_token == token)
1404 return _entry->map;
1da177e4
LT
1405 return NULL;
1406}
1407
84b1fd10 1408static __inline__ int drm_device_is_agp(struct drm_device *dev)
cda17380 1409{
b5e89ed5
DA
1410 if (dev->driver->device_is_agp != NULL) {
1411 int err = (*dev->driver->device_is_agp) (dev);
1412
cda17380
DA
1413 if (err != 2) {
1414 return err;
1415 }
1416 }
1417
1418 return pci_find_capability(dev->pdev, PCI_CAP_ID_AGP);
1419}
1420
84b1fd10 1421static __inline__ int drm_device_is_pcie(struct drm_device *dev)
ea98a92f
DA
1422{
1423 return pci_find_capability(dev->pdev, PCI_CAP_ID_EXP);
1424}
1425
f77d390c 1426static __inline__ void drm_core_dropmap(struct drm_local_map *map)
1da177e4
LT
1427{
1428}
1429
1430#ifndef DEBUG_MEMORY
1431/** Wrapper around kmalloc() */
1432static __inline__ void *drm_alloc(size_t size, int area)
1433{
1434 return kmalloc(size, GFP_KERNEL);
1435}
1436
1437/** Wrapper around kfree() */
1438static __inline__ void drm_free(void *pt, size_t size, int area)
1439{
1440 kfree(pt);
1441}
b9523249
DA
1442
1443/** Wrapper around kcalloc() */
1444static __inline__ void *drm_calloc(size_t nmemb, size_t size, int area)
1445{
1446 return kcalloc(nmemb, size, GFP_KERNEL);
1447}
1da177e4
LT
1448#else
1449extern void *drm_alloc(size_t size, int area);
1450extern void drm_free(void *pt, size_t size, int area);
b9523249 1451extern void *drm_calloc(size_t nmemb, size_t size, int area);
1da177e4
LT
1452#endif
1453
1454/*@}*/
1455
b5e89ed5 1456#endif /* __KERNEL__ */
1da177e4 1457#endif
This page took 0.411182 seconds and 5 git commands to generate.