drm/gem: move drm_gem_object_handle_unreference_unlocked into drm_gem.c
[deliverable/linux.git] / include / drm / drmP.h
1 /**
2 * \file drmP.h
3 * Private header for Direct Rendering Manager
4 *
5 * \author Rickard E. (Rik) Faith <faith@valinux.com>
6 * \author Gareth Hughes <gareth@valinux.com>
7 */
8
9 /*
10 * Copyright 1999 Precision Insight, Inc., Cedar Park, Texas.
11 * Copyright 2000 VA Linux Systems, Inc., Sunnyvale, California.
12 * Copyright (c) 2009-2010, Code Aurora Forum.
13 * All rights reserved.
14 *
15 * Permission is hereby granted, free of charge, to any person obtaining a
16 * copy of this software and associated documentation files (the "Software"),
17 * to deal in the Software without restriction, including without limitation
18 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
19 * and/or sell copies of the Software, and to permit persons to whom the
20 * Software is furnished to do so, subject to the following conditions:
21 *
22 * The above copyright notice and this permission notice (including the next
23 * paragraph) shall be included in all copies or substantial portions of the
24 * Software.
25 *
26 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
27 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
28 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
29 * VA LINUX SYSTEMS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
30 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
31 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
32 * OTHER DEALINGS IN THE SOFTWARE.
33 */
34
35 #ifndef _DRM_P_H_
36 #define _DRM_P_H_
37
38 #ifdef __KERNEL__
39 #ifdef __alpha__
40 /* add include of current.h so that "current" is defined
41 * before static inline funcs in wait.h. Doing this so we
42 * can build the DRM (part of PI DRI). 4/21/2000 S + B */
43 #include <asm/current.h>
44 #endif /* __alpha__ */
45 #include <linux/kernel.h>
46 #include <linux/miscdevice.h>
47 #include <linux/fs.h>
48 #include <linux/proc_fs.h>
49 #include <linux/init.h>
50 #include <linux/file.h>
51 #include <linux/platform_device.h>
52 #include <linux/pci.h>
53 #include <linux/jiffies.h>
54 #include <linux/dma-mapping.h>
55 #include <linux/mm.h>
56 #include <linux/cdev.h>
57 #include <linux/mutex.h>
58 #include <linux/io.h>
59 #include <linux/slab.h>
60 #if defined(__alpha__) || defined(__powerpc__)
61 #include <asm/pgtable.h> /* For pte_wrprotect */
62 #endif
63 #include <asm/mman.h>
64 #include <asm/uaccess.h>
65 #include <linux/types.h>
66 #include <linux/agp_backend.h>
67 #include <linux/workqueue.h>
68 #include <linux/poll.h>
69 #include <asm/pgalloc.h>
70 #include <drm/drm.h>
71 #include <drm/drm_sarea.h>
72 #include <drm/drm_vma_manager.h>
73
74 #include <linux/idr.h>
75
76 #define __OS_HAS_AGP (defined(CONFIG_AGP) || (defined(CONFIG_AGP_MODULE) && defined(MODULE)))
77 #define __OS_HAS_MTRR (defined(CONFIG_MTRR))
78
79 struct module;
80
81 struct drm_file;
82 struct drm_device;
83
84 struct device_node;
85 struct videomode;
86
87 #include <drm/drm_os_linux.h>
88 #include <drm/drm_hashtab.h>
89 #include <drm/drm_mm.h>
90
91 #define DRM_UT_CORE 0x01
92 #define DRM_UT_DRIVER 0x02
93 #define DRM_UT_KMS 0x04
94 #define DRM_UT_PRIME 0x08
95 /*
96 * Three debug levels are defined.
97 * drm_core, drm_driver, drm_kms
98 * drm_core level can be used in the generic drm code. For example:
99 * drm_ioctl, drm_mm, drm_memory
100 * The macro definition of DRM_DEBUG is used.
101 * DRM_DEBUG(fmt, args...)
102 * The debug info by using the DRM_DEBUG can be obtained by adding
103 * the boot option of "drm.debug=1".
104 *
105 * drm_driver level can be used in the specific drm driver. It is used
106 * to add the debug info related with the drm driver. For example:
107 * i915_drv, i915_dma, i915_gem, radeon_drv,
108 * The macro definition of DRM_DEBUG_DRIVER can be used.
109 * DRM_DEBUG_DRIVER(fmt, args...)
110 * The debug info by using the DRM_DEBUG_DRIVER can be obtained by
111 * adding the boot option of "drm.debug=0x02"
112 *
113 * drm_kms level can be used in the KMS code related with specific drm driver.
114 * It is used to add the debug info related with KMS mode. For example:
115 * the connector/crtc ,
116 * The macro definition of DRM_DEBUG_KMS can be used.
117 * DRM_DEBUG_KMS(fmt, args...)
118 * The debug info by using the DRM_DEBUG_KMS can be obtained by
119 * adding the boot option of "drm.debug=0x04"
120 *
121 * If we add the boot option of "drm.debug=0x06", we can get the debug info by
122 * using the DRM_DEBUG_KMS and DRM_DEBUG_DRIVER.
123 * If we add the boot option of "drm.debug=0x05", we can get the debug info by
124 * using the DRM_DEBUG_KMS and DRM_DEBUG.
125 */
126
127 extern __printf(4, 5)
128 void drm_ut_debug_printk(unsigned int request_level,
129 const char *prefix,
130 const char *function_name,
131 const char *format, ...);
132 extern __printf(2, 3)
133 int drm_err(const char *func, const char *format, ...);
134
135 /***********************************************************************/
136 /** \name DRM template customization defaults */
137 /*@{*/
138
139 /* driver capabilities and requirements mask */
140 #define DRIVER_USE_AGP 0x1
141 #define DRIVER_REQUIRE_AGP 0x2
142 #define DRIVER_USE_MTRR 0x4
143 #define DRIVER_PCI_DMA 0x8
144 #define DRIVER_SG 0x10
145 #define DRIVER_HAVE_DMA 0x20
146 #define DRIVER_HAVE_IRQ 0x40
147 #define DRIVER_IRQ_SHARED 0x80
148 #define DRIVER_GEM 0x1000
149 #define DRIVER_MODESET 0x2000
150 #define DRIVER_PRIME 0x4000
151
152 #define DRIVER_BUS_PCI 0x1
153 #define DRIVER_BUS_PLATFORM 0x2
154 #define DRIVER_BUS_USB 0x3
155
156 /***********************************************************************/
157 /** \name Begin the DRM... */
158 /*@{*/
159
160 #define DRM_DEBUG_CODE 2 /**< Include debugging code if > 1, then
161 also include looping detection. */
162
163 #define DRM_MAGIC_HASH_ORDER 4 /**< Size of key hash table. Must be power of 2. */
164 #define DRM_KERNEL_CONTEXT 0 /**< Change drm_resctx if changed */
165 #define DRM_RESERVED_CONTEXTS 1 /**< Change drm_resctx if changed */
166
167 #define DRM_MAP_HASH_OFFSET 0x10000000
168
169 /*@}*/
170
171 /***********************************************************************/
172 /** \name Macros to make printk easier */
173 /*@{*/
174
175 /**
176 * Error output.
177 *
178 * \param fmt printf() like format string.
179 * \param arg arguments
180 */
181 #define DRM_ERROR(fmt, ...) \
182 drm_err(__func__, fmt, ##__VA_ARGS__)
183
184 #define DRM_INFO(fmt, ...) \
185 printk(KERN_INFO "[" DRM_NAME "] " fmt, ##__VA_ARGS__)
186
187 /**
188 * Debug output.
189 *
190 * \param fmt printf() like format string.
191 * \param arg arguments
192 */
193 #if DRM_DEBUG_CODE
194 #define DRM_DEBUG(fmt, args...) \
195 do { \
196 drm_ut_debug_printk(DRM_UT_CORE, DRM_NAME, \
197 __func__, fmt, ##args); \
198 } while (0)
199
200 #define DRM_DEBUG_DRIVER(fmt, args...) \
201 do { \
202 drm_ut_debug_printk(DRM_UT_DRIVER, DRM_NAME, \
203 __func__, fmt, ##args); \
204 } while (0)
205 #define DRM_DEBUG_KMS(fmt, args...) \
206 do { \
207 drm_ut_debug_printk(DRM_UT_KMS, DRM_NAME, \
208 __func__, fmt, ##args); \
209 } while (0)
210 #define DRM_DEBUG_PRIME(fmt, args...) \
211 do { \
212 drm_ut_debug_printk(DRM_UT_PRIME, DRM_NAME, \
213 __func__, fmt, ##args); \
214 } while (0)
215 #define DRM_LOG(fmt, args...) \
216 do { \
217 drm_ut_debug_printk(DRM_UT_CORE, NULL, \
218 NULL, fmt, ##args); \
219 } while (0)
220 #define DRM_LOG_KMS(fmt, args...) \
221 do { \
222 drm_ut_debug_printk(DRM_UT_KMS, NULL, \
223 NULL, fmt, ##args); \
224 } while (0)
225 #define DRM_LOG_MODE(fmt, args...) \
226 do { \
227 drm_ut_debug_printk(DRM_UT_MODE, NULL, \
228 NULL, fmt, ##args); \
229 } while (0)
230 #define DRM_LOG_DRIVER(fmt, args...) \
231 do { \
232 drm_ut_debug_printk(DRM_UT_DRIVER, NULL, \
233 NULL, fmt, ##args); \
234 } while (0)
235 #else
236 #define DRM_DEBUG_DRIVER(fmt, args...) do { } while (0)
237 #define DRM_DEBUG_KMS(fmt, args...) do { } while (0)
238 #define DRM_DEBUG_PRIME(fmt, args...) do { } while (0)
239 #define DRM_DEBUG(fmt, arg...) do { } while (0)
240 #define DRM_LOG(fmt, arg...) do { } while (0)
241 #define DRM_LOG_KMS(fmt, args...) do { } while (0)
242 #define DRM_LOG_MODE(fmt, arg...) do { } while (0)
243 #define DRM_LOG_DRIVER(fmt, arg...) do { } while (0)
244
245 #endif
246
247 /*@}*/
248
249 /***********************************************************************/
250 /** \name Internal types and structures */
251 /*@{*/
252
253 #define DRM_ARRAY_SIZE(x) ARRAY_SIZE(x)
254
255 #define DRM_IF_VERSION(maj, min) (maj << 16 | min)
256
257 /**
258 * Test that the hardware lock is held by the caller, returning otherwise.
259 *
260 * \param dev DRM device.
261 * \param filp file pointer of the caller.
262 */
263 #define LOCK_TEST_WITH_RETURN( dev, _file_priv ) \
264 do { \
265 if (!_DRM_LOCK_IS_HELD(_file_priv->master->lock.hw_lock->lock) || \
266 _file_priv->master->lock.file_priv != _file_priv) { \
267 DRM_ERROR( "%s called without lock held, held %d owner %p %p\n",\
268 __func__, _DRM_LOCK_IS_HELD(_file_priv->master->lock.hw_lock->lock),\
269 _file_priv->master->lock.file_priv, _file_priv); \
270 return -EINVAL; \
271 } \
272 } while (0)
273
274 /**
275 * Ioctl function type.
276 *
277 * \param inode device inode.
278 * \param file_priv DRM file private pointer.
279 * \param cmd command.
280 * \param arg argument.
281 */
282 typedef int drm_ioctl_t(struct drm_device *dev, void *data,
283 struct drm_file *file_priv);
284
285 typedef int drm_ioctl_compat_t(struct file *filp, unsigned int cmd,
286 unsigned long arg);
287
288 #define DRM_IOCTL_NR(n) _IOC_NR(n)
289 #define DRM_MAJOR 226
290
291 #define DRM_AUTH 0x1
292 #define DRM_MASTER 0x2
293 #define DRM_ROOT_ONLY 0x4
294 #define DRM_CONTROL_ALLOW 0x8
295 #define DRM_UNLOCKED 0x10
296
297 struct drm_ioctl_desc {
298 unsigned int cmd;
299 int flags;
300 drm_ioctl_t *func;
301 unsigned int cmd_drv;
302 const char *name;
303 };
304
305 /**
306 * Creates a driver or general drm_ioctl_desc array entry for the given
307 * ioctl, for use by drm_ioctl().
308 */
309
310 #define DRM_IOCTL_DEF_DRV(ioctl, _func, _flags) \
311 [DRM_IOCTL_NR(DRM_##ioctl)] = {.cmd = DRM_##ioctl, .func = _func, .flags = _flags, .cmd_drv = DRM_IOCTL_##ioctl, .name = #ioctl}
312
313 struct drm_magic_entry {
314 struct list_head head;
315 struct drm_hash_item hash_item;
316 struct drm_file *priv;
317 };
318
319 struct drm_vma_entry {
320 struct list_head head;
321 struct vm_area_struct *vma;
322 pid_t pid;
323 };
324
325 /**
326 * DMA buffer.
327 */
328 struct drm_buf {
329 int idx; /**< Index into master buflist */
330 int total; /**< Buffer size */
331 int order; /**< log-base-2(total) */
332 int used; /**< Amount of buffer in use (for DMA) */
333 unsigned long offset; /**< Byte offset (used internally) */
334 void *address; /**< Address of buffer */
335 unsigned long bus_address; /**< Bus address of buffer */
336 struct drm_buf *next; /**< Kernel-only: used for free list */
337 __volatile__ int waiting; /**< On kernel DMA queue */
338 __volatile__ int pending; /**< On hardware DMA queue */
339 struct drm_file *file_priv; /**< Private of holding file descr */
340 int context; /**< Kernel queue for this buffer */
341 int while_locked; /**< Dispatch this buffer while locked */
342 enum {
343 DRM_LIST_NONE = 0,
344 DRM_LIST_FREE = 1,
345 DRM_LIST_WAIT = 2,
346 DRM_LIST_PEND = 3,
347 DRM_LIST_PRIO = 4,
348 DRM_LIST_RECLAIM = 5
349 } list; /**< Which list we're on */
350
351 int dev_priv_size; /**< Size of buffer private storage */
352 void *dev_private; /**< Per-buffer private storage */
353 };
354
355 /** bufs is one longer than it has to be */
356 struct drm_waitlist {
357 int count; /**< Number of possible buffers */
358 struct drm_buf **bufs; /**< List of pointers to buffers */
359 struct drm_buf **rp; /**< Read pointer */
360 struct drm_buf **wp; /**< Write pointer */
361 struct drm_buf **end; /**< End pointer */
362 spinlock_t read_lock;
363 spinlock_t write_lock;
364 };
365
366 struct drm_freelist {
367 int initialized; /**< Freelist in use */
368 atomic_t count; /**< Number of free buffers */
369 struct drm_buf *next; /**< End pointer */
370
371 wait_queue_head_t waiting; /**< Processes waiting on free bufs */
372 int low_mark; /**< Low water mark */
373 int high_mark; /**< High water mark */
374 atomic_t wfh; /**< If waiting for high mark */
375 spinlock_t lock;
376 };
377
378 typedef struct drm_dma_handle {
379 dma_addr_t busaddr;
380 void *vaddr;
381 size_t size;
382 } drm_dma_handle_t;
383
384 /**
385 * Buffer entry. There is one of this for each buffer size order.
386 */
387 struct drm_buf_entry {
388 int buf_size; /**< size */
389 int buf_count; /**< number of buffers */
390 struct drm_buf *buflist; /**< buffer list */
391 int seg_count;
392 int page_order;
393 struct drm_dma_handle **seglist;
394
395 struct drm_freelist freelist;
396 };
397
398 /* Event queued up for userspace to read */
399 struct drm_pending_event {
400 struct drm_event *event;
401 struct list_head link;
402 struct drm_file *file_priv;
403 pid_t pid; /* pid of requester, no guarantee it's valid by the time
404 we deliver the event, for tracing only */
405 void (*destroy)(struct drm_pending_event *event);
406 };
407
408 /* initial implementaton using a linked list - todo hashtab */
409 struct drm_prime_file_private {
410 struct list_head head;
411 struct mutex lock;
412 };
413
414 /** File private data */
415 struct drm_file {
416 int authenticated;
417 struct pid *pid;
418 kuid_t uid;
419 drm_magic_t magic;
420 unsigned long ioctl_count;
421 struct list_head lhead;
422 struct drm_minor *minor;
423 unsigned long lock_count;
424
425 /** Mapping of mm object handles to object pointers. */
426 struct idr object_idr;
427 /** Lock for synchronization of access to object_idr. */
428 spinlock_t table_lock;
429
430 struct file *filp;
431 void *driver_priv;
432
433 int is_master; /* this file private is a master for a minor */
434 struct drm_master *master; /* master this node is currently associated with
435 N.B. not always minor->master */
436
437 /**
438 * fbs - List of framebuffers associated with this file.
439 *
440 * Protected by fbs_lock. Note that the fbs list holds a reference on
441 * the fb object to prevent it from untimely disappearing.
442 */
443 struct list_head fbs;
444 struct mutex fbs_lock;
445
446 wait_queue_head_t event_wait;
447 struct list_head event_list;
448 int event_space;
449
450 struct drm_prime_file_private prime;
451 };
452
453 /** Wait queue */
454 struct drm_queue {
455 atomic_t use_count; /**< Outstanding uses (+1) */
456 atomic_t finalization; /**< Finalization in progress */
457 atomic_t block_count; /**< Count of processes waiting */
458 atomic_t block_read; /**< Queue blocked for reads */
459 wait_queue_head_t read_queue; /**< Processes waiting on block_read */
460 atomic_t block_write; /**< Queue blocked for writes */
461 wait_queue_head_t write_queue; /**< Processes waiting on block_write */
462 atomic_t total_queued; /**< Total queued statistic */
463 atomic_t total_flushed; /**< Total flushes statistic */
464 atomic_t total_locks; /**< Total locks statistics */
465 enum drm_ctx_flags flags; /**< Context preserving and 2D-only */
466 struct drm_waitlist waitlist; /**< Pending buffers */
467 wait_queue_head_t flush_queue; /**< Processes waiting until flush */
468 };
469
470 /**
471 * Lock data.
472 */
473 struct drm_lock_data {
474 struct drm_hw_lock *hw_lock; /**< Hardware lock */
475 /** Private of lock holder's file (NULL=kernel) */
476 struct drm_file *file_priv;
477 wait_queue_head_t lock_queue; /**< Queue of blocked processes */
478 unsigned long lock_time; /**< Time of last lock in jiffies */
479 spinlock_t spinlock;
480 uint32_t kernel_waiters;
481 uint32_t user_waiters;
482 int idle_has_lock;
483 };
484
485 /**
486 * DMA data.
487 */
488 struct drm_device_dma {
489
490 struct drm_buf_entry bufs[DRM_MAX_ORDER + 1]; /**< buffers, grouped by their size order */
491 int buf_count; /**< total number of buffers */
492 struct drm_buf **buflist; /**< Vector of pointers into drm_device_dma::bufs */
493 int seg_count;
494 int page_count; /**< number of pages */
495 unsigned long *pagelist; /**< page list */
496 unsigned long byte_count;
497 enum {
498 _DRM_DMA_USE_AGP = 0x01,
499 _DRM_DMA_USE_SG = 0x02,
500 _DRM_DMA_USE_FB = 0x04,
501 _DRM_DMA_USE_PCI_RO = 0x08
502 } flags;
503
504 };
505
506 /**
507 * AGP memory entry. Stored as a doubly linked list.
508 */
509 struct drm_agp_mem {
510 unsigned long handle; /**< handle */
511 DRM_AGP_MEM *memory;
512 unsigned long bound; /**< address */
513 int pages;
514 struct list_head head;
515 };
516
517 /**
518 * AGP data.
519 *
520 * \sa drm_agp_init() and drm_device::agp.
521 */
522 struct drm_agp_head {
523 DRM_AGP_KERN agp_info; /**< AGP device information */
524 struct list_head memory;
525 unsigned long mode; /**< AGP mode */
526 struct agp_bridge_data *bridge;
527 int enabled; /**< whether the AGP bus as been enabled */
528 int acquired; /**< whether the AGP device has been acquired */
529 unsigned long base;
530 int agp_mtrr;
531 int cant_use_aperture;
532 unsigned long page_mask;
533 };
534
535 /**
536 * Scatter-gather memory.
537 */
538 struct drm_sg_mem {
539 unsigned long handle;
540 void *virtual;
541 int pages;
542 struct page **pagelist;
543 dma_addr_t *busaddr;
544 };
545
546 struct drm_sigdata {
547 int context;
548 struct drm_hw_lock *lock;
549 };
550
551
552 /**
553 * Kernel side of a mapping
554 */
555 struct drm_local_map {
556 resource_size_t offset; /**< Requested physical address (0 for SAREA)*/
557 unsigned long size; /**< Requested physical size (bytes) */
558 enum drm_map_type type; /**< Type of memory to map */
559 enum drm_map_flags flags; /**< Flags */
560 void *handle; /**< User-space: "Handle" to pass to mmap() */
561 /**< Kernel-space: kernel-virtual address */
562 int mtrr; /**< MTRR slot used */
563 };
564
565 typedef struct drm_local_map drm_local_map_t;
566
567 /**
568 * Mappings list
569 */
570 struct drm_map_list {
571 struct list_head head; /**< list head */
572 struct drm_hash_item hash;
573 struct drm_local_map *map; /**< mapping */
574 uint64_t user_token;
575 struct drm_master *master;
576 };
577
578 /**
579 * Context handle list
580 */
581 struct drm_ctx_list {
582 struct list_head head; /**< list head */
583 drm_context_t handle; /**< context handle */
584 struct drm_file *tag; /**< associated fd private data */
585 };
586
587 /* location of GART table */
588 #define DRM_ATI_GART_MAIN 1
589 #define DRM_ATI_GART_FB 2
590
591 #define DRM_ATI_GART_PCI 1
592 #define DRM_ATI_GART_PCIE 2
593 #define DRM_ATI_GART_IGP 3
594
595 struct drm_ati_pcigart_info {
596 int gart_table_location;
597 int gart_reg_if;
598 void *addr;
599 dma_addr_t bus_addr;
600 dma_addr_t table_mask;
601 struct drm_dma_handle *table_handle;
602 struct drm_local_map mapping;
603 int table_size;
604 };
605
606 /**
607 * GEM specific mm private for tracking GEM objects
608 */
609 struct drm_gem_mm {
610 struct drm_vma_offset_manager vma_manager;
611 };
612
613 /**
614 * This structure defines the drm_mm memory object, which will be used by the
615 * DRM for its buffer objects.
616 */
617 struct drm_gem_object {
618 /** Reference count of this object */
619 struct kref refcount;
620
621 /** Handle count of this object. Each handle also holds a reference */
622 atomic_t handle_count; /* number of handles on this object */
623
624 /** Related drm device */
625 struct drm_device *dev;
626
627 /** File representing the shmem storage */
628 struct file *filp;
629
630 /* Mapping info for this object */
631 struct drm_vma_offset_node vma_node;
632
633 /**
634 * Size of the object, in bytes. Immutable over the object's
635 * lifetime.
636 */
637 size_t size;
638
639 /**
640 * Global name for this object, starts at 1. 0 means unnamed.
641 * Access is covered by the object_name_lock in the related drm_device
642 */
643 int name;
644
645 /**
646 * Memory domains. These monitor which caches contain read/write data
647 * related to the object. When transitioning from one set of domains
648 * to another, the driver is called to ensure that caches are suitably
649 * flushed and invalidated
650 */
651 uint32_t read_domains;
652 uint32_t write_domain;
653
654 /**
655 * While validating an exec operation, the
656 * new read/write domain values are computed here.
657 * They will be transferred to the above values
658 * at the point that any cache flushing occurs
659 */
660 uint32_t pending_read_domains;
661 uint32_t pending_write_domain;
662
663 void *driver_private;
664
665 /* dma buf exported from this GEM object */
666 struct dma_buf *export_dma_buf;
667
668 /**
669 * import_attach - dma buf attachment backing this object
670 *
671 * Any foreign dma_buf imported as a gem object has this set to the
672 * attachment point for the device. This is invariant over the lifetime
673 * of a gem object.
674 *
675 * The driver's ->gem_free_object callback is responsible for cleaning
676 * up the dma_buf attachment and references acquired at import time.
677 */
678 struct dma_buf_attachment *import_attach;
679 };
680
681 #include <drm/drm_crtc.h>
682
683 /* per-master structure */
684 struct drm_master {
685
686 struct kref refcount; /* refcount for this master */
687
688 struct list_head head; /**< each minor contains a list of masters */
689 struct drm_minor *minor; /**< link back to minor we are a master for */
690
691 char *unique; /**< Unique identifier: e.g., busid */
692 int unique_len; /**< Length of unique field */
693 int unique_size; /**< amount allocated */
694
695 int blocked; /**< Blocked due to VC switch? */
696
697 /** \name Authentication */
698 /*@{ */
699 struct drm_open_hash magiclist;
700 struct list_head magicfree;
701 /*@} */
702
703 struct drm_lock_data lock; /**< Information on hardware lock */
704
705 void *driver_priv; /**< Private structure for driver to use */
706 };
707
708 /* Size of ringbuffer for vblank timestamps. Just double-buffer
709 * in initial implementation.
710 */
711 #define DRM_VBLANKTIME_RBSIZE 2
712
713 /* Flags and return codes for get_vblank_timestamp() driver function. */
714 #define DRM_CALLED_FROM_VBLIRQ 1
715 #define DRM_VBLANKTIME_SCANOUTPOS_METHOD (1 << 0)
716 #define DRM_VBLANKTIME_INVBL (1 << 1)
717
718 /* get_scanout_position() return flags */
719 #define DRM_SCANOUTPOS_VALID (1 << 0)
720 #define DRM_SCANOUTPOS_INVBL (1 << 1)
721 #define DRM_SCANOUTPOS_ACCURATE (1 << 2)
722
723 struct drm_bus {
724 int bus_type;
725 int (*get_irq)(struct drm_device *dev);
726 const char *(*get_name)(struct drm_device *dev);
727 int (*set_busid)(struct drm_device *dev, struct drm_master *master);
728 int (*set_unique)(struct drm_device *dev, struct drm_master *master,
729 struct drm_unique *unique);
730 int (*irq_by_busid)(struct drm_device *dev, struct drm_irq_busid *p);
731 /* hooks that are for PCI */
732 int (*agp_init)(struct drm_device *dev);
733 void (*agp_destroy)(struct drm_device *dev);
734
735 };
736
737 /**
738 * DRM driver structure. This structure represent the common code for
739 * a family of cards. There will one drm_device for each card present
740 * in this family
741 */
742 struct drm_driver {
743 int (*load) (struct drm_device *, unsigned long flags);
744 int (*firstopen) (struct drm_device *);
745 int (*open) (struct drm_device *, struct drm_file *);
746 void (*preclose) (struct drm_device *, struct drm_file *file_priv);
747 void (*postclose) (struct drm_device *, struct drm_file *);
748 void (*lastclose) (struct drm_device *);
749 int (*unload) (struct drm_device *);
750 int (*suspend) (struct drm_device *, pm_message_t state);
751 int (*resume) (struct drm_device *);
752 int (*dma_ioctl) (struct drm_device *dev, void *data, struct drm_file *file_priv);
753 int (*dma_quiescent) (struct drm_device *);
754 int (*context_dtor) (struct drm_device *dev, int context);
755
756 /**
757 * get_vblank_counter - get raw hardware vblank counter
758 * @dev: DRM device
759 * @crtc: counter to fetch
760 *
761 * Driver callback for fetching a raw hardware vblank counter for @crtc.
762 * If a device doesn't have a hardware counter, the driver can simply
763 * return the value of drm_vblank_count. The DRM core will account for
764 * missed vblank events while interrupts where disabled based on system
765 * timestamps.
766 *
767 * Wraparound handling and loss of events due to modesetting is dealt
768 * with in the DRM core code.
769 *
770 * RETURNS
771 * Raw vblank counter value.
772 */
773 u32 (*get_vblank_counter) (struct drm_device *dev, int crtc);
774
775 /**
776 * enable_vblank - enable vblank interrupt events
777 * @dev: DRM device
778 * @crtc: which irq to enable
779 *
780 * Enable vblank interrupts for @crtc. If the device doesn't have
781 * a hardware vblank counter, this routine should be a no-op, since
782 * interrupts will have to stay on to keep the count accurate.
783 *
784 * RETURNS
785 * Zero on success, appropriate errno if the given @crtc's vblank
786 * interrupt cannot be enabled.
787 */
788 int (*enable_vblank) (struct drm_device *dev, int crtc);
789
790 /**
791 * disable_vblank - disable vblank interrupt events
792 * @dev: DRM device
793 * @crtc: which irq to enable
794 *
795 * Disable vblank interrupts for @crtc. If the device doesn't have
796 * a hardware vblank counter, this routine should be a no-op, since
797 * interrupts will have to stay on to keep the count accurate.
798 */
799 void (*disable_vblank) (struct drm_device *dev, int crtc);
800
801 /**
802 * Called by \c drm_device_is_agp. Typically used to determine if a
803 * card is really attached to AGP or not.
804 *
805 * \param dev DRM device handle
806 *
807 * \returns
808 * One of three values is returned depending on whether or not the
809 * card is absolutely \b not AGP (return of 0), absolutely \b is AGP
810 * (return of 1), or may or may not be AGP (return of 2).
811 */
812 int (*device_is_agp) (struct drm_device *dev);
813
814 /**
815 * Called by vblank timestamping code.
816 *
817 * Return the current display scanout position from a crtc.
818 *
819 * \param dev DRM device.
820 * \param crtc Id of the crtc to query.
821 * \param *vpos Target location for current vertical scanout position.
822 * \param *hpos Target location for current horizontal scanout position.
823 *
824 * Returns vpos as a positive number while in active scanout area.
825 * Returns vpos as a negative number inside vblank, counting the number
826 * of scanlines to go until end of vblank, e.g., -1 means "one scanline
827 * until start of active scanout / end of vblank."
828 *
829 * \return Flags, or'ed together as follows:
830 *
831 * DRM_SCANOUTPOS_VALID = Query successful.
832 * DRM_SCANOUTPOS_INVBL = Inside vblank.
833 * DRM_SCANOUTPOS_ACCURATE = Returned position is accurate. A lack of
834 * this flag means that returned position may be offset by a constant
835 * but unknown small number of scanlines wrt. real scanout position.
836 *
837 */
838 int (*get_scanout_position) (struct drm_device *dev, int crtc,
839 int *vpos, int *hpos);
840
841 /**
842 * Called by \c drm_get_last_vbltimestamp. Should return a precise
843 * timestamp when the most recent VBLANK interval ended or will end.
844 *
845 * Specifically, the timestamp in @vblank_time should correspond as
846 * closely as possible to the time when the first video scanline of
847 * the video frame after the end of VBLANK will start scanning out,
848 * the time immediately after end of the VBLANK interval. If the
849 * @crtc is currently inside VBLANK, this will be a time in the future.
850 * If the @crtc is currently scanning out a frame, this will be the
851 * past start time of the current scanout. This is meant to adhere
852 * to the OpenML OML_sync_control extension specification.
853 *
854 * \param dev dev DRM device handle.
855 * \param crtc crtc for which timestamp should be returned.
856 * \param *max_error Maximum allowable timestamp error in nanoseconds.
857 * Implementation should strive to provide timestamp
858 * with an error of at most *max_error nanoseconds.
859 * Returns true upper bound on error for timestamp.
860 * \param *vblank_time Target location for returned vblank timestamp.
861 * \param flags 0 = Defaults, no special treatment needed.
862 * \param DRM_CALLED_FROM_VBLIRQ = Function is called from vblank
863 * irq handler. Some drivers need to apply some workarounds
864 * for gpu-specific vblank irq quirks if flag is set.
865 *
866 * \returns
867 * Zero if timestamping isn't supported in current display mode or a
868 * negative number on failure. A positive status code on success,
869 * which describes how the vblank_time timestamp was computed.
870 */
871 int (*get_vblank_timestamp) (struct drm_device *dev, int crtc,
872 int *max_error,
873 struct timeval *vblank_time,
874 unsigned flags);
875
876 /* these have to be filled in */
877
878 irqreturn_t(*irq_handler) (DRM_IRQ_ARGS);
879 void (*irq_preinstall) (struct drm_device *dev);
880 int (*irq_postinstall) (struct drm_device *dev);
881 void (*irq_uninstall) (struct drm_device *dev);
882
883 /* Master routines */
884 int (*master_create)(struct drm_device *dev, struct drm_master *master);
885 void (*master_destroy)(struct drm_device *dev, struct drm_master *master);
886 /**
887 * master_set is called whenever the minor master is set.
888 * master_drop is called whenever the minor master is dropped.
889 */
890
891 int (*master_set)(struct drm_device *dev, struct drm_file *file_priv,
892 bool from_open);
893 void (*master_drop)(struct drm_device *dev, struct drm_file *file_priv,
894 bool from_release);
895
896 int (*debugfs_init)(struct drm_minor *minor);
897 void (*debugfs_cleanup)(struct drm_minor *minor);
898
899 /**
900 * Driver-specific constructor for drm_gem_objects, to set up
901 * obj->driver_private.
902 *
903 * Returns 0 on success.
904 */
905 int (*gem_init_object) (struct drm_gem_object *obj);
906 void (*gem_free_object) (struct drm_gem_object *obj);
907 int (*gem_open_object) (struct drm_gem_object *, struct drm_file *);
908 void (*gem_close_object) (struct drm_gem_object *, struct drm_file *);
909
910 /* prime: */
911 /* export handle -> fd (see drm_gem_prime_handle_to_fd() helper) */
912 int (*prime_handle_to_fd)(struct drm_device *dev, struct drm_file *file_priv,
913 uint32_t handle, uint32_t flags, int *prime_fd);
914 /* import fd -> handle (see drm_gem_prime_fd_to_handle() helper) */
915 int (*prime_fd_to_handle)(struct drm_device *dev, struct drm_file *file_priv,
916 int prime_fd, uint32_t *handle);
917 /* export GEM -> dmabuf */
918 struct dma_buf * (*gem_prime_export)(struct drm_device *dev,
919 struct drm_gem_object *obj, int flags);
920 /* import dmabuf -> GEM */
921 struct drm_gem_object * (*gem_prime_import)(struct drm_device *dev,
922 struct dma_buf *dma_buf);
923 /* low-level interface used by drm_gem_prime_{import,export} */
924 int (*gem_prime_pin)(struct drm_gem_object *obj);
925 void (*gem_prime_unpin)(struct drm_gem_object *obj);
926 struct sg_table *(*gem_prime_get_sg_table)(struct drm_gem_object *obj);
927 struct drm_gem_object *(*gem_prime_import_sg_table)(
928 struct drm_device *dev, size_t size,
929 struct sg_table *sgt);
930 void *(*gem_prime_vmap)(struct drm_gem_object *obj);
931 void (*gem_prime_vunmap)(struct drm_gem_object *obj, void *vaddr);
932 int (*gem_prime_mmap)(struct drm_gem_object *obj,
933 struct vm_area_struct *vma);
934
935 /* vga arb irq handler */
936 void (*vgaarb_irq)(struct drm_device *dev, bool state);
937
938 /* dumb alloc support */
939 int (*dumb_create)(struct drm_file *file_priv,
940 struct drm_device *dev,
941 struct drm_mode_create_dumb *args);
942 int (*dumb_map_offset)(struct drm_file *file_priv,
943 struct drm_device *dev, uint32_t handle,
944 uint64_t *offset);
945 int (*dumb_destroy)(struct drm_file *file_priv,
946 struct drm_device *dev,
947 uint32_t handle);
948
949 /* Driver private ops for this object */
950 const struct vm_operations_struct *gem_vm_ops;
951
952 int major;
953 int minor;
954 int patchlevel;
955 char *name;
956 char *desc;
957 char *date;
958
959 u32 driver_features;
960 int dev_priv_size;
961 const struct drm_ioctl_desc *ioctls;
962 int num_ioctls;
963 const struct file_operations *fops;
964 union {
965 struct pci_driver *pci;
966 struct platform_device *platform_device;
967 struct usb_driver *usb;
968 } kdriver;
969 struct drm_bus *bus;
970
971 /* List of devices hanging off this driver */
972 struct list_head device_list;
973 };
974
975 #define DRM_MINOR_UNASSIGNED 0
976 #define DRM_MINOR_LEGACY 1
977 #define DRM_MINOR_CONTROL 2
978 #define DRM_MINOR_RENDER 3
979
980
981 /**
982 * debugfs node list. This structure represents a debugfs file to
983 * be created by the drm core
984 */
985 struct drm_debugfs_list {
986 const char *name; /** file name */
987 int (*show)(struct seq_file*, void*); /** show callback */
988 u32 driver_features; /**< Required driver features for this entry */
989 };
990
991 /**
992 * debugfs node structure. This structure represents a debugfs file.
993 */
994 struct drm_debugfs_node {
995 struct list_head list;
996 struct drm_minor *minor;
997 struct drm_debugfs_list *debugfs_ent;
998 struct dentry *dent;
999 };
1000
1001 /**
1002 * Info file list entry. This structure represents a debugfs or proc file to
1003 * be created by the drm core
1004 */
1005 struct drm_info_list {
1006 const char *name; /** file name */
1007 int (*show)(struct seq_file*, void*); /** show callback */
1008 u32 driver_features; /**< Required driver features for this entry */
1009 void *data;
1010 };
1011
1012 /**
1013 * debugfs node structure. This structure represents a debugfs file.
1014 */
1015 struct drm_info_node {
1016 struct list_head list;
1017 struct drm_minor *minor;
1018 const struct drm_info_list *info_ent;
1019 struct dentry *dent;
1020 };
1021
1022 /**
1023 * DRM minor structure. This structure represents a drm minor number.
1024 */
1025 struct drm_minor {
1026 int index; /**< Minor device number */
1027 int type; /**< Control or render */
1028 dev_t device; /**< Device number for mknod */
1029 struct device kdev; /**< Linux device */
1030 struct drm_device *dev;
1031
1032 struct proc_dir_entry *proc_root; /**< proc directory entry */
1033 struct drm_info_node proc_nodes;
1034 struct dentry *debugfs_root;
1035
1036 struct list_head debugfs_list;
1037 struct mutex debugfs_lock; /* Protects debugfs_list. */
1038
1039 struct drm_master *master; /* currently active master for this node */
1040 struct list_head master_list;
1041 struct drm_mode_group mode_group;
1042 };
1043
1044 /* mode specified on the command line */
1045 struct drm_cmdline_mode {
1046 bool specified;
1047 bool refresh_specified;
1048 bool bpp_specified;
1049 int xres, yres;
1050 int bpp;
1051 int refresh;
1052 bool rb;
1053 bool interlace;
1054 bool cvt;
1055 bool margins;
1056 enum drm_connector_force force;
1057 };
1058
1059
1060 struct drm_pending_vblank_event {
1061 struct drm_pending_event base;
1062 int pipe;
1063 struct drm_event_vblank event;
1064 };
1065
1066 /**
1067 * DRM device structure. This structure represent a complete card that
1068 * may contain multiple heads.
1069 */
1070 struct drm_device {
1071 struct list_head driver_item; /**< list of devices per driver */
1072 char *devname; /**< For /proc/interrupts */
1073 int if_version; /**< Highest interface version set */
1074
1075 /** \name Locks */
1076 /*@{ */
1077 spinlock_t count_lock; /**< For inuse, drm_device::open_count, drm_device::buf_use */
1078 struct mutex struct_mutex; /**< For others */
1079 /*@} */
1080
1081 /** \name Usage Counters */
1082 /*@{ */
1083 int open_count; /**< Outstanding files open */
1084 atomic_t ioctl_count; /**< Outstanding IOCTLs pending */
1085 atomic_t vma_count; /**< Outstanding vma areas open */
1086 int buf_use; /**< Buffers in use -- cannot alloc */
1087 atomic_t buf_alloc; /**< Buffer allocation in progress */
1088 /*@} */
1089
1090 /** \name Performance counters */
1091 /*@{ */
1092 unsigned long counters;
1093 enum drm_stat_type types[15];
1094 atomic_t counts[15];
1095 /*@} */
1096
1097 struct list_head filelist;
1098
1099 /** \name Memory management */
1100 /*@{ */
1101 struct list_head maplist; /**< Linked list of regions */
1102 int map_count; /**< Number of mappable regions */
1103 struct drm_open_hash map_hash; /**< User token hash table for maps */
1104
1105 /** \name Context handle management */
1106 /*@{ */
1107 struct list_head ctxlist; /**< Linked list of context handles */
1108 int ctx_count; /**< Number of context handles */
1109 struct mutex ctxlist_mutex; /**< For ctxlist */
1110
1111 struct idr ctx_idr;
1112
1113 struct list_head vmalist; /**< List of vmas (for debugging) */
1114
1115 /*@} */
1116
1117 /** \name DMA support */
1118 /*@{ */
1119 struct drm_device_dma *dma; /**< Optional pointer for DMA support */
1120 /*@} */
1121
1122 /** \name Context support */
1123 /*@{ */
1124 int irq_enabled; /**< True if irq handler is enabled */
1125 __volatile__ long context_flag; /**< Context swapping flag */
1126 int last_context; /**< Last current context */
1127 /*@} */
1128
1129 struct work_struct work;
1130 /** \name VBLANK IRQ support */
1131 /*@{ */
1132
1133 /*
1134 * At load time, disabling the vblank interrupt won't be allowed since
1135 * old clients may not call the modeset ioctl and therefore misbehave.
1136 * Once the modeset ioctl *has* been called though, we can safely
1137 * disable them when unused.
1138 */
1139 int vblank_disable_allowed;
1140
1141 wait_queue_head_t *vbl_queue; /**< VBLANK wait queue */
1142 atomic_t *_vblank_count; /**< number of VBLANK interrupts (driver must alloc the right number of counters) */
1143 struct timeval *_vblank_time; /**< timestamp of current vblank_count (drivers must alloc right number of fields) */
1144 spinlock_t vblank_time_lock; /**< Protects vblank count and time updates during vblank enable/disable */
1145 spinlock_t vbl_lock;
1146 atomic_t *vblank_refcount; /* number of users of vblank interruptsper crtc */
1147 u32 *last_vblank; /* protected by dev->vbl_lock, used */
1148 /* for wraparound handling */
1149 int *vblank_enabled; /* so we don't call enable more than
1150 once per disable */
1151 int *vblank_inmodeset; /* Display driver is setting mode */
1152 u32 *last_vblank_wait; /* Last vblank seqno waited per CRTC */
1153 struct timer_list vblank_disable_timer;
1154
1155 u32 max_vblank_count; /**< size of vblank counter register */
1156
1157 /**
1158 * List of events
1159 */
1160 struct list_head vblank_event_list;
1161 spinlock_t event_lock;
1162
1163 /*@} */
1164
1165 struct drm_agp_head *agp; /**< AGP data */
1166
1167 struct device *dev; /**< Device structure */
1168 struct pci_dev *pdev; /**< PCI device structure */
1169 int pci_vendor; /**< PCI vendor id */
1170 int pci_device; /**< PCI device id */
1171 #ifdef __alpha__
1172 struct pci_controller *hose;
1173 #endif
1174
1175 struct platform_device *platformdev; /**< Platform device struture */
1176 struct usb_device *usbdev;
1177
1178 struct drm_sg_mem *sg; /**< Scatter gather memory */
1179 unsigned int num_crtcs; /**< Number of CRTCs on this device */
1180 void *dev_private; /**< device private data */
1181 void *mm_private;
1182 struct address_space *dev_mapping;
1183 struct drm_sigdata sigdata; /**< For block_all_signals */
1184 sigset_t sigmask;
1185
1186 struct drm_driver *driver;
1187 struct drm_local_map *agp_buffer_map;
1188 unsigned int agp_buffer_token;
1189 struct drm_minor *control; /**< Control node for card */
1190 struct drm_minor *primary; /**< render type primary screen head */
1191
1192 struct drm_mode_config mode_config; /**< Current mode config */
1193
1194 /** \name GEM information */
1195 /*@{ */
1196 spinlock_t object_name_lock;
1197 struct idr object_name_idr;
1198 /*@} */
1199 int switch_power_state;
1200
1201 atomic_t unplugged; /* device has been unplugged or gone away */
1202 };
1203
1204 #define DRM_SWITCH_POWER_ON 0
1205 #define DRM_SWITCH_POWER_OFF 1
1206 #define DRM_SWITCH_POWER_CHANGING 2
1207
1208 static __inline__ int drm_core_check_feature(struct drm_device *dev,
1209 int feature)
1210 {
1211 return ((dev->driver->driver_features & feature) ? 1 : 0);
1212 }
1213
1214 static inline int drm_dev_to_irq(struct drm_device *dev)
1215 {
1216 return dev->driver->bus->get_irq(dev);
1217 }
1218
1219 #if __OS_HAS_MTRR
1220 static inline int drm_core_has_MTRR(struct drm_device *dev)
1221 {
1222 return drm_core_check_feature(dev, DRIVER_USE_MTRR);
1223 }
1224 #else
1225 #define drm_core_has_MTRR(dev) (0)
1226 #endif
1227
1228 static inline void drm_device_set_unplugged(struct drm_device *dev)
1229 {
1230 smp_wmb();
1231 atomic_set(&dev->unplugged, 1);
1232 }
1233
1234 static inline int drm_device_is_unplugged(struct drm_device *dev)
1235 {
1236 int ret = atomic_read(&dev->unplugged);
1237 smp_rmb();
1238 return ret;
1239 }
1240
1241 static inline bool drm_modeset_is_locked(struct drm_device *dev)
1242 {
1243 return mutex_is_locked(&dev->mode_config.mutex);
1244 }
1245
1246 /******************************************************************/
1247 /** \name Internal function definitions */
1248 /*@{*/
1249
1250 /* Driver support (drm_drv.h) */
1251 extern long drm_ioctl(struct file *filp,
1252 unsigned int cmd, unsigned long arg);
1253 extern long drm_compat_ioctl(struct file *filp,
1254 unsigned int cmd, unsigned long arg);
1255 extern int drm_lastclose(struct drm_device *dev);
1256
1257 /* Device support (drm_fops.h) */
1258 extern struct mutex drm_global_mutex;
1259 extern int drm_open(struct inode *inode, struct file *filp);
1260 extern int drm_stub_open(struct inode *inode, struct file *filp);
1261 extern ssize_t drm_read(struct file *filp, char __user *buffer,
1262 size_t count, loff_t *offset);
1263 extern int drm_release(struct inode *inode, struct file *filp);
1264
1265 /* Mapping support (drm_vm.h) */
1266 extern int drm_mmap(struct file *filp, struct vm_area_struct *vma);
1267 extern int drm_mmap_locked(struct file *filp, struct vm_area_struct *vma);
1268 extern void drm_vm_open_locked(struct drm_device *dev, struct vm_area_struct *vma);
1269 extern void drm_vm_close_locked(struct drm_device *dev, struct vm_area_struct *vma);
1270 extern unsigned int drm_poll(struct file *filp, struct poll_table_struct *wait);
1271
1272 /* Memory management support (drm_memory.h) */
1273 #include <drm/drm_memory.h>
1274
1275 /* Misc. IOCTL support (drm_ioctl.h) */
1276 extern int drm_irq_by_busid(struct drm_device *dev, void *data,
1277 struct drm_file *file_priv);
1278 extern int drm_getunique(struct drm_device *dev, void *data,
1279 struct drm_file *file_priv);
1280 extern int drm_setunique(struct drm_device *dev, void *data,
1281 struct drm_file *file_priv);
1282 extern int drm_getmap(struct drm_device *dev, void *data,
1283 struct drm_file *file_priv);
1284 extern int drm_getclient(struct drm_device *dev, void *data,
1285 struct drm_file *file_priv);
1286 extern int drm_getstats(struct drm_device *dev, void *data,
1287 struct drm_file *file_priv);
1288 extern int drm_getcap(struct drm_device *dev, void *data,
1289 struct drm_file *file_priv);
1290 extern int drm_setversion(struct drm_device *dev, void *data,
1291 struct drm_file *file_priv);
1292 extern int drm_noop(struct drm_device *dev, void *data,
1293 struct drm_file *file_priv);
1294
1295 /* Context IOCTL support (drm_context.h) */
1296 extern int drm_resctx(struct drm_device *dev, void *data,
1297 struct drm_file *file_priv);
1298 extern int drm_addctx(struct drm_device *dev, void *data,
1299 struct drm_file *file_priv);
1300 extern int drm_getctx(struct drm_device *dev, void *data,
1301 struct drm_file *file_priv);
1302 extern int drm_switchctx(struct drm_device *dev, void *data,
1303 struct drm_file *file_priv);
1304 extern int drm_newctx(struct drm_device *dev, void *data,
1305 struct drm_file *file_priv);
1306 extern int drm_rmctx(struct drm_device *dev, void *data,
1307 struct drm_file *file_priv);
1308
1309 extern void drm_legacy_ctxbitmap_init(struct drm_device *dev);
1310 extern void drm_legacy_ctxbitmap_cleanup(struct drm_device *dev);
1311 extern void drm_legacy_ctxbitmap_release(struct drm_device *dev,
1312 struct drm_file *file_priv);
1313
1314 extern int drm_setsareactx(struct drm_device *dev, void *data,
1315 struct drm_file *file_priv);
1316 extern int drm_getsareactx(struct drm_device *dev, void *data,
1317 struct drm_file *file_priv);
1318
1319 /* Authentication IOCTL support (drm_auth.h) */
1320 extern int drm_getmagic(struct drm_device *dev, void *data,
1321 struct drm_file *file_priv);
1322 extern int drm_authmagic(struct drm_device *dev, void *data,
1323 struct drm_file *file_priv);
1324 extern int drm_remove_magic(struct drm_master *master, drm_magic_t magic);
1325
1326 /* Cache management (drm_cache.c) */
1327 void drm_clflush_pages(struct page *pages[], unsigned long num_pages);
1328 void drm_clflush_sg(struct sg_table *st);
1329 void drm_clflush_virt_range(char *addr, unsigned long length);
1330
1331 /* Locking IOCTL support (drm_lock.h) */
1332 extern int drm_lock(struct drm_device *dev, void *data,
1333 struct drm_file *file_priv);
1334 extern int drm_unlock(struct drm_device *dev, void *data,
1335 struct drm_file *file_priv);
1336 extern int drm_lock_free(struct drm_lock_data *lock_data, unsigned int context);
1337 extern void drm_idlelock_take(struct drm_lock_data *lock_data);
1338 extern void drm_idlelock_release(struct drm_lock_data *lock_data);
1339
1340 /*
1341 * These are exported to drivers so that they can implement fencing using
1342 * DMA quiscent + idle. DMA quiescent usually requires the hardware lock.
1343 */
1344
1345 extern int drm_i_have_hw_lock(struct drm_device *dev, struct drm_file *file_priv);
1346
1347 /* Buffer management support (drm_bufs.h) */
1348 extern int drm_addbufs_agp(struct drm_device *dev, struct drm_buf_desc * request);
1349 extern int drm_addbufs_pci(struct drm_device *dev, struct drm_buf_desc * request);
1350 extern int drm_addmap(struct drm_device *dev, resource_size_t offset,
1351 unsigned int size, enum drm_map_type type,
1352 enum drm_map_flags flags, struct drm_local_map **map_ptr);
1353 extern int drm_addmap_ioctl(struct drm_device *dev, void *data,
1354 struct drm_file *file_priv);
1355 extern int drm_rmmap(struct drm_device *dev, struct drm_local_map *map);
1356 extern int drm_rmmap_locked(struct drm_device *dev, struct drm_local_map *map);
1357 extern int drm_rmmap_ioctl(struct drm_device *dev, void *data,
1358 struct drm_file *file_priv);
1359 extern int drm_addbufs(struct drm_device *dev, void *data,
1360 struct drm_file *file_priv);
1361 extern int drm_infobufs(struct drm_device *dev, void *data,
1362 struct drm_file *file_priv);
1363 extern int drm_markbufs(struct drm_device *dev, void *data,
1364 struct drm_file *file_priv);
1365 extern int drm_freebufs(struct drm_device *dev, void *data,
1366 struct drm_file *file_priv);
1367 extern int drm_mapbufs(struct drm_device *dev, void *data,
1368 struct drm_file *file_priv);
1369
1370 /* DMA support (drm_dma.h) */
1371 extern int drm_legacy_dma_setup(struct drm_device *dev);
1372 extern void drm_legacy_dma_takedown(struct drm_device *dev);
1373 extern void drm_free_buffer(struct drm_device *dev, struct drm_buf * buf);
1374 extern void drm_core_reclaim_buffers(struct drm_device *dev,
1375 struct drm_file *filp);
1376
1377 /* IRQ support (drm_irq.h) */
1378 extern int drm_control(struct drm_device *dev, void *data,
1379 struct drm_file *file_priv);
1380 extern int drm_irq_install(struct drm_device *dev);
1381 extern int drm_irq_uninstall(struct drm_device *dev);
1382
1383 extern int drm_vblank_init(struct drm_device *dev, int num_crtcs);
1384 extern int drm_wait_vblank(struct drm_device *dev, void *data,
1385 struct drm_file *filp);
1386 extern int drm_vblank_wait(struct drm_device *dev, unsigned int *vbl_seq);
1387 extern u32 drm_vblank_count(struct drm_device *dev, int crtc);
1388 extern u32 drm_vblank_count_and_time(struct drm_device *dev, int crtc,
1389 struct timeval *vblanktime);
1390 extern void drm_send_vblank_event(struct drm_device *dev, int crtc,
1391 struct drm_pending_vblank_event *e);
1392 extern bool drm_handle_vblank(struct drm_device *dev, int crtc);
1393 extern int drm_vblank_get(struct drm_device *dev, int crtc);
1394 extern void drm_vblank_put(struct drm_device *dev, int crtc);
1395 extern void drm_vblank_off(struct drm_device *dev, int crtc);
1396 extern void drm_vblank_cleanup(struct drm_device *dev);
1397 extern u32 drm_get_last_vbltimestamp(struct drm_device *dev, int crtc,
1398 struct timeval *tvblank, unsigned flags);
1399 extern int drm_calc_vbltimestamp_from_scanoutpos(struct drm_device *dev,
1400 int crtc, int *max_error,
1401 struct timeval *vblank_time,
1402 unsigned flags,
1403 struct drm_crtc *refcrtc);
1404 extern void drm_calc_timestamping_constants(struct drm_crtc *crtc);
1405
1406 extern bool
1407 drm_mode_parse_command_line_for_connector(const char *mode_option,
1408 struct drm_connector *connector,
1409 struct drm_cmdline_mode *mode);
1410
1411 extern struct drm_display_mode *
1412 drm_mode_create_from_cmdline_mode(struct drm_device *dev,
1413 struct drm_cmdline_mode *cmd);
1414
1415 extern int drm_display_mode_from_videomode(const struct videomode *vm,
1416 struct drm_display_mode *dmode);
1417 extern int of_get_drm_display_mode(struct device_node *np,
1418 struct drm_display_mode *dmode,
1419 int index);
1420
1421 /* Modesetting support */
1422 extern void drm_vblank_pre_modeset(struct drm_device *dev, int crtc);
1423 extern void drm_vblank_post_modeset(struct drm_device *dev, int crtc);
1424 extern int drm_modeset_ctl(struct drm_device *dev, void *data,
1425 struct drm_file *file_priv);
1426
1427 /* AGP/GART support (drm_agpsupport.h) */
1428
1429 #include <drm/drm_agpsupport.h>
1430
1431 /* Stub support (drm_stub.h) */
1432 extern int drm_setmaster_ioctl(struct drm_device *dev, void *data,
1433 struct drm_file *file_priv);
1434 extern int drm_dropmaster_ioctl(struct drm_device *dev, void *data,
1435 struct drm_file *file_priv);
1436 struct drm_master *drm_master_create(struct drm_minor *minor);
1437 extern struct drm_master *drm_master_get(struct drm_master *master);
1438 extern void drm_master_put(struct drm_master **master);
1439
1440 extern void drm_put_dev(struct drm_device *dev);
1441 extern int drm_put_minor(struct drm_minor **minor);
1442 extern void drm_unplug_dev(struct drm_device *dev);
1443 extern unsigned int drm_debug;
1444
1445 extern unsigned int drm_vblank_offdelay;
1446 extern unsigned int drm_timestamp_precision;
1447 extern unsigned int drm_timestamp_monotonic;
1448
1449 extern struct class *drm_class;
1450 extern struct proc_dir_entry *drm_proc_root;
1451 extern struct dentry *drm_debugfs_root;
1452
1453 extern struct idr drm_minors_idr;
1454
1455 extern struct drm_local_map *drm_getsarea(struct drm_device *dev);
1456
1457 /* Proc support (drm_proc.h) */
1458 extern int drm_proc_init(struct drm_minor *minor, struct proc_dir_entry *root);
1459 extern int drm_proc_cleanup(struct drm_minor *minor, struct proc_dir_entry *root);
1460
1461 /* Debugfs support */
1462 #if defined(CONFIG_DEBUG_FS)
1463 extern int drm_debugfs_init(struct drm_minor *minor, int minor_id,
1464 struct dentry *root);
1465 extern int drm_debugfs_create_files(struct drm_info_list *files, int count,
1466 struct dentry *root, struct drm_minor *minor);
1467 extern int drm_debugfs_remove_files(struct drm_info_list *files, int count,
1468 struct drm_minor *minor);
1469 extern int drm_debugfs_cleanup(struct drm_minor *minor);
1470 #endif
1471
1472 /* Info file support */
1473 extern int drm_name_info(struct seq_file *m, void *data);
1474 extern int drm_vm_info(struct seq_file *m, void *data);
1475 extern int drm_bufs_info(struct seq_file *m, void *data);
1476 extern int drm_vblank_info(struct seq_file *m, void *data);
1477 extern int drm_clients_info(struct seq_file *m, void* data);
1478 extern int drm_gem_name_info(struct seq_file *m, void *data);
1479
1480
1481 extern struct dma_buf *drm_gem_prime_export(struct drm_device *dev,
1482 struct drm_gem_object *obj, int flags);
1483 extern int drm_gem_prime_handle_to_fd(struct drm_device *dev,
1484 struct drm_file *file_priv, uint32_t handle, uint32_t flags,
1485 int *prime_fd);
1486 extern struct drm_gem_object *drm_gem_prime_import(struct drm_device *dev,
1487 struct dma_buf *dma_buf);
1488 extern int drm_gem_prime_fd_to_handle(struct drm_device *dev,
1489 struct drm_file *file_priv, int prime_fd, uint32_t *handle);
1490 extern void drm_gem_dmabuf_release(struct dma_buf *dma_buf);
1491
1492 extern int drm_prime_handle_to_fd_ioctl(struct drm_device *dev, void *data,
1493 struct drm_file *file_priv);
1494 extern int drm_prime_fd_to_handle_ioctl(struct drm_device *dev, void *data,
1495 struct drm_file *file_priv);
1496
1497 extern int drm_prime_sg_to_page_addr_arrays(struct sg_table *sgt, struct page **pages,
1498 dma_addr_t *addrs, int max_pages);
1499 extern struct sg_table *drm_prime_pages_to_sg(struct page **pages, int nr_pages);
1500 extern void drm_prime_gem_destroy(struct drm_gem_object *obj, struct sg_table *sg);
1501
1502 int drm_gem_dumb_destroy(struct drm_file *file,
1503 struct drm_device *dev,
1504 uint32_t handle);
1505
1506 void drm_prime_init_file_private(struct drm_prime_file_private *prime_fpriv);
1507 void drm_prime_destroy_file_private(struct drm_prime_file_private *prime_fpriv);
1508 int drm_prime_lookup_buf_handle(struct drm_prime_file_private *prime_fpriv, struct dma_buf *dma_buf, uint32_t *handle);
1509 void drm_prime_remove_buf_handle(struct drm_prime_file_private *prime_fpriv, struct dma_buf *dma_buf);
1510
1511 int drm_prime_add_dma_buf(struct drm_device *dev, struct drm_gem_object *obj);
1512 int drm_prime_lookup_obj(struct drm_device *dev, struct dma_buf *buf,
1513 struct drm_gem_object **obj);
1514
1515 #if DRM_DEBUG_CODE
1516 extern int drm_vma_info(struct seq_file *m, void *data);
1517 #endif
1518
1519 /* Scatter Gather Support (drm_scatter.h) */
1520 extern void drm_legacy_sg_cleanup(struct drm_device *dev);
1521 extern int drm_sg_alloc(struct drm_device *dev, void *data,
1522 struct drm_file *file_priv);
1523 extern int drm_sg_free(struct drm_device *dev, void *data,
1524 struct drm_file *file_priv);
1525
1526 /* ATI PCIGART support (ati_pcigart.h) */
1527 extern int drm_ati_pcigart_init(struct drm_device *dev,
1528 struct drm_ati_pcigart_info * gart_info);
1529 extern int drm_ati_pcigart_cleanup(struct drm_device *dev,
1530 struct drm_ati_pcigart_info * gart_info);
1531
1532 extern drm_dma_handle_t *drm_pci_alloc(struct drm_device *dev, size_t size,
1533 size_t align);
1534 extern void __drm_pci_free(struct drm_device *dev, drm_dma_handle_t * dmah);
1535 extern void drm_pci_free(struct drm_device *dev, drm_dma_handle_t * dmah);
1536
1537 /* sysfs support (drm_sysfs.c) */
1538 struct drm_sysfs_class;
1539 extern struct class *drm_sysfs_create(struct module *owner, char *name);
1540 extern void drm_sysfs_destroy(void);
1541 extern int drm_sysfs_device_add(struct drm_minor *minor);
1542 extern void drm_sysfs_hotplug_event(struct drm_device *dev);
1543 extern void drm_sysfs_device_remove(struct drm_minor *minor);
1544 extern int drm_sysfs_connector_add(struct drm_connector *connector);
1545 extern void drm_sysfs_connector_remove(struct drm_connector *connector);
1546
1547 /* Graphics Execution Manager library functions (drm_gem.c) */
1548 int drm_gem_init(struct drm_device *dev);
1549 void drm_gem_destroy(struct drm_device *dev);
1550 void drm_gem_object_release(struct drm_gem_object *obj);
1551 void drm_gem_object_free(struct kref *kref);
1552 struct drm_gem_object *drm_gem_object_alloc(struct drm_device *dev,
1553 size_t size);
1554 int drm_gem_object_init(struct drm_device *dev,
1555 struct drm_gem_object *obj, size_t size);
1556 void drm_gem_private_object_init(struct drm_device *dev,
1557 struct drm_gem_object *obj, size_t size);
1558 void drm_gem_vm_open(struct vm_area_struct *vma);
1559 void drm_gem_vm_close(struct vm_area_struct *vma);
1560 int drm_gem_mmap_obj(struct drm_gem_object *obj, unsigned long obj_size,
1561 struct vm_area_struct *vma);
1562 int drm_gem_mmap(struct file *filp, struct vm_area_struct *vma);
1563
1564 #include <drm/drm_global.h>
1565
1566 static inline void
1567 drm_gem_object_reference(struct drm_gem_object *obj)
1568 {
1569 kref_get(&obj->refcount);
1570 }
1571
1572 static inline void
1573 drm_gem_object_unreference(struct drm_gem_object *obj)
1574 {
1575 if (obj != NULL)
1576 kref_put(&obj->refcount, drm_gem_object_free);
1577 }
1578
1579 static inline void
1580 drm_gem_object_unreference_unlocked(struct drm_gem_object *obj)
1581 {
1582 if (obj && !atomic_add_unless(&obj->refcount.refcount, -1, 1)) {
1583 struct drm_device *dev = obj->dev;
1584
1585 mutex_lock(&dev->struct_mutex);
1586 if (likely(atomic_dec_and_test(&obj->refcount.refcount)))
1587 drm_gem_object_free(&obj->refcount);
1588 mutex_unlock(&dev->struct_mutex);
1589 }
1590 }
1591
1592 int drm_gem_handle_create(struct drm_file *file_priv,
1593 struct drm_gem_object *obj,
1594 u32 *handlep);
1595 int drm_gem_handle_delete(struct drm_file *filp, u32 handle);
1596
1597 static inline void
1598 drm_gem_object_handle_reference(struct drm_gem_object *obj)
1599 {
1600 drm_gem_object_reference(obj);
1601 atomic_inc(&obj->handle_count);
1602 }
1603
1604 void drm_gem_object_handle_unreference_unlocked(struct drm_gem_object *obj);
1605
1606 void drm_gem_free_mmap_offset(struct drm_gem_object *obj);
1607 int drm_gem_create_mmap_offset(struct drm_gem_object *obj);
1608 int drm_gem_create_mmap_offset_size(struct drm_gem_object *obj, size_t size);
1609
1610 struct page **drm_gem_get_pages(struct drm_gem_object *obj, gfp_t gfpmask);
1611 void drm_gem_put_pages(struct drm_gem_object *obj, struct page **pages,
1612 bool dirty, bool accessed);
1613
1614 struct drm_gem_object *drm_gem_object_lookup(struct drm_device *dev,
1615 struct drm_file *filp,
1616 u32 handle);
1617 int drm_gem_close_ioctl(struct drm_device *dev, void *data,
1618 struct drm_file *file_priv);
1619 int drm_gem_flink_ioctl(struct drm_device *dev, void *data,
1620 struct drm_file *file_priv);
1621 int drm_gem_open_ioctl(struct drm_device *dev, void *data,
1622 struct drm_file *file_priv);
1623 void drm_gem_open(struct drm_device *dev, struct drm_file *file_private);
1624 void drm_gem_release(struct drm_device *dev, struct drm_file *file_private);
1625
1626 extern void drm_core_ioremap(struct drm_local_map *map, struct drm_device *dev);
1627 extern void drm_core_ioremap_wc(struct drm_local_map *map, struct drm_device *dev);
1628 extern void drm_core_ioremapfree(struct drm_local_map *map, struct drm_device *dev);
1629
1630 static __inline__ struct drm_local_map *drm_core_findmap(struct drm_device *dev,
1631 unsigned int token)
1632 {
1633 struct drm_map_list *_entry;
1634 list_for_each_entry(_entry, &dev->maplist, head)
1635 if (_entry->user_token == token)
1636 return _entry->map;
1637 return NULL;
1638 }
1639
1640 static __inline__ void drm_core_dropmap(struct drm_local_map *map)
1641 {
1642 }
1643
1644 #include <drm/drm_mem_util.h>
1645
1646 extern int drm_fill_in_dev(struct drm_device *dev,
1647 const struct pci_device_id *ent,
1648 struct drm_driver *driver);
1649 int drm_get_minor(struct drm_device *dev, struct drm_minor **minor, int type);
1650 /*@}*/
1651
1652 /* PCI section */
1653 static __inline__ int drm_pci_device_is_agp(struct drm_device *dev)
1654 {
1655 if (dev->driver->device_is_agp != NULL) {
1656 int err = (*dev->driver->device_is_agp) (dev);
1657
1658 if (err != 2) {
1659 return err;
1660 }
1661 }
1662
1663 return pci_find_capability(dev->pdev, PCI_CAP_ID_AGP);
1664 }
1665
1666 extern int drm_pci_init(struct drm_driver *driver, struct pci_driver *pdriver);
1667 extern void drm_pci_exit(struct drm_driver *driver, struct pci_driver *pdriver);
1668 extern int drm_get_pci_dev(struct pci_dev *pdev,
1669 const struct pci_device_id *ent,
1670 struct drm_driver *driver);
1671
1672 #define DRM_PCIE_SPEED_25 1
1673 #define DRM_PCIE_SPEED_50 2
1674 #define DRM_PCIE_SPEED_80 4
1675
1676 extern int drm_pcie_get_speed_cap_mask(struct drm_device *dev, u32 *speed_mask);
1677
1678 /* platform section */
1679 extern int drm_platform_init(struct drm_driver *driver, struct platform_device *platform_device);
1680 extern void drm_platform_exit(struct drm_driver *driver, struct platform_device *platform_device);
1681
1682 extern int drm_get_platform_dev(struct platform_device *pdev,
1683 struct drm_driver *driver);
1684
1685 /* returns true if currently okay to sleep */
1686 static __inline__ bool drm_can_sleep(void)
1687 {
1688 if (in_atomic() || in_dbg_master() || irqs_disabled())
1689 return false;
1690 return true;
1691 }
1692
1693 #endif /* __KERNEL__ */
1694 #endif
This page took 0.064346 seconds and 6 git commands to generate.