drm: add driver->set_busid() callback
[deliverable/linux.git] / include / drm / drmP.h
CommitLineData
1da177e4 1/*
d7d2c48e
DH
2 * Internal Header for the Direct Rendering Manager
3 *
1da177e4
LT
4 * Copyright 1999 Precision Insight, Inc., Cedar Park, Texas.
5 * Copyright 2000 VA Linux Systems, Inc., Sunnyvale, California.
dcdb1674 6 * Copyright (c) 2009-2010, Code Aurora Forum.
1da177e4
LT
7 * All rights reserved.
8 *
d7d2c48e
DH
9 * Author: Rickard E. (Rik) Faith <faith@valinux.com>
10 * Author: Gareth Hughes <gareth@valinux.com>
11 *
1da177e4
LT
12 * Permission is hereby granted, free of charge, to any person obtaining a
13 * copy of this software and associated documentation files (the "Software"),
14 * to deal in the Software without restriction, including without limitation
15 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
16 * and/or sell copies of the Software, and to permit persons to whom the
17 * Software is furnished to do so, subject to the following conditions:
18 *
19 * The above copyright notice and this permission notice (including the next
20 * paragraph) shall be included in all copies or substantial portions of the
21 * Software.
22 *
23 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
24 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
25 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
26 * VA LINUX SYSTEMS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
27 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
28 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
29 * OTHER DEALINGS IN THE SOFTWARE.
30 */
31
32#ifndef _DRM_P_H_
33#define _DRM_P_H_
34
96993908
DH
35#include <linux/agp_backend.h>
36#include <linux/cdev.h>
37#include <linux/dma-mapping.h>
38#include <linux/file.h>
1da177e4 39#include <linux/fs.h>
96993908
DH
40#include <linux/highmem.h>
41#include <linux/idr.h>
1da177e4 42#include <linux/init.h>
96993908 43#include <linux/io.h>
1da177e4 44#include <linux/jiffies.h>
96993908
DH
45#include <linux/kernel.h>
46#include <linux/kref.h>
47#include <linux/miscdevice.h>
1da177e4 48#include <linux/mm.h>
30e2fb18 49#include <linux/mutex.h>
96993908
DH
50#include <linux/pci.h>
51#include <linux/platform_device.h>
52#include <linux/poll.h>
5d13d425 53#include <linux/ratelimit.h>
96993908
DH
54#include <linux/sched.h>
55#include <linux/slab.h>
1da177e4 56#include <linux/types.h>
d6db6564 57#include <linux/vmalloc.h>
96993908
DH
58#include <linux/workqueue.h>
59
60#include <asm/mman.h>
1da177e4 61#include <asm/pgalloc.h>
96993908
DH
62#include <asm/uaccess.h>
63
d7d2c48e
DH
64#include <uapi/drm/drm.h>
65#include <uapi/drm/drm_mode.h>
66
67#include <drm/drm_agpsupport.h>
68#include <drm/drm_crtc.h>
69#include <drm/drm_global.h>
96993908 70#include <drm/drm_hashtab.h>
d7d2c48e 71#include <drm/drm_mem_util.h>
96993908
DH
72#include <drm/drm_mm.h>
73#include <drm/drm_os_linux.h>
19218e48 74#include <drm/drm_sarea.h>
0de23977 75#include <drm/drm_vma_manager.h>
1da177e4 76
de477254
PG
77struct module;
78
c153f45f
EA
79struct drm_file;
80struct drm_device;
cc5ea594 81struct drm_agp_head;
c153f45f 82
edb37a95 83struct device_node;
ebc64e45 84struct videomode;
3aac4502 85struct reservation_object;
ebc64e45 86
87fdff81 87/*
1414b76c
LD
88 * 4 debug categories are defined:
89 *
90 * CORE: Used in the generic drm code: drm_ioctl.c, drm_mm.c, drm_memory.c, ...
91 * This is the category used by the DRM_DEBUG() macro.
92 *
93 * DRIVER: Used in the vendor specific part of the driver: i915, radeon, ...
94 * This is the category used by the DRM_DEBUG_DRIVER() macro.
87fdff81 95 *
1414b76c
LD
96 * KMS: used in the modesetting code.
97 * This is the category used by the DRM_DEBUG_KMS() macro.
87fdff81 98 *
1414b76c
LD
99 * PRIME: used in the prime code.
100 * This is the category used by the DRM_DEBUG_PRIME() macro.
87fdff81 101 *
1414b76c
LD
102 * Enabling verbose debug messages is done through the drm.debug parameter,
103 * each category being enabled by a bit.
104 *
105 * drm.debug=0x1 will enable CORE messages
106 * drm.debug=0x2 will enable DRIVER messages
107 * drm.debug=0x3 will enable CORE and DRIVER messages
108 * ...
109 * drm.debug=0xf will enable all messages
110 *
111 * An interesting feature is that it's possible to enable verbose logging at
112 * run-time by echoing the debug value in its sysfs node:
113 * # echo 0xf > /sys/module/drm/parameters/debug
87fdff81 114 */
1414b76c
LD
115#define DRM_UT_CORE 0x01
116#define DRM_UT_DRIVER 0x02
117#define DRM_UT_KMS 0x04
118#define DRM_UT_PRIME 0x08
4fefcb27 119
1287aa90
LD
120extern __printf(2, 3)
121void drm_ut_debug_printk(const char *function_name,
b9075fa9
JP
122 const char *format, ...);
123extern __printf(2, 3)
5ad3d883
JP
124int drm_err(const char *func, const char *format, ...);
125
1da177e4
LT
126/***********************************************************************/
127/** \name DRM template customization defaults */
128/*@{*/
129
130/* driver capabilities and requirements mask */
131#define DRIVER_USE_AGP 0x1
1da177e4
LT
132#define DRIVER_PCI_DMA 0x8
133#define DRIVER_SG 0x10
134#define DRIVER_HAVE_DMA 0x20
135#define DRIVER_HAVE_IRQ 0x40
136#define DRIVER_IRQ_SHARED 0x80
673a394b 137#define DRIVER_GEM 0x1000
f453ba04 138#define DRIVER_MODESET 0x2000
3248877e 139#define DRIVER_PRIME 0x4000
1793126f 140#define DRIVER_RENDER 0x8000
8410ea3b 141
1da177e4
LT
142/***********************************************************************/
143/** \name Begin the DRM... */
144/*@{*/
145
8669cbc5 146#define DRM_MAGIC_HASH_ORDER 4 /**< Size of key hash table. Must be power of 2. */
1da177e4 147
b5e89ed5 148/*@}*/
1da177e4 149
1da177e4
LT
150/***********************************************************************/
151/** \name Macros to make printk easier */
152/*@{*/
153
154/**
155 * Error output.
156 *
157 * \param fmt printf() like format string.
158 * \param arg arguments
159 */
5ad3d883
JP
160#define DRM_ERROR(fmt, ...) \
161 drm_err(__func__, fmt, ##__VA_ARGS__)
1da177e4 162
5d13d425
RC
163/**
164 * Rate limited error output. Like DRM_ERROR() but won't flood the log.
165 *
166 * \param fmt printf() like format string.
167 * \param arg arguments
168 */
169#define DRM_ERROR_RATELIMITED(fmt, ...) \
170({ \
171 static DEFINE_RATELIMIT_STATE(_rs, \
172 DEFAULT_RATELIMIT_INTERVAL, \
173 DEFAULT_RATELIMIT_BURST); \
174 \
175 if (__ratelimit(&_rs)) \
176 drm_err(__func__, fmt, ##__VA_ARGS__); \
177})
178
5ad3d883
JP
179#define DRM_INFO(fmt, ...) \
180 printk(KERN_INFO "[" DRM_NAME "] " fmt, ##__VA_ARGS__)
1da177e4 181
48b8f631
JN
182#define DRM_INFO_ONCE(fmt, ...) \
183 printk_once(KERN_INFO "[" DRM_NAME "] " fmt, ##__VA_ARGS__)
184
1da177e4
LT
185/**
186 * Debug output.
b5e89ed5 187 *
1da177e4
LT
188 * \param fmt printf() like format string.
189 * \param arg arguments
190 */
4fefcb27 191#define DRM_DEBUG(fmt, args...) \
1da177e4 192 do { \
a73d4e91 193 if (unlikely(drm_debug & DRM_UT_CORE)) \
1287aa90 194 drm_ut_debug_printk(__func__, fmt, ##args); \
4fefcb27 195 } while (0)
196
8a4c47f3 197#define DRM_DEBUG_DRIVER(fmt, args...) \
4fefcb27 198 do { \
a73d4e91 199 if (unlikely(drm_debug & DRM_UT_DRIVER)) \
1287aa90 200 drm_ut_debug_printk(__func__, fmt, ##args); \
4fefcb27 201 } while (0)
a73d4e91 202#define DRM_DEBUG_KMS(fmt, args...) \
4fefcb27 203 do { \
a73d4e91 204 if (unlikely(drm_debug & DRM_UT_KMS)) \
1287aa90 205 drm_ut_debug_printk(__func__, fmt, ##args); \
4fefcb27 206 } while (0)
3248877e
DA
207#define DRM_DEBUG_PRIME(fmt, args...) \
208 do { \
a73d4e91 209 if (unlikely(drm_debug & DRM_UT_PRIME)) \
1287aa90 210 drm_ut_debug_printk(__func__, fmt, ##args); \
1da177e4 211 } while (0)
1da177e4 212
1da177e4
LT
213/*@}*/
214
1da177e4
LT
215/***********************************************************************/
216/** \name Internal types and structures */
217/*@{*/
218
1da177e4 219#define DRM_IF_VERSION(maj, min) (maj << 16 | min)
1da177e4
LT
220
221/**
222 * Test that the hardware lock is held by the caller, returning otherwise.
223 *
224 * \param dev DRM device.
225 * \param filp file pointer of the caller.
226 */
dcae3626
RK
227#define LOCK_TEST_WITH_RETURN( dev, _file_priv ) \
228do { \
229 if (!_DRM_LOCK_IS_HELD(_file_priv->master->lock.hw_lock->lock) || \
230 _file_priv->master->lock.file_priv != _file_priv) { \
c153f45f 231 DRM_ERROR( "%s called without lock held, held %d owner %p %p\n",\
dcae3626
RK
232 __func__, _DRM_LOCK_IS_HELD(_file_priv->master->lock.hw_lock->lock),\
233 _file_priv->master->lock.file_priv, _file_priv); \
234 return -EINVAL; \
235 } \
1da177e4
LT
236} while (0)
237
1da177e4
LT
238/**
239 * Ioctl function type.
240 *
241 * \param inode device inode.
6c340eac 242 * \param file_priv DRM file private pointer.
1da177e4
LT
243 * \param cmd command.
244 * \param arg argument.
245 */
c153f45f
EA
246typedef int drm_ioctl_t(struct drm_device *dev, void *data,
247 struct drm_file *file_priv);
1da177e4 248
9a186645
DA
249typedef int drm_ioctl_compat_t(struct file *filp, unsigned int cmd,
250 unsigned long arg);
251
1a95916f
KH
252#define DRM_IOCTL_NR(n) _IOC_NR(n)
253#define DRM_MAJOR 226
254
a7a2cc31
DA
255#define DRM_AUTH 0x1
256#define DRM_MASTER 0x2
257#define DRM_ROOT_ONLY 0x4
f453ba04 258#define DRM_CONTROL_ALLOW 0x8
ed8b6704 259#define DRM_UNLOCKED 0x10
1793126f 260#define DRM_RENDER_ALLOW 0x20
a7a2cc31 261
c153f45f
EA
262struct drm_ioctl_desc {
263 unsigned int cmd;
a7a2cc31 264 int flags;
c972d750 265 drm_ioctl_t *func;
1b2f1489 266 unsigned int cmd_drv;
b9434d0f 267 const char *name;
c153f45f
EA
268};
269
270/**
271 * Creates a driver or general drm_ioctl_desc array entry for the given
272 * ioctl, for use by drm_ioctl().
273 */
1b2f1489
DA
274
275#define DRM_IOCTL_DEF_DRV(ioctl, _func, _flags) \
b9434d0f 276 [DRM_IOCTL_NR(DRM_##ioctl)] = {.cmd = DRM_##ioctl, .func = _func, .flags = _flags, .cmd_drv = DRM_IOCTL_##ioctl, .name = #ioctl}
1da177e4 277
1da177e4
LT
278/**
279 * DMA buffer.
280 */
056219e2 281struct drm_buf {
b5e89ed5
DA
282 int idx; /**< Index into master buflist */
283 int total; /**< Buffer size */
284 int order; /**< log-base-2(total) */
285 int used; /**< Amount of buffer in use (for DMA) */
286 unsigned long offset; /**< Byte offset (used internally) */
287 void *address; /**< Address of buffer */
288 unsigned long bus_address; /**< Bus address of buffer */
289 struct drm_buf *next; /**< Kernel-only: used for free list */
290 __volatile__ int waiting; /**< On kernel DMA queue */
291 __volatile__ int pending; /**< On hardware DMA queue */
6c340eac 292 struct drm_file *file_priv; /**< Private of holding file descr */
b5e89ed5
DA
293 int context; /**< Kernel queue for this buffer */
294 int while_locked; /**< Dispatch this buffer while locked */
1da177e4 295 enum {
b5e89ed5
DA
296 DRM_LIST_NONE = 0,
297 DRM_LIST_FREE = 1,
298 DRM_LIST_WAIT = 2,
299 DRM_LIST_PEND = 3,
300 DRM_LIST_PRIO = 4,
1da177e4 301 DRM_LIST_RECLAIM = 5
b5e89ed5 302 } list; /**< Which list we're on */
1da177e4 303
b5e89ed5
DA
304 int dev_priv_size; /**< Size of buffer private storage */
305 void *dev_private; /**< Per-buffer private storage */
056219e2 306};
1da177e4 307
ddf19b97
DA
308typedef struct drm_dma_handle {
309 dma_addr_t busaddr;
310 void *vaddr;
311 size_t size;
312} drm_dma_handle_t;
313
1da177e4
LT
314/**
315 * Buffer entry. There is one of this for each buffer size order.
316 */
cdd55a29 317struct drm_buf_entry {
b5e89ed5
DA
318 int buf_size; /**< size */
319 int buf_count; /**< number of buffers */
056219e2 320 struct drm_buf *buflist; /**< buffer list */
b5e89ed5
DA
321 int seg_count;
322 int page_order;
cdd55a29 323 struct drm_dma_handle **seglist;
b5e89ed5 324
b008c0fc
DH
325 int low_mark; /**< Low water mark */
326 int high_mark; /**< High water mark */
cdd55a29 327};
1da177e4 328
c9a9c5e0
KH
329/* Event queued up for userspace to read */
330struct drm_pending_event {
331 struct drm_event *event;
332 struct list_head link;
333 struct drm_file *file_priv;
b9c2c9ae
JB
334 pid_t pid; /* pid of requester, no guarantee it's valid by the time
335 we deliver the event, for tracing only */
c9a9c5e0
KH
336 void (*destroy)(struct drm_pending_event *event);
337};
338
3248877e
DA
339/* initial implementaton using a linked list - todo hashtab */
340struct drm_prime_file_private {
341 struct list_head head;
342 struct mutex lock;
343};
344
1da177e4 345/** File private data */
84b1fd10 346struct drm_file {
39868bd7 347 unsigned authenticated :1;
c996fd0b
TH
348 /* Whether we're master for a minor. Protected by master_mutex */
349 unsigned is_master :1;
39868bd7
CW
350 /* true when the client has asked us to expose stereo 3D mode flags */
351 unsigned stereo_allowed :1;
681e7ec7
MR
352 /*
353 * true if client understands CRTC primary planes and cursor planes
354 * in the plane list
355 */
356 unsigned universal_planes:1;
39868bd7 357
5fce5e0b
EB
358 struct pid *pid;
359 kuid_t uid;
b5e89ed5 360 drm_magic_t magic;
bd1b331f 361 struct list_head lhead;
2c14f28b 362 struct drm_minor *minor;
b5e89ed5 363 unsigned long lock_count;
7c1c2871 364
673a394b
EA
365 /** Mapping of mm object handles to object pointers. */
366 struct idr object_idr;
367 /** Lock for synchronization of access to object_idr. */
368 spinlock_t table_lock;
7c1c2871 369
6c340eac 370 struct file *filp;
8562b3f2 371 void *driver_priv;
7c1c2871 372
7c1c2871
DA
373 struct drm_master *master; /* master this node is currently associated with
374 N.B. not always minor->master */
4b096ac1
DV
375 /**
376 * fbs - List of framebuffers associated with this file.
377 *
378 * Protected by fbs_lock. Note that the fbs list holds a reference on
379 * the fb object to prevent it from untimely disappearing.
380 */
f453ba04 381 struct list_head fbs;
4b096ac1 382 struct mutex fbs_lock;
c9a9c5e0
KH
383
384 wait_queue_head_t event_wait;
385 struct list_head event_list;
386 int event_space;
3248877e
DA
387
388 struct drm_prime_file_private prime;
84b1fd10 389};
1da177e4 390
1da177e4
LT
391/**
392 * Lock data.
393 */
55910517 394struct drm_lock_data {
c60ce623 395 struct drm_hw_lock *hw_lock; /**< Hardware lock */
8562b3f2
DA
396 /** Private of lock holder's file (NULL=kernel) */
397 struct drm_file *file_priv;
1da177e4 398 wait_queue_head_t lock_queue; /**< Queue of blocked processes */
b5e89ed5 399 unsigned long lock_time; /**< Time of last lock in jiffies */
040ac320
TH
400 spinlock_t spinlock;
401 uint32_t kernel_waiters;
402 uint32_t user_waiters;
403 int idle_has_lock;
55910517 404};
1da177e4
LT
405
406/**
407 * DMA data.
408 */
cdd55a29 409struct drm_device_dma {
1da177e4 410
cdd55a29 411 struct drm_buf_entry bufs[DRM_MAX_ORDER + 1]; /**< buffers, grouped by their size order */
b5e89ed5 412 int buf_count; /**< total number of buffers */
056219e2 413 struct drm_buf **buflist; /**< Vector of pointers into drm_device_dma::bufs */
b5e89ed5
DA
414 int seg_count;
415 int page_count; /**< number of pages */
416 unsigned long *pagelist; /**< page list */
417 unsigned long byte_count;
1da177e4
LT
418 enum {
419 _DRM_DMA_USE_AGP = 0x01,
b5e89ed5 420 _DRM_DMA_USE_SG = 0x02,
3417f33e
GS
421 _DRM_DMA_USE_FB = 0x04,
422 _DRM_DMA_USE_PCI_RO = 0x08
1da177e4
LT
423 } flags;
424
cdd55a29 425};
1da177e4 426
1da177e4
LT
427/**
428 * Scatter-gather memory.
429 */
55910517 430struct drm_sg_mem {
b5e89ed5
DA
431 unsigned long handle;
432 void *virtual;
433 int pages;
434 struct page **pagelist;
435 dma_addr_t *busaddr;
55910517 436};
1da177e4 437
f77d390c
BH
438/**
439 * Kernel side of a mapping
440 */
441struct drm_local_map {
41c2e75e 442 resource_size_t offset; /**< Requested physical address (0 for SAREA)*/
f77d390c
BH
443 unsigned long size; /**< Requested physical size (bytes) */
444 enum drm_map_type type; /**< Type of memory to map */
445 enum drm_map_flags flags; /**< Flags */
446 void *handle; /**< User-space: "Handle" to pass to mmap() */
447 /**< Kernel-space: kernel-virtual address */
448 int mtrr; /**< MTRR slot used */
449};
450
451typedef struct drm_local_map drm_local_map_t;
452
1da177e4
LT
453/**
454 * Mappings list
455 */
55910517 456struct drm_map_list {
b5e89ed5 457 struct list_head head; /**< list head */
e0be428e 458 struct drm_hash_item hash;
f77d390c 459 struct drm_local_map *map; /**< mapping */
8562b3f2 460 uint64_t user_token;
7c1c2871 461 struct drm_master *master;
55910517 462};
1da177e4 463
ea98a92f
DA
464/* location of GART table */
465#define DRM_ATI_GART_MAIN 1
466#define DRM_ATI_GART_FB 2
467
f2b04cd2
DA
468#define DRM_ATI_GART_PCI 1
469#define DRM_ATI_GART_PCIE 2
470#define DRM_ATI_GART_IGP 3
471
55910517 472struct drm_ati_pcigart_info {
ea98a92f 473 int gart_table_location;
f2b04cd2 474 int gart_reg_if;
f26c473c 475 void *addr;
ea98a92f 476 dma_addr_t bus_addr;
b05c2385
DA
477 dma_addr_t table_mask;
478 struct drm_dma_handle *table_handle;
f77d390c 479 struct drm_local_map mapping;
f2b04cd2 480 int table_size;
55910517 481};
ea98a92f 482
673a394b
EA
483/**
484 * This structure defines the drm_mm memory object, which will be used by the
485 * DRM for its buffer objects.
486 */
487struct drm_gem_object {
488 /** Reference count of this object */
489 struct kref refcount;
490
a8e11d1c
DV
491 /**
492 * handle_count - gem file_priv handle count of this object
493 *
494 * Each handle also holds a reference. Note that when the handle_count
495 * drops to 0 any global names (e.g. the id in the flink namespace) will
496 * be cleared.
497 *
498 * Protected by dev->object_name_lock.
499 * */
500 unsigned handle_count;
673a394b
EA
501
502 /** Related drm device */
503 struct drm_device *dev;
504
505 /** File representing the shmem storage */
506 struct file *filp;
507
a2c0a97b 508 /* Mapping info for this object */
0de23977 509 struct drm_vma_offset_node vma_node;
a2c0a97b 510
673a394b
EA
511 /**
512 * Size of the object, in bytes. Immutable over the object's
513 * lifetime.
514 */
515 size_t size;
516
517 /**
518 * Global name for this object, starts at 1. 0 means unnamed.
519 * Access is covered by the object_name_lock in the related drm_device
520 */
521 int name;
522
523 /**
524 * Memory domains. These monitor which caches contain read/write data
525 * related to the object. When transitioning from one set of domains
526 * to another, the driver is called to ensure that caches are suitably
527 * flushed and invalidated
528 */
529 uint32_t read_domains;
530 uint32_t write_domain;
531
532 /**
533 * While validating an exec operation, the
534 * new read/write domain values are computed here.
535 * They will be transferred to the above values
536 * at the point that any cache flushing occurs
537 */
538 uint32_t pending_read_domains;
539 uint32_t pending_write_domain;
540
319c933c
DV
541 /**
542 * dma_buf - dma buf associated with this GEM object
543 *
544 * Pointer to the dma-buf associated with this gem object (either
545 * through importing or exporting). We break the resulting reference
546 * loop when the last gem handle for this object is released.
547 *
548 * Protected by obj->object_name_lock
549 */
550 struct dma_buf *dma_buf;
3248877e 551
7106bf96
DV
552 /**
553 * import_attach - dma buf attachment backing this object
554 *
555 * Any foreign dma_buf imported as a gem object has this set to the
556 * attachment point for the device. This is invariant over the lifetime
557 * of a gem object.
558 *
559 * The driver's ->gem_free_object callback is responsible for cleaning
560 * up the dma_buf attachment and references acquired at import time.
838cd445
DV
561 *
562 * Note that the drm gem/prime core does not depend upon drivers setting
563 * this field any more. So for drivers where this doesn't make sense
564 * (e.g. virtual devices or a displaylink behind an usb bus) they can
565 * simply leave it as NULL.
7106bf96 566 */
3248877e 567 struct dma_buf_attachment *import_attach;
673a394b
EA
568};
569
c996fd0b
TH
570/**
571 * struct drm_master - drm master structure
572 *
573 * @refcount: Refcount for this master object.
574 * @minor: Link back to minor char device we are master for. Immutable.
575 * @unique: Unique identifier: e.g. busid. Protected by drm_global_mutex.
576 * @unique_len: Length of unique field. Protected by drm_global_mutex.
c996fd0b
TH
577 * @magiclist: Hash of used authentication tokens. Protected by struct_mutex.
578 * @magicfree: List of used authentication tokens. Protected by struct_mutex.
579 * @lock: DRI lock information.
580 * @driver_priv: Pointer to driver-private information.
581 */
7c1c2871 582struct drm_master {
c996fd0b
TH
583 struct kref refcount;
584 struct drm_minor *minor;
585 char *unique;
586 int unique_len;
7c1c2871
DA
587 struct drm_open_hash magiclist;
588 struct list_head magicfree;
c996fd0b
TH
589 struct drm_lock_data lock;
590 void *driver_priv;
7c1c2871
DA
591};
592
27641c3f
MK
593/* Size of ringbuffer for vblank timestamps. Just double-buffer
594 * in initial implementation.
595 */
596#define DRM_VBLANKTIME_RBSIZE 2
597
598/* Flags and return codes for get_vblank_timestamp() driver function. */
599#define DRM_CALLED_FROM_VBLIRQ 1
600#define DRM_VBLANKTIME_SCANOUTPOS_METHOD (1 << 0)
601#define DRM_VBLANKTIME_INVBL (1 << 1)
602
603/* get_scanout_position() return flags */
604#define DRM_SCANOUTPOS_VALID (1 << 0)
605#define DRM_SCANOUTPOS_INVBL (1 << 1)
606#define DRM_SCANOUTPOS_ACCURATE (1 << 2)
607
8410ea3b 608struct drm_bus {
8410ea3b 609 int (*set_busid)(struct drm_device *dev, struct drm_master *master);
8410ea3b
DA
610};
611
1da177e4
LT
612/**
613 * DRM driver structure. This structure represent the common code for
614 * a family of cards. There will one drm_device for each card present
615 * in this family
616 */
1da177e4 617struct drm_driver {
22eae947
DA
618 int (*load) (struct drm_device *, unsigned long flags);
619 int (*firstopen) (struct drm_device *);
84b1fd10 620 int (*open) (struct drm_device *, struct drm_file *);
6c340eac 621 void (*preclose) (struct drm_device *, struct drm_file *file_priv);
84b1fd10 622 void (*postclose) (struct drm_device *, struct drm_file *);
22eae947
DA
623 void (*lastclose) (struct drm_device *);
624 int (*unload) (struct drm_device *);
b932ccb5 625 int (*suspend) (struct drm_device *, pm_message_t state);
e8b962b6 626 int (*resume) (struct drm_device *);
c153f45f 627 int (*dma_ioctl) (struct drm_device *dev, void *data, struct drm_file *file_priv);
b5e89ed5 628 int (*dma_quiescent) (struct drm_device *);
84b1fd10 629 int (*context_dtor) (struct drm_device *dev, int context);
915b4d11 630 int (*set_busid)(struct drm_device *dev, struct drm_master *master);
b5e89ed5 631
0a3e67a4
JB
632 /**
633 * get_vblank_counter - get raw hardware vblank counter
634 * @dev: DRM device
635 * @crtc: counter to fetch
636 *
3b02ab88
LP
637 * Driver callback for fetching a raw hardware vblank counter for @crtc.
638 * If a device doesn't have a hardware counter, the driver can simply
639 * return the value of drm_vblank_count. The DRM core will account for
640 * missed vblank events while interrupts where disabled based on system
641 * timestamps.
0a3e67a4
JB
642 *
643 * Wraparound handling and loss of events due to modesetting is dealt
644 * with in the DRM core code.
645 *
646 * RETURNS
647 * Raw vblank counter value.
648 */
649 u32 (*get_vblank_counter) (struct drm_device *dev, int crtc);
650
651 /**
652 * enable_vblank - enable vblank interrupt events
653 * @dev: DRM device
654 * @crtc: which irq to enable
655 *
656 * Enable vblank interrupts for @crtc. If the device doesn't have
657 * a hardware vblank counter, this routine should be a no-op, since
658 * interrupts will have to stay on to keep the count accurate.
659 *
660 * RETURNS
661 * Zero on success, appropriate errno if the given @crtc's vblank
662 * interrupt cannot be enabled.
663 */
664 int (*enable_vblank) (struct drm_device *dev, int crtc);
665
666 /**
667 * disable_vblank - disable vblank interrupt events
668 * @dev: DRM device
669 * @crtc: which irq to enable
670 *
671 * Disable vblank interrupts for @crtc. If the device doesn't have
672 * a hardware vblank counter, this routine should be a no-op, since
673 * interrupts will have to stay on to keep the count accurate.
674 */
675 void (*disable_vblank) (struct drm_device *dev, int crtc);
676
cda17380
DA
677 /**
678 * Called by \c drm_device_is_agp. Typically used to determine if a
679 * card is really attached to AGP or not.
680 *
681 * \param dev DRM device handle
682 *
683 * \returns
684 * One of three values is returned depending on whether or not the
685 * card is absolutely \b not AGP (return of 0), absolutely \b is AGP
686 * (return of 1), or may or may not be AGP (return of 2).
687 */
84b1fd10 688 int (*device_is_agp) (struct drm_device *dev);
cda17380 689
27641c3f
MK
690 /**
691 * Called by vblank timestamping code.
692 *
8f6fce03
MK
693 * Return the current display scanout position from a crtc, and an
694 * optional accurate ktime_get timestamp of when position was measured.
27641c3f
MK
695 *
696 * \param dev DRM device.
697 * \param crtc Id of the crtc to query.
abca9e45 698 * \param flags Flags from the caller (DRM_CALLED_FROM_VBLIRQ or 0).
27641c3f
MK
699 * \param *vpos Target location for current vertical scanout position.
700 * \param *hpos Target location for current horizontal scanout position.
8f6fce03
MK
701 * \param *stime Target location for timestamp taken immediately before
702 * scanout position query. Can be NULL to skip timestamp.
703 * \param *etime Target location for timestamp taken immediately after
704 * scanout position query. Can be NULL to skip timestamp.
27641c3f
MK
705 *
706 * Returns vpos as a positive number while in active scanout area.
707 * Returns vpos as a negative number inside vblank, counting the number
708 * of scanlines to go until end of vblank, e.g., -1 means "one scanline
709 * until start of active scanout / end of vblank."
710 *
711 * \return Flags, or'ed together as follows:
712 *
25985edc 713 * DRM_SCANOUTPOS_VALID = Query successful.
27641c3f
MK
714 * DRM_SCANOUTPOS_INVBL = Inside vblank.
715 * DRM_SCANOUTPOS_ACCURATE = Returned position is accurate. A lack of
716 * this flag means that returned position may be offset by a constant
717 * but unknown small number of scanlines wrt. real scanout position.
718 *
719 */
720 int (*get_scanout_position) (struct drm_device *dev, int crtc,
abca9e45 721 unsigned int flags,
8f6fce03
MK
722 int *vpos, int *hpos, ktime_t *stime,
723 ktime_t *etime);
27641c3f
MK
724
725 /**
726 * Called by \c drm_get_last_vbltimestamp. Should return a precise
727 * timestamp when the most recent VBLANK interval ended or will end.
728 *
729 * Specifically, the timestamp in @vblank_time should correspond as
730 * closely as possible to the time when the first video scanline of
731 * the video frame after the end of VBLANK will start scanning out,
42b2aa86 732 * the time immediately after end of the VBLANK interval. If the
27641c3f
MK
733 * @crtc is currently inside VBLANK, this will be a time in the future.
734 * If the @crtc is currently scanning out a frame, this will be the
735 * past start time of the current scanout. This is meant to adhere
736 * to the OpenML OML_sync_control extension specification.
737 *
738 * \param dev dev DRM device handle.
739 * \param crtc crtc for which timestamp should be returned.
740 * \param *max_error Maximum allowable timestamp error in nanoseconds.
741 * Implementation should strive to provide timestamp
742 * with an error of at most *max_error nanoseconds.
743 * Returns true upper bound on error for timestamp.
744 * \param *vblank_time Target location for returned vblank timestamp.
745 * \param flags 0 = Defaults, no special treatment needed.
746 * \param DRM_CALLED_FROM_VBLIRQ = Function is called from vblank
747 * irq handler. Some drivers need to apply some workarounds
748 * for gpu-specific vblank irq quirks if flag is set.
749 *
750 * \returns
751 * Zero if timestamping isn't supported in current display mode or a
752 * negative number on failure. A positive status code on success,
753 * which describes how the vblank_time timestamp was computed.
754 */
755 int (*get_vblank_timestamp) (struct drm_device *dev, int crtc,
756 int *max_error,
757 struct timeval *vblank_time,
758 unsigned flags);
759
1da177e4 760 /* these have to be filled in */
b5e89ed5 761
e9f0d76f 762 irqreturn_t(*irq_handler) (int irq, void *arg);
84b1fd10 763 void (*irq_preinstall) (struct drm_device *dev);
0a3e67a4 764 int (*irq_postinstall) (struct drm_device *dev);
84b1fd10 765 void (*irq_uninstall) (struct drm_device *dev);
22eae947 766
7c1c2871
DA
767 /* Master routines */
768 int (*master_create)(struct drm_device *dev, struct drm_master *master);
769 void (*master_destroy)(struct drm_device *dev, struct drm_master *master);
862302ff
TH
770 /**
771 * master_set is called whenever the minor master is set.
772 * master_drop is called whenever the minor master is dropped.
773 */
774
775 int (*master_set)(struct drm_device *dev, struct drm_file *file_priv,
776 bool from_open);
777 void (*master_drop)(struct drm_device *dev, struct drm_file *file_priv,
778 bool from_release);
7c1c2871 779
955b12de
BG
780 int (*debugfs_init)(struct drm_minor *minor);
781 void (*debugfs_cleanup)(struct drm_minor *minor);
673a394b
EA
782
783 /**
784 * Driver-specific constructor for drm_gem_objects, to set up
785 * obj->driver_private.
786 *
787 * Returns 0 on success.
788 */
673a394b 789 void (*gem_free_object) (struct drm_gem_object *obj);
304eda32
BS
790 int (*gem_open_object) (struct drm_gem_object *, struct drm_file *);
791 void (*gem_close_object) (struct drm_gem_object *, struct drm_file *);
673a394b 792
3248877e
DA
793 /* prime: */
794 /* export handle -> fd (see drm_gem_prime_handle_to_fd() helper) */
795 int (*prime_handle_to_fd)(struct drm_device *dev, struct drm_file *file_priv,
796 uint32_t handle, uint32_t flags, int *prime_fd);
797 /* import fd -> handle (see drm_gem_prime_fd_to_handle() helper) */
798 int (*prime_fd_to_handle)(struct drm_device *dev, struct drm_file *file_priv,
799 int prime_fd, uint32_t *handle);
800 /* export GEM -> dmabuf */
801 struct dma_buf * (*gem_prime_export)(struct drm_device *dev,
802 struct drm_gem_object *obj, int flags);
803 /* import dmabuf -> GEM */
804 struct drm_gem_object * (*gem_prime_import)(struct drm_device *dev,
805 struct dma_buf *dma_buf);
89177644
AP
806 /* low-level interface used by drm_gem_prime_{import,export} */
807 int (*gem_prime_pin)(struct drm_gem_object *obj);
102d6dba 808 void (*gem_prime_unpin)(struct drm_gem_object *obj);
3aac4502
ML
809 struct reservation_object * (*gem_prime_res_obj)(
810 struct drm_gem_object *obj);
89177644
AP
811 struct sg_table *(*gem_prime_get_sg_table)(struct drm_gem_object *obj);
812 struct drm_gem_object *(*gem_prime_import_sg_table)(
813 struct drm_device *dev, size_t size,
814 struct sg_table *sgt);
815 void *(*gem_prime_vmap)(struct drm_gem_object *obj);
816 void (*gem_prime_vunmap)(struct drm_gem_object *obj, void *vaddr);
7c397cd9
JS
817 int (*gem_prime_mmap)(struct drm_gem_object *obj,
818 struct vm_area_struct *vma);
3248877e 819
28d52043
DA
820 /* vga arb irq handler */
821 void (*vgaarb_irq)(struct drm_device *dev, bool state);
822
ff72145b
DA
823 /* dumb alloc support */
824 int (*dumb_create)(struct drm_file *file_priv,
825 struct drm_device *dev,
826 struct drm_mode_create_dumb *args);
827 int (*dumb_map_offset)(struct drm_file *file_priv,
828 struct drm_device *dev, uint32_t handle,
829 uint64_t *offset);
830 int (*dumb_destroy)(struct drm_file *file_priv,
831 struct drm_device *dev,
832 uint32_t handle);
833
a2c0a97b 834 /* Driver private ops for this object */
78b68556 835 const struct vm_operations_struct *gem_vm_ops;
a2c0a97b 836
22eae947
DA
837 int major;
838 int minor;
839 int patchlevel;
840 char *name;
841 char *desc;
842 char *date;
843
1da177e4
LT
844 u32 driver_features;
845 int dev_priv_size;
baa70943 846 const struct drm_ioctl_desc *ioctls;
1da177e4 847 int num_ioctls;
e08e96de 848 const struct file_operations *fops;
8410ea3b
DA
849 struct drm_bus *bus;
850
b3f2333d
DV
851 /* List of devices hanging off this driver with stealth attach. */
852 struct list_head legacy_dev_list;
1da177e4
LT
853};
854
cb8a239b
DH
855enum drm_minor_type {
856 DRM_MINOR_LEGACY,
857 DRM_MINOR_CONTROL,
858 DRM_MINOR_RENDER,
859 DRM_MINOR_CNT,
860};
2c14f28b 861
955b12de
BG
862/**
863 * Info file list entry. This structure represents a debugfs or proc file to
864 * be created by the drm core
865 */
866struct drm_info_list {
867 const char *name; /** file name */
868 int (*show)(struct seq_file*, void*); /** show callback */
869 u32 driver_features; /**< Required driver features for this entry */
870 void *data;
871};
872
873/**
874 * debugfs node structure. This structure represents a debugfs file.
875 */
876struct drm_info_node {
877 struct list_head list;
878 struct drm_minor *minor;
ce089b54 879 const struct drm_info_list *info_ent;
955b12de
BG
880 struct dentry *dent;
881};
882
1da177e4 883/**
2c14f28b 884 * DRM minor structure. This structure represents a drm minor number.
1da177e4 885 */
2c14f28b
DA
886struct drm_minor {
887 int index; /**< Minor device number */
888 int type; /**< Control or render */
5bdebb18 889 struct device *kdev; /**< Linux device */
1da177e4 890 struct drm_device *dev;
955b12de 891
955b12de 892 struct dentry *debugfs_root;
b3e067c0
MS
893
894 struct list_head debugfs_list;
895 struct mutex debugfs_lock; /* Protects debugfs_list. */
955b12de 896
c996fd0b
TH
897 /* currently active master for this node. Protected by master_mutex */
898 struct drm_master *master;
f453ba04 899 struct drm_mode_group mode_group;
84b1fd10 900};
1da177e4 901
1794d257 902
c9a9c5e0
KH
903struct drm_pending_vblank_event {
904 struct drm_pending_event base;
905 int pipe;
906 struct drm_event_vblank event;
907};
908
5380e929 909struct drm_vblank_crtc {
e69595c2 910 struct drm_device *dev; /* pointer to the drm_device */
5380e929
VS
911 wait_queue_head_t queue; /**< VBLANK wait queue */
912 struct timeval time[DRM_VBLANKTIME_RBSIZE]; /**< timestamp of current count */
e69595c2 913 struct timer_list disable_timer; /* delayed disable timer */
5380e929
VS
914 atomic_t count; /**< number of VBLANK interrupts */
915 atomic_t refcount; /* number of users of vblank interruptsper crtc */
916 u32 last; /* protected by dev->vbl_lock, used */
917 /* for wraparound handling */
918 u32 last_wait; /* Last vblank seqno waited per CRTC */
919 unsigned int inmodeset; /* Display driver is setting mode */
e69595c2 920 int crtc; /* crtc index */
5380e929
VS
921 bool enabled; /* so we don't call enable more than
922 once per disable */
923};
924
1da177e4
LT
925/**
926 * DRM device structure. This structure represent a complete card that
927 * may contain multiple heads.
928 */
84b1fd10 929struct drm_device {
b3f2333d 930 struct list_head legacy_dev_list;/**< list of devices per driver for stealth attach cleanup */
b5e89ed5 931 int if_version; /**< Highest interface version set */
1da177e4 932
45e212d2
DH
933 /** \name Lifetime Management */
934 /*@{ */
099d1c29 935 struct kref ref; /**< Object ref-count */
45e212d2
DH
936 struct device *dev; /**< Device structure of bus-device */
937 struct drm_driver *driver; /**< DRM driver managing the device */
938 void *dev_private; /**< DRM driver private data */
45e212d2
DH
939 struct drm_minor *control; /**< Control node */
940 struct drm_minor *primary; /**< Primary node */
941 struct drm_minor *render; /**< Render node */
942 atomic_t unplugged; /**< Flag whether dev is dead */
07b48c3a 943 struct inode *anon_inode; /**< inode for private address-space */
ca8e2ad7 944 char *unique; /**< unique name of the device */
45e212d2
DH
945 /*@} */
946
1da177e4 947 /** \name Locks */
b5e89ed5 948 /*@{ */
30e2fb18 949 struct mutex struct_mutex; /**< For others */
c996fd0b 950 struct mutex master_mutex; /**< For drm_minor::master and drm_file::is_master */
b5e89ed5 951 /*@} */
1da177e4
LT
952
953 /** \name Usage Counters */
b5e89ed5 954 /*@{ */
fc8fd40e 955 int open_count; /**< Outstanding files open, protected by drm_global_mutex. */
2177a218 956 spinlock_t buf_lock; /**< For drm_device::buf_use and a few other things. */
b5e89ed5
DA
957 int buf_use; /**< Buffers in use -- cannot alloc */
958 atomic_t buf_alloc; /**< Buffer allocation in progress */
959 /*@} */
1da177e4 960
bd1b331f 961 struct list_head filelist;
1da177e4
LT
962
963 /** \name Memory management */
b5e89ed5 964 /*@{ */
bd1b331f 965 struct list_head maplist; /**< Linked list of regions */
e0be428e 966 struct drm_open_hash map_hash; /**< User token hash table for maps */
1da177e4
LT
967
968 /** \name Context handle management */
b5e89ed5 969 /*@{ */
bd1b331f 970 struct list_head ctxlist; /**< Linked list of context handles */
30e2fb18 971 struct mutex ctxlist_mutex; /**< For ctxlist */
1da177e4 972
62968144 973 struct idr ctx_idr;
1da177e4 974
bd1b331f 975 struct list_head vmalist; /**< List of vmas (for debugging) */
f453ba04 976
b5e89ed5 977 /*@} */
1da177e4 978
a344a7e7 979 /** \name DMA support */
b5e89ed5 980 /*@{ */
cdd55a29 981 struct drm_device_dma *dma; /**< Optional pointer for DMA support */
b5e89ed5 982 /*@} */
1da177e4
LT
983
984 /** \name Context support */
b5e89ed5 985 /*@{ */
4423843c 986 bool irq_enabled; /**< True if irq handler is enabled */
7c1a38e3
DV
987 int irq;
988
1da177e4 989 __volatile__ long context_flag; /**< Context swapping flag */
b5e89ed5 990 int last_context; /**< Last current context */
b5e89ed5
DA
991 /*@} */
992
1da177e4 993 /** \name VBLANK IRQ support */
b5e89ed5
DA
994 /*@{ */
995
0a3e67a4
JB
996 /*
997 * At load time, disabling the vblank interrupt won't be allowed since
998 * old clients may not call the modeset ioctl and therefore misbehave.
999 * Once the modeset ioctl *has* been called though, we can safely
1000 * disable them when unused.
1001 */
ba0bf120 1002 bool vblank_disable_allowed;
0a3e67a4 1003
5380e929
VS
1004 /* array of size num_crtcs */
1005 struct drm_vblank_crtc *vblank;
0a3e67a4 1006
27641c3f 1007 spinlock_t vblank_time_lock; /**< Protects vblank count and time updates during vblank enable/disable */
b5e89ed5 1008 spinlock_t vbl_lock;
0a3e67a4
JB
1009
1010 u32 max_vblank_count; /**< size of vblank counter register */
b5e89ed5 1011
c9a9c5e0
KH
1012 /**
1013 * List of events
1014 */
1015 struct list_head vblank_event_list;
1016 spinlock_t event_lock;
1017
b5e89ed5 1018 /*@} */
b5e89ed5 1019
55910517 1020 struct drm_agp_head *agp; /**< AGP data */
1da177e4 1021
b5e89ed5 1022 struct pci_dev *pdev; /**< PCI device structure */
1da177e4 1023#ifdef __alpha__
1da177e4 1024 struct pci_controller *hose;
1da177e4 1025#endif
dcdb1674
JC
1026
1027 struct platform_device *platformdev; /**< Platform device struture */
a250b9fd 1028 struct usb_device *usbdev;
dcdb1674 1029
55910517 1030 struct drm_sg_mem *sg; /**< Scatter gather memory */
19227561 1031 unsigned int num_crtcs; /**< Number of CRTCs on this device */
b5e89ed5
DA
1032 sigset_t sigmask;
1033
69d516c0
DH
1034 struct {
1035 int context;
1036 struct drm_hw_lock *lock;
1037 } sigdata;
1038
f77d390c 1039 struct drm_local_map *agp_buffer_map;
d1f2b55a 1040 unsigned int agp_buffer_token;
bea5679f 1041
f453ba04
DA
1042 struct drm_mode_config mode_config; /**< Current mode config */
1043
673a394b
EA
1044 /** \name GEM information */
1045 /*@{ */
cd4f013f 1046 struct mutex object_name_lock;
673a394b 1047 struct idr object_name_idr;
b04a5906 1048 struct drm_vma_offset_manager *vma_offset_manager;
673a394b 1049 /*@} */
5bcf719b 1050 int switch_power_state;
84b1fd10 1051};
1da177e4 1052
5bcf719b
DA
1053#define DRM_SWITCH_POWER_ON 0
1054#define DRM_SWITCH_POWER_OFF 1
1055#define DRM_SWITCH_POWER_CHANGING 2
13bb9cc8 1056#define DRM_SWITCH_POWER_DYNAMIC_OFF 3
5bcf719b 1057
b5e89ed5
DA
1058static __inline__ int drm_core_check_feature(struct drm_device *dev,
1059 int feature)
1da177e4
LT
1060{
1061 return ((dev->driver->driver_features & feature) ? 1 : 0);
1062}
1063
2c07a21d
DA
1064static inline void drm_device_set_unplugged(struct drm_device *dev)
1065{
1066 smp_wmb();
1067 atomic_set(&dev->unplugged, 1);
1068}
1069
1070static inline int drm_device_is_unplugged(struct drm_device *dev)
1071{
1072 int ret = atomic_read(&dev->unplugged);
1073 smp_rmb();
1074 return ret;
1075}
1076
43683057 1077static inline bool drm_is_render_client(const struct drm_file *file_priv)
1793126f
DH
1078{
1079 return file_priv->minor->type == DRM_MINOR_RENDER;
1080}
1081
ac05dbc5
TH
1082static inline bool drm_is_control_client(const struct drm_file *file_priv)
1083{
1084 return file_priv->minor->type == DRM_MINOR_CONTROL;
1085}
1086
43683057
TH
1087static inline bool drm_is_primary_client(const struct drm_file *file_priv)
1088{
1089 return file_priv->minor->type == DRM_MINOR_LEGACY;
1090}
1091
1da177e4
LT
1092/******************************************************************/
1093/** \name Internal function definitions */
1094/*@{*/
1095
1da177e4 1096 /* Driver support (drm_drv.h) */
ed8b6704
AB
1097extern long drm_ioctl(struct file *filp,
1098 unsigned int cmd, unsigned long arg);
b5e89ed5
DA
1099extern long drm_compat_ioctl(struct file *filp,
1100 unsigned int cmd, unsigned long arg);
84b1fd10 1101extern int drm_lastclose(struct drm_device *dev);
4beb6d9f 1102extern bool drm_ioctl_flags(unsigned int nr, unsigned int *flags);
1da177e4
LT
1103
1104 /* Device support (drm_fops.h) */
58374713 1105extern struct mutex drm_global_mutex;
b5e89ed5 1106extern int drm_open(struct inode *inode, struct file *filp);
c9a9c5e0
KH
1107extern ssize_t drm_read(struct file *filp, char __user *buffer,
1108 size_t count, loff_t *offset);
b5e89ed5 1109extern int drm_release(struct inode *inode, struct file *filp);
1da177e4
LT
1110
1111 /* Mapping support (drm_vm.h) */
b5e89ed5 1112extern int drm_mmap(struct file *filp, struct vm_area_struct *vma);
a2c0a97b 1113extern int drm_mmap_locked(struct file *filp, struct vm_area_struct *vma);
b06d66be
RC
1114extern void drm_vm_open_locked(struct drm_device *dev, struct vm_area_struct *vma);
1115extern void drm_vm_close_locked(struct drm_device *dev, struct vm_area_struct *vma);
b5e89ed5 1116extern unsigned int drm_poll(struct file *filp, struct poll_table_struct *wait);
1da177e4 1117
1da177e4 1118 /* Misc. IOCTL support (drm_ioctl.h) */
c153f45f
EA
1119extern int drm_irq_by_busid(struct drm_device *dev, void *data,
1120 struct drm_file *file_priv);
1121extern int drm_getunique(struct drm_device *dev, void *data,
1122 struct drm_file *file_priv);
1123extern int drm_setunique(struct drm_device *dev, void *data,
1124 struct drm_file *file_priv);
1125extern int drm_getmap(struct drm_device *dev, void *data,
1126 struct drm_file *file_priv);
1127extern int drm_getclient(struct drm_device *dev, void *data,
1128 struct drm_file *file_priv);
1129extern int drm_getstats(struct drm_device *dev, void *data,
1130 struct drm_file *file_priv);
9f35421e
BS
1131extern int drm_getcap(struct drm_device *dev, void *data,
1132 struct drm_file *file_priv);
1c0814fe
DL
1133extern int drm_setclientcap(struct drm_device *dev, void *data,
1134 struct drm_file *file_priv);
c153f45f
EA
1135extern int drm_setversion(struct drm_device *dev, void *data,
1136 struct drm_file *file_priv);
1137extern int drm_noop(struct drm_device *dev, void *data,
1138 struct drm_file *file_priv);
1da177e4 1139
1da177e4 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);
598781d7 1145extern int drm_remove_magic(struct drm_master *master, drm_magic_t magic);
1da177e4 1146
673a394b
EA
1147/* Cache management (drm_cache.c) */
1148void drm_clflush_pages(struct page *pages[], unsigned long num_pages);
9da3da66 1149void drm_clflush_sg(struct sg_table *st);
c2d15359 1150void drm_clflush_virt_range(void *addr, unsigned long length);
673a394b 1151
1da177e4 1152 /* Locking IOCTL support (drm_lock.h) */
c153f45f
EA
1153extern int drm_lock(struct drm_device *dev, void *data,
1154 struct drm_file *file_priv);
1155extern int drm_unlock(struct drm_device *dev, void *data,
1156 struct drm_file *file_priv);
55910517
DA
1157extern int drm_lock_free(struct drm_lock_data *lock_data, unsigned int context);
1158extern void drm_idlelock_take(struct drm_lock_data *lock_data);
1159extern void drm_idlelock_release(struct drm_lock_data *lock_data);
040ac320
TH
1160
1161/*
1162 * These are exported to drivers so that they can implement fencing using
1163 * DMA quiscent + idle. DMA quiescent usually requires the hardware lock.
1164 */
1165
c153f45f 1166extern int drm_i_have_hw_lock(struct drm_device *dev, struct drm_file *file_priv);
1da177e4 1167
1da177e4 1168 /* DMA support (drm_dma.h) */
e2e99a82
DV
1169extern int drm_legacy_dma_setup(struct drm_device *dev);
1170extern void drm_legacy_dma_takedown(struct drm_device *dev);
056219e2 1171extern void drm_free_buffer(struct drm_device *dev, struct drm_buf * buf);
6c340eac
EA
1172extern void drm_core_reclaim_buffers(struct drm_device *dev,
1173 struct drm_file *filp);
1da177e4
LT
1174
1175 /* IRQ support (drm_irq.h) */
c153f45f
EA
1176extern int drm_control(struct drm_device *dev, void *data,
1177 struct drm_file *file_priv);
bb0f1b5c 1178extern int drm_irq_install(struct drm_device *dev, int irq);
84b1fd10 1179extern int drm_irq_uninstall(struct drm_device *dev);
b5e89ed5 1180
0a3e67a4 1181extern int drm_vblank_init(struct drm_device *dev, int num_crtcs);
af6061af 1182extern int drm_wait_vblank(struct drm_device *dev, void *data,
0a3e67a4 1183 struct drm_file *filp);
0a3e67a4 1184extern u32 drm_vblank_count(struct drm_device *dev, int crtc);
27641c3f
MK
1185extern u32 drm_vblank_count_and_time(struct drm_device *dev, int crtc,
1186 struct timeval *vblanktime);
c6eefa17
RC
1187extern void drm_send_vblank_event(struct drm_device *dev, int crtc,
1188 struct drm_pending_vblank_event *e);
78c6e170 1189extern bool drm_handle_vblank(struct drm_device *dev, int crtc);
0a3e67a4
JB
1190extern int drm_vblank_get(struct drm_device *dev, int crtc);
1191extern void drm_vblank_put(struct drm_device *dev, int crtc);
89dd6a4b
DV
1192extern int drm_crtc_vblank_get(struct drm_crtc *crtc);
1193extern void drm_crtc_vblank_put(struct drm_crtc *crtc);
e8450f51
DV
1194extern void drm_wait_one_vblank(struct drm_device *dev, int crtc);
1195extern void drm_crtc_wait_one_vblank(struct drm_crtc *crtc);
778c9026 1196extern void drm_vblank_off(struct drm_device *dev, int crtc);
f2752282 1197extern void drm_vblank_on(struct drm_device *dev, int crtc);
89dd6a4b
DV
1198extern void drm_crtc_vblank_off(struct drm_crtc *crtc);
1199extern void drm_crtc_vblank_on(struct drm_crtc *crtc);
52440211 1200extern void drm_vblank_cleanup(struct drm_device *dev);
89dd6a4b 1201
27641c3f
MK
1202extern u32 drm_get_last_vbltimestamp(struct drm_device *dev, int crtc,
1203 struct timeval *tvblank, unsigned flags);
1204extern int drm_calc_vbltimestamp_from_scanoutpos(struct drm_device *dev,
1205 int crtc, int *max_error,
1206 struct timeval *vblank_time,
1207 unsigned flags,
7da903ef
VS
1208 const struct drm_crtc *refcrtc,
1209 const struct drm_display_mode *mode);
545cdd55
VS
1210extern void drm_calc_timestamping_constants(struct drm_crtc *crtc,
1211 const struct drm_display_mode *mode);
27641c3f 1212
020178a1
VS
1213/**
1214 * drm_crtc_vblank_waitqueue - get vblank waitqueue for the CRTC
1215 * @crtc: which CRTC's vblank waitqueue to retrieve
1216 *
1217 * This function returns a pointer to the vblank waitqueue for the CRTC.
1218 * Drivers can use this to implement vblank waits using wait_event() & co.
1219 */
1220static inline wait_queue_head_t *drm_crtc_vblank_waitqueue(struct drm_crtc *crtc)
1221{
1222 return &crtc->dev->vblank[drm_crtc_index(crtc)].queue;
1223}
ebc64e45 1224
0a3e67a4 1225/* Modesetting support */
f453ba04
DA
1226extern void drm_vblank_pre_modeset(struct drm_device *dev, int crtc);
1227extern void drm_vblank_post_modeset(struct drm_device *dev, int crtc);
0a3e67a4
JB
1228extern int drm_modeset_ctl(struct drm_device *dev, void *data,
1229 struct drm_file *file_priv);
1da177e4 1230
1da177e4 1231 /* Stub support (drm_stub.h) */
7c1c2871
DA
1232extern int drm_setmaster_ioctl(struct drm_device *dev, void *data,
1233 struct drm_file *file_priv);
1234extern int drm_dropmaster_ioctl(struct drm_device *dev, void *data,
1235 struct drm_file *file_priv);
1236struct drm_master *drm_master_create(struct drm_minor *minor);
1237extern struct drm_master *drm_master_get(struct drm_master *master);
1238extern void drm_master_put(struct drm_master **master);
8410ea3b 1239
112b715e 1240extern void drm_put_dev(struct drm_device *dev);
2c07a21d 1241extern void drm_unplug_dev(struct drm_device *dev);
b5e89ed5 1242extern unsigned int drm_debug;
2c14f28b 1243
27641c3f
MK
1244extern unsigned int drm_vblank_offdelay;
1245extern unsigned int drm_timestamp_precision;
c61eef72 1246extern unsigned int drm_timestamp_monotonic;
27641c3f 1247
0650fd58 1248extern struct class *drm_class;
2c14f28b 1249
955b12de
BG
1250 /* Debugfs support */
1251#if defined(CONFIG_DEBUG_FS)
1252extern int drm_debugfs_init(struct drm_minor *minor, int minor_id,
1253 struct dentry *root);
7d74795b
LD
1254extern int drm_debugfs_create_files(const struct drm_info_list *files,
1255 int count, struct dentry *root,
1256 struct drm_minor *minor);
1257extern int drm_debugfs_remove_files(const struct drm_info_list *files,
1258 int count, struct drm_minor *minor);
955b12de 1259extern int drm_debugfs_cleanup(struct drm_minor *minor);
30f65707
TW
1260extern int drm_debugfs_connector_add(struct drm_connector *connector);
1261extern void drm_debugfs_connector_remove(struct drm_connector *connector);
66ee52e2
TR
1262#else
1263static inline int drm_debugfs_init(struct drm_minor *minor, int minor_id,
1264 struct dentry *root)
1265{
1266 return 0;
1267}
1268
1269static inline int drm_debugfs_create_files(const struct drm_info_list *files,
1270 int count, struct dentry *root,
1271 struct drm_minor *minor)
1272{
1273 return 0;
1274}
1275
1276static inline int drm_debugfs_remove_files(const struct drm_info_list *files,
1277 int count, struct drm_minor *minor)
1278{
1279 return 0;
1280}
1281
1282static inline int drm_debugfs_cleanup(struct drm_minor *minor)
1283{
1284 return 0;
1285}
30f65707
TW
1286
1287static inline int drm_debugfs_connector_add(struct drm_connector *connector)
1288{
1289 return 0;
1290}
1291static inline void drm_debugfs_connector_remove(struct drm_connector *connector)
1292{
1293}
1294
955b12de
BG
1295#endif
1296
1297 /* Info file support */
1298extern int drm_name_info(struct seq_file *m, void *data);
1299extern int drm_vm_info(struct seq_file *m, void *data);
955b12de
BG
1300extern int drm_bufs_info(struct seq_file *m, void *data);
1301extern int drm_vblank_info(struct seq_file *m, void *data);
1302extern int drm_clients_info(struct seq_file *m, void* data);
1303extern int drm_gem_name_info(struct seq_file *m, void *data);
955b12de 1304
3248877e 1305
89177644
AP
1306extern struct dma_buf *drm_gem_prime_export(struct drm_device *dev,
1307 struct drm_gem_object *obj, int flags);
3248877e
DA
1308extern int drm_gem_prime_handle_to_fd(struct drm_device *dev,
1309 struct drm_file *file_priv, uint32_t handle, uint32_t flags,
1310 int *prime_fd);
89177644
AP
1311extern struct drm_gem_object *drm_gem_prime_import(struct drm_device *dev,
1312 struct dma_buf *dma_buf);
3248877e
DA
1313extern int drm_gem_prime_fd_to_handle(struct drm_device *dev,
1314 struct drm_file *file_priv, int prime_fd, uint32_t *handle);
c1d6798d 1315extern void drm_gem_dmabuf_release(struct dma_buf *dma_buf);
3248877e
DA
1316
1317extern int drm_prime_handle_to_fd_ioctl(struct drm_device *dev, void *data,
1318 struct drm_file *file_priv);
1319extern int drm_prime_fd_to_handle_ioctl(struct drm_device *dev, void *data,
1320 struct drm_file *file_priv);
1321
51ab7ba2
DA
1322extern int drm_prime_sg_to_page_addr_arrays(struct sg_table *sgt, struct page **pages,
1323 dma_addr_t *addrs, int max_pages);
3248877e
DA
1324extern struct sg_table *drm_prime_pages_to_sg(struct page **pages, int nr_pages);
1325extern void drm_prime_gem_destroy(struct drm_gem_object *obj, struct sg_table *sg);
1326
43387b37
DV
1327int drm_gem_dumb_destroy(struct drm_file *file,
1328 struct drm_device *dev,
1329 uint32_t handle);
3248877e
DA
1330
1331void drm_prime_init_file_private(struct drm_prime_file_private *prime_fpriv);
1332void drm_prime_destroy_file_private(struct drm_prime_file_private *prime_fpriv);
d0b2c533 1333void drm_prime_remove_buf_handle_locked(struct drm_prime_file_private *prime_fpriv, struct dma_buf *dma_buf);
3248877e 1334
955b12de 1335extern int drm_vma_info(struct seq_file *m, void *data);
955b12de 1336
1da177e4 1337 /* Scatter Gather Support (drm_scatter.h) */
3d914e83 1338extern void drm_legacy_sg_cleanup(struct drm_device *dev);
1d8d29cf 1339extern int drm_sg_alloc(struct drm_device *dev, void *data,
c153f45f 1340 struct drm_file *file_priv);
c153f45f
EA
1341extern int drm_sg_free(struct drm_device *dev, void *data,
1342 struct drm_file *file_priv);
1da177e4 1343
b5e89ed5 1344 /* ATI PCIGART support (ati_pcigart.h) */
84b1fd10 1345extern int drm_ati_pcigart_init(struct drm_device *dev,
55910517 1346 struct drm_ati_pcigart_info * gart_info);
84b1fd10 1347extern int drm_ati_pcigart_cleanup(struct drm_device *dev,
55910517 1348 struct drm_ati_pcigart_info * gart_info);
1da177e4 1349
84b1fd10 1350extern drm_dma_handle_t *drm_pci_alloc(struct drm_device *dev, size_t size,
e6be8d9d 1351 size_t align);
84b1fd10
DA
1352extern void __drm_pci_free(struct drm_device *dev, drm_dma_handle_t * dmah);
1353extern void drm_pci_free(struct drm_device *dev, drm_dma_handle_t * dmah);
53bf2a2b
DV
1354extern int drm_pci_set_unique(struct drm_device *dev,
1355 struct drm_master *master,
1356 struct drm_unique *u);
1da177e4 1357
9fc5cde7
DH
1358 /* Legacy Support */
1359
1360int drm_legacy_addmap(struct drm_device *d, resource_size_t offset,
1361 unsigned int size, enum drm_map_type type,
1362 enum drm_map_flags flags, struct drm_local_map **map_p);
1363int drm_legacy_rmmap(struct drm_device *d, struct drm_local_map *map);
1364int drm_legacy_rmmap_locked(struct drm_device *d, struct drm_local_map *map);
1365struct drm_local_map *drm_legacy_getsarea(struct drm_device *dev);
1366
1367int drm_legacy_addbufs_agp(struct drm_device *d, struct drm_buf_desc *req);
1368int drm_legacy_addbufs_pci(struct drm_device *d, struct drm_buf_desc *req);
1369
03decbe5
DH
1370void drm_legacy_vma_flush(struct drm_device *d);
1371
1da177e4 1372 /* sysfs support (drm_sysfs.c) */
e8b962b6 1373struct drm_sysfs_class;
0650fd58 1374extern struct class *drm_sysfs_create(struct module *owner, char *name);
e8b962b6 1375extern void drm_sysfs_destroy(void);
e1728075 1376extern struct device *drm_sysfs_minor_alloc(struct drm_minor *minor);
f453ba04 1377extern void drm_sysfs_hotplug_event(struct drm_device *dev);
f453ba04
DA
1378extern int drm_sysfs_connector_add(struct drm_connector *connector);
1379extern void drm_sysfs_connector_remove(struct drm_connector *connector);
1da177e4 1380
673a394b
EA
1381/* Graphics Execution Manager library functions (drm_gem.c) */
1382int drm_gem_init(struct drm_device *dev);
a2c0a97b 1383void drm_gem_destroy(struct drm_device *dev);
fd632aa3 1384void drm_gem_object_release(struct drm_gem_object *obj);
673a394b 1385void drm_gem_object_free(struct kref *kref);
1d397043
DV
1386int drm_gem_object_init(struct drm_device *dev,
1387 struct drm_gem_object *obj, size_t size);
89c8233f
DH
1388void drm_gem_private_object_init(struct drm_device *dev,
1389 struct drm_gem_object *obj, size_t size);
ab00b3e5
JB
1390void drm_gem_vm_open(struct vm_area_struct *vma);
1391void drm_gem_vm_close(struct vm_area_struct *vma);
1c5aafa6
LP
1392int drm_gem_mmap_obj(struct drm_gem_object *obj, unsigned long obj_size,
1393 struct vm_area_struct *vma);
a2c0a97b 1394int drm_gem_mmap(struct file *filp, struct vm_area_struct *vma);
673a394b
EA
1395
1396static inline void
1397drm_gem_object_reference(struct drm_gem_object *obj)
1398{
1399 kref_get(&obj->refcount);
1400}
1401
1402static inline void
1403drm_gem_object_unreference(struct drm_gem_object *obj)
1404{
c3ae90c0
LB
1405 if (obj != NULL)
1406 kref_put(&obj->refcount, drm_gem_object_free);
1407}
673a394b 1408
c3ae90c0
LB
1409static inline void
1410drm_gem_object_unreference_unlocked(struct drm_gem_object *obj)
1411{
7fc65eb7 1412 if (obj && !atomic_add_unless(&obj->refcount.refcount, -1, 1)) {
39b4d07a 1413 struct drm_device *dev = obj->dev;
7fc65eb7 1414
39b4d07a 1415 mutex_lock(&dev->struct_mutex);
7fc65eb7
CW
1416 if (likely(atomic_dec_and_test(&obj->refcount.refcount)))
1417 drm_gem_object_free(&obj->refcount);
39b4d07a
CW
1418 mutex_unlock(&dev->struct_mutex);
1419 }
673a394b
EA
1420}
1421
20228c44
DV
1422int drm_gem_handle_create_tail(struct drm_file *file_priv,
1423 struct drm_gem_object *obj,
1424 u32 *handlep);
673a394b
EA
1425int drm_gem_handle_create(struct drm_file *file_priv,
1426 struct drm_gem_object *obj,
a1a2d1d3 1427 u32 *handlep);
ff72145b 1428int drm_gem_handle_delete(struct drm_file *filp, u32 handle);
673a394b 1429
c3ae90c0 1430
75ef8b3b
RC
1431void drm_gem_free_mmap_offset(struct drm_gem_object *obj);
1432int drm_gem_create_mmap_offset(struct drm_gem_object *obj);
367bbd49 1433int drm_gem_create_mmap_offset_size(struct drm_gem_object *obj, size_t size);
75ef8b3b 1434
0cdbe8ac 1435struct page **drm_gem_get_pages(struct drm_gem_object *obj);
bcc5c9d5
RC
1436void drm_gem_put_pages(struct drm_gem_object *obj, struct page **pages,
1437 bool dirty, bool accessed);
1438
673a394b
EA
1439struct drm_gem_object *drm_gem_object_lookup(struct drm_device *dev,
1440 struct drm_file *filp,
a1a2d1d3 1441 u32 handle);
673a394b
EA
1442int drm_gem_close_ioctl(struct drm_device *dev, void *data,
1443 struct drm_file *file_priv);
1444int drm_gem_flink_ioctl(struct drm_device *dev, void *data,
1445 struct drm_file *file_priv);
1446int drm_gem_open_ioctl(struct drm_device *dev, void *data,
1447 struct drm_file *file_priv);
1448void drm_gem_open(struct drm_device *dev, struct drm_file *file_private);
1449void drm_gem_release(struct drm_device *dev, struct drm_file *file_private);
1450
f77d390c
BH
1451extern void drm_core_ioremap(struct drm_local_map *map, struct drm_device *dev);
1452extern void drm_core_ioremap_wc(struct drm_local_map *map, struct drm_device *dev);
1453extern void drm_core_ioremapfree(struct drm_local_map *map, struct drm_device *dev);
1da177e4 1454
f77d390c
BH
1455static __inline__ struct drm_local_map *drm_core_findmap(struct drm_device *dev,
1456 unsigned int token)
1da177e4 1457{
55910517 1458 struct drm_map_list *_entry;
bd1b331f 1459 list_for_each_entry(_entry, &dev->maplist, head)
b5e89ed5
DA
1460 if (_entry->user_token == token)
1461 return _entry->map;
1da177e4
LT
1462 return NULL;
1463}
1464
8410ea3b 1465static __inline__ void drm_core_dropmap(struct drm_local_map *map)
cda17380 1466{
8410ea3b
DA
1467}
1468
1bb72532
DH
1469struct drm_device *drm_dev_alloc(struct drm_driver *driver,
1470 struct device *parent);
099d1c29
DH
1471void drm_dev_ref(struct drm_device *dev);
1472void drm_dev_unref(struct drm_device *dev);
c22f0ace 1473int drm_dev_register(struct drm_device *dev, unsigned long flags);
c3a49737 1474void drm_dev_unregister(struct drm_device *dev);
ca8e2ad7 1475int drm_dev_set_unique(struct drm_device *dev, const char *fmt, ...);
1616c525
DH
1476
1477struct drm_minor *drm_minor_acquire(unsigned int minor_id);
1478void drm_minor_release(struct drm_minor *minor);
1479
8410ea3b
DA
1480/*@}*/
1481
1482/* PCI section */
1483static __inline__ int drm_pci_device_is_agp(struct drm_device *dev)
1484{
b5e89ed5
DA
1485 if (dev->driver->device_is_agp != NULL) {
1486 int err = (*dev->driver->device_is_agp) (dev);
1487
cda17380
DA
1488 if (err != 2) {
1489 return err;
1490 }
1491 }
1492
1493 return pci_find_capability(dev->pdev, PCI_CAP_ID_AGP);
1494}
4efafebe 1495void drm_pci_agp_destroy(struct drm_device *dev);
cda17380 1496
8410ea3b
DA
1497extern int drm_pci_init(struct drm_driver *driver, struct pci_driver *pdriver);
1498extern void drm_pci_exit(struct drm_driver *driver, struct pci_driver *pdriver);
1499extern int drm_get_pci_dev(struct pci_dev *pdev,
dcdb1674
JC
1500 const struct pci_device_id *ent,
1501 struct drm_driver *driver);
915b4d11 1502extern int drm_pci_set_busid(struct drm_device *dev, struct drm_master *master);
8410ea3b 1503
f4297784
DA
1504#define DRM_PCIE_SPEED_25 1
1505#define DRM_PCIE_SPEED_50 2
1506#define DRM_PCIE_SPEED_80 4
1507
1508extern int drm_pcie_get_speed_cap_mask(struct drm_device *dev, u32 *speed_mask);
8410ea3b
DA
1509
1510/* platform section */
1511extern int drm_platform_init(struct drm_driver *driver, struct platform_device *platform_device);
915b4d11 1512extern int drm_platform_set_busid(struct drm_device *d, struct drm_master *m);
8410ea3b 1513
cc1f7194
DA
1514/* returns true if currently okay to sleep */
1515static __inline__ bool drm_can_sleep(void)
1516{
1517 if (in_atomic() || in_dbg_master() || irqs_disabled())
1518 return false;
1519 return true;
1520}
1521
1da177e4 1522#endif
This page took 0.697628 seconds and 5 git commands to generate.