3 * Private header for Direct Rendering Manager
5 * \author Rickard E. (Rik) Faith <faith@valinux.com>
6 * \author Gareth Hughes <gareth@valinux.com>
10 * Copyright 1999 Precision Insight, Inc., Cedar Park, Texas.
11 * Copyright 2000 VA Linux Systems, Inc., Sunnyvale, California.
12 * All rights reserved.
14 * Permission is hereby granted, free of charge, to any person obtaining a
15 * copy of this software and associated documentation files (the "Software"),
16 * to deal in the Software without restriction, including without limitation
17 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
18 * and/or sell copies of the Software, and to permit persons to whom the
19 * Software is furnished to do so, subject to the following conditions:
21 * The above copyright notice and this permission notice (including the next
22 * paragraph) shall be included in all copies or substantial portions of the
25 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
26 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
27 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
28 * VA LINUX SYSTEMS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
29 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
30 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
31 * OTHER DEALINGS IN THE SOFTWARE.
37 /* If you want the memory alloc debug functionality, change define below */
38 /* #define DEBUG_MEMORY */
42 /* add include of current.h so that "current" is defined
43 * before static inline funcs in wait.h. Doing this so we
44 * can build the DRM (part of PI DRI). 4/21/2000 S + B */
45 #include <asm/current.h>
46 #endif /* __alpha__ */
47 #include <linux/module.h>
48 #include <linux/kernel.h>
49 #include <linux/miscdevice.h>
51 #include <linux/proc_fs.h>
52 #include <linux/init.h>
53 #include <linux/file.h>
54 #include <linux/pci.h>
55 #include <linux/jiffies.h>
56 #include <linux/smp_lock.h> /* For (un)lock_kernel */
57 #include <linux/dma-mapping.h>
59 #include <linux/cdev.h>
60 #include <linux/mutex.h>
61 #if defined(__alpha__) || defined(__powerpc__)
62 #include <asm/pgtable.h> /* For pte_wrprotect */
66 #include <asm/uaccess.h>
70 #if defined(CONFIG_AGP) || defined(CONFIG_AGP_MODULE)
71 #include <linux/types.h>
72 #include <linux/agp_backend.h>
74 #include <linux/workqueue.h>
75 #include <linux/poll.h>
76 #include <asm/pgalloc.h>
79 #include <linux/idr.h>
81 #define __OS_HAS_AGP (defined(CONFIG_AGP) || (defined(CONFIG_AGP_MODULE) && defined(MODULE)))
82 #define __OS_HAS_MTRR (defined(CONFIG_MTRR))
87 #include "drm_os_linux.h"
88 #include "drm_hashtab.h"
90 /***********************************************************************/
91 /** \name DRM template customization defaults */
94 /* driver capabilities and requirements mask */
95 #define DRIVER_USE_AGP 0x1
96 #define DRIVER_REQUIRE_AGP 0x2
97 #define DRIVER_USE_MTRR 0x4
98 #define DRIVER_PCI_DMA 0x8
99 #define DRIVER_SG 0x10
100 #define DRIVER_HAVE_DMA 0x20
101 #define DRIVER_HAVE_IRQ 0x40
102 #define DRIVER_IRQ_SHARED 0x80
103 #define DRIVER_IRQ_VBL 0x100
104 #define DRIVER_DMA_QUEUE 0x200
105 #define DRIVER_FB_DMA 0x400
106 #define DRIVER_IRQ_VBL2 0x800
107 #define DRIVER_GEM 0x1000
108 #define DRIVER_MODESET 0x2000
110 /***********************************************************************/
111 /** \name Begin the DRM... */
114 #define DRM_DEBUG_CODE 2 /**< Include debugging code if > 1, then
115 also include looping detection. */
117 #define DRM_MAGIC_HASH_ORDER 4 /**< Size of key hash table. Must be power of 2. */
118 #define DRM_KERNEL_CONTEXT 0 /**< Change drm_resctx if changed */
119 #define DRM_RESERVED_CONTEXTS 1 /**< Change drm_resctx if changed */
120 #define DRM_LOOPING_LIMIT 5000000
121 #define DRM_TIME_SLICE (HZ/20) /**< Time slice for GLXContexts */
122 #define DRM_LOCK_SLICE 1 /**< Time slice for lock, in jiffies */
124 #define DRM_FLAG_DEBUG 0x01
126 #define DRM_MEM_DMA 0
127 #define DRM_MEM_SAREA 1
128 #define DRM_MEM_DRIVER 2
129 #define DRM_MEM_MAGIC 3
130 #define DRM_MEM_IOCTLS 4
131 #define DRM_MEM_MAPS 5
132 #define DRM_MEM_VMAS 6
133 #define DRM_MEM_BUFS 7
134 #define DRM_MEM_SEGS 8
135 #define DRM_MEM_PAGES 9
136 #define DRM_MEM_FILES 10
137 #define DRM_MEM_QUEUES 11
138 #define DRM_MEM_CMDS 12
139 #define DRM_MEM_MAPPINGS 13
140 #define DRM_MEM_BUFLISTS 14
141 #define DRM_MEM_AGPLISTS 15
142 #define DRM_MEM_TOTALAGP 16
143 #define DRM_MEM_BOUNDAGP 17
144 #define DRM_MEM_CTXBITMAP 18
145 #define DRM_MEM_STUB 19
146 #define DRM_MEM_SGLISTS 20
147 #define DRM_MEM_CTXLIST 21
148 #define DRM_MEM_MM 22
149 #define DRM_MEM_HASHTAB 23
151 #define DRM_MAX_CTXBITMAP (PAGE_SIZE * 8)
152 #define DRM_MAP_HASH_OFFSET 0x10000000
156 /***********************************************************************/
157 /** \name Macros to make printk easier */
163 * \param fmt printf() like format string.
164 * \param arg arguments
166 #define DRM_ERROR(fmt, arg...) \
167 printk(KERN_ERR "[" DRM_NAME ":%s] *ERROR* " fmt , __func__ , ##arg)
170 * Memory error output.
172 * \param area memory area where the error occurred.
173 * \param fmt printf() like format string.
174 * \param arg arguments
176 #define DRM_MEM_ERROR(area, fmt, arg...) \
177 printk(KERN_ERR "[" DRM_NAME ":%s:%s] *ERROR* " fmt , __func__, \
178 drm_mem_stats[area].name , ##arg)
180 #define DRM_INFO(fmt, arg...) printk(KERN_INFO "[" DRM_NAME "] " fmt , ##arg)
185 * \param fmt printf() like format string.
186 * \param arg arguments
189 #define DRM_DEBUG(fmt, arg...) \
193 "[" DRM_NAME ":%s] " fmt , \
197 #define DRM_DEBUG(fmt, arg...) do { } while (0)
200 #define DRM_PROC_LIMIT (PAGE_SIZE-80)
202 #define DRM_PROC_PRINT(fmt, arg...) \
203 len += sprintf(&buf[len], fmt , ##arg); \
204 if (len > DRM_PROC_LIMIT) { *eof = 1; return len - offset; }
206 #define DRM_PROC_PRINT_RET(ret, fmt, arg...) \
207 len += sprintf(&buf[len], fmt , ##arg); \
208 if (len > DRM_PROC_LIMIT) { ret; *eof = 1; return len - offset; }
212 /***********************************************************************/
213 /** \name Internal types and structures */
216 #define DRM_ARRAY_SIZE(x) ARRAY_SIZE(x)
218 #define DRM_LEFTCOUNT(x) (((x)->rp + (x)->count - (x)->wp) % ((x)->count + 1))
219 #define DRM_BUFCOUNT(x) ((x)->count - DRM_LEFTCOUNT(x))
220 #define DRM_WAITCOUNT(dev,idx) DRM_BUFCOUNT(&dev->queuelist[idx]->waitlist)
222 #define DRM_IF_VERSION(maj, min) (maj << 16 | min)
224 * Get the private SAREA mapping.
226 * \param _dev DRM device.
227 * \param _ctx context number.
228 * \param _map output mapping.
230 #define DRM_GET_PRIV_SAREA(_dev, _ctx, _map) do { \
231 (_map) = (_dev)->context_sareas[_ctx]; \
235 * Test that the hardware lock is held by the caller, returning otherwise.
237 * \param dev DRM device.
238 * \param filp file pointer of the caller.
240 #define LOCK_TEST_WITH_RETURN( dev, file_priv ) \
242 if (!_DRM_LOCK_IS_HELD(file_priv->master->lock.hw_lock->lock) || \
243 file_priv->master->lock.file_priv != file_priv) { \
244 DRM_ERROR( "%s called without lock held, held %d owner %p %p\n",\
245 __func__, _DRM_LOCK_IS_HELD(file_priv->master->lock.hw_lock->lock),\
246 file_priv->master->lock.file_priv, file_priv); \
252 * Copy and IOCTL return string to user space
254 #define DRM_COPY( name, value ) \
255 len = strlen( value ); \
256 if ( len > name##_len ) len = name##_len; \
257 name##_len = strlen( value ); \
258 if ( len && name ) { \
259 if ( copy_to_user( name, value, len ) ) \
264 * Ioctl function type.
266 * \param inode device inode.
267 * \param file_priv DRM file private pointer.
268 * \param cmd command.
269 * \param arg argument.
271 typedef int drm_ioctl_t(struct drm_device
*dev
, void *data
,
272 struct drm_file
*file_priv
);
274 typedef int drm_ioctl_compat_t(struct file
*filp
, unsigned int cmd
,
278 #define DRM_MASTER 0x2
279 #define DRM_ROOT_ONLY 0x4
280 #define DRM_CONTROL_ALLOW 0x8
282 struct drm_ioctl_desc
{
289 * Creates a driver or general drm_ioctl_desc array entry for the given
290 * ioctl, for use by drm_ioctl().
292 #define DRM_IOCTL_DEF(ioctl, func, flags) \
293 [DRM_IOCTL_NR(ioctl)] = {ioctl, func, flags}
295 struct drm_magic_entry
{
296 struct list_head head
;
297 struct drm_hash_item hash_item
;
298 struct drm_file
*priv
;
301 struct drm_vma_entry
{
302 struct list_head head
;
303 struct vm_area_struct
*vma
;
311 int idx
; /**< Index into master buflist */
312 int total
; /**< Buffer size */
313 int order
; /**< log-base-2(total) */
314 int used
; /**< Amount of buffer in use (for DMA) */
315 unsigned long offset
; /**< Byte offset (used internally) */
316 void *address
; /**< Address of buffer */
317 unsigned long bus_address
; /**< Bus address of buffer */
318 struct drm_buf
*next
; /**< Kernel-only: used for free list */
319 __volatile__
int waiting
; /**< On kernel DMA queue */
320 __volatile__
int pending
; /**< On hardware DMA queue */
321 wait_queue_head_t dma_wait
; /**< Processes waiting */
322 struct drm_file
*file_priv
; /**< Private of holding file descr */
323 int context
; /**< Kernel queue for this buffer */
324 int while_locked
; /**< Dispatch this buffer while locked */
332 } list
; /**< Which list we're on */
334 int dev_priv_size
; /**< Size of buffer private storage */
335 void *dev_private
; /**< Per-buffer private storage */
338 /** bufs is one longer than it has to be */
339 struct drm_waitlist
{
340 int count
; /**< Number of possible buffers */
341 struct drm_buf
**bufs
; /**< List of pointers to buffers */
342 struct drm_buf
**rp
; /**< Read pointer */
343 struct drm_buf
**wp
; /**< Write pointer */
344 struct drm_buf
**end
; /**< End pointer */
345 spinlock_t read_lock
;
346 spinlock_t write_lock
;
349 struct drm_freelist
{
350 int initialized
; /**< Freelist in use */
351 atomic_t count
; /**< Number of free buffers */
352 struct drm_buf
*next
; /**< End pointer */
354 wait_queue_head_t waiting
; /**< Processes waiting on free bufs */
355 int low_mark
; /**< Low water mark */
356 int high_mark
; /**< High water mark */
357 atomic_t wfh
; /**< If waiting for high mark */
361 typedef struct drm_dma_handle
{
368 * Buffer entry. There is one of this for each buffer size order.
370 struct drm_buf_entry
{
371 int buf_size
; /**< size */
372 int buf_count
; /**< number of buffers */
373 struct drm_buf
*buflist
; /**< buffer list */
376 struct drm_dma_handle
**seglist
;
378 struct drm_freelist freelist
;
381 /** File private data */
387 unsigned long ioctl_count
;
388 struct list_head lhead
;
389 struct drm_minor
*minor
;
390 unsigned long lock_count
;
392 /** Mapping of mm object handles to object pointers. */
393 struct idr object_idr
;
394 /** Lock for synchronization of access to object_idr. */
395 spinlock_t table_lock
;
400 int is_master
; /* this file private is a master for a minor */
401 struct drm_master
*master
; /* master this node is currently associated with
402 N.B. not always minor->master */
403 struct list_head fbs
;
408 atomic_t use_count
; /**< Outstanding uses (+1) */
409 atomic_t finalization
; /**< Finalization in progress */
410 atomic_t block_count
; /**< Count of processes waiting */
411 atomic_t block_read
; /**< Queue blocked for reads */
412 wait_queue_head_t read_queue
; /**< Processes waiting on block_read */
413 atomic_t block_write
; /**< Queue blocked for writes */
414 wait_queue_head_t write_queue
; /**< Processes waiting on block_write */
415 atomic_t total_queued
; /**< Total queued statistic */
416 atomic_t total_flushed
; /**< Total flushes statistic */
417 atomic_t total_locks
; /**< Total locks statistics */
418 enum drm_ctx_flags flags
; /**< Context preserving and 2D-only */
419 struct drm_waitlist waitlist
; /**< Pending buffers */
420 wait_queue_head_t flush_queue
; /**< Processes waiting until flush */
426 struct drm_lock_data
{
427 struct drm_hw_lock
*hw_lock
; /**< Hardware lock */
428 /** Private of lock holder's file (NULL=kernel) */
429 struct drm_file
*file_priv
;
430 wait_queue_head_t lock_queue
; /**< Queue of blocked processes */
431 unsigned long lock_time
; /**< Time of last lock in jiffies */
433 uint32_t kernel_waiters
;
434 uint32_t user_waiters
;
441 struct drm_device_dma
{
443 struct drm_buf_entry bufs
[DRM_MAX_ORDER
+ 1]; /**< buffers, grouped by their size order */
444 int buf_count
; /**< total number of buffers */
445 struct drm_buf
**buflist
; /**< Vector of pointers into drm_device_dma::bufs */
447 int page_count
; /**< number of pages */
448 unsigned long *pagelist
; /**< page list */
449 unsigned long byte_count
;
451 _DRM_DMA_USE_AGP
= 0x01,
452 _DRM_DMA_USE_SG
= 0x02,
453 _DRM_DMA_USE_FB
= 0x04,
454 _DRM_DMA_USE_PCI_RO
= 0x08
460 * AGP memory entry. Stored as a doubly linked list.
463 unsigned long handle
; /**< handle */
465 unsigned long bound
; /**< address */
467 struct list_head head
;
473 * \sa drm_agp_init() and drm_device::agp.
475 struct drm_agp_head
{
476 DRM_AGP_KERN agp_info
; /**< AGP device information */
477 struct list_head memory
;
478 unsigned long mode
; /**< AGP mode */
479 struct agp_bridge_data
*bridge
;
480 int enabled
; /**< whether the AGP bus as been enabled */
481 int acquired
; /**< whether the AGP device has been acquired */
484 int cant_use_aperture
;
485 unsigned long page_mask
;
489 * Scatter-gather memory.
492 unsigned long handle
;
495 struct page
**pagelist
;
501 struct drm_hw_lock
*lock
;
506 * Generic memory manager structs
510 struct list_head fl_entry
;
511 struct list_head ml_entry
;
520 struct list_head fl_entry
;
521 struct list_head ml_entry
;
528 struct drm_map_list
{
529 struct list_head head
; /**< list head */
530 struct drm_hash_item hash
;
531 struct drm_map
*map
; /**< mapping */
533 struct drm_master
*master
;
534 struct drm_mm_node
*file_offset_node
; /**< fake offset */
537 typedef struct drm_map drm_local_map_t
;
540 * Context handle list
542 struct drm_ctx_list
{
543 struct list_head head
; /**< list head */
544 drm_context_t handle
; /**< context handle */
545 struct drm_file
*tag
; /**< associated fd private data */
549 struct list_head head
;
550 unsigned int sequence
;
552 struct task_struct
*task
;
555 /* location of GART table */
556 #define DRM_ATI_GART_MAIN 1
557 #define DRM_ATI_GART_FB 2
559 #define DRM_ATI_GART_PCI 1
560 #define DRM_ATI_GART_PCIE 2
561 #define DRM_ATI_GART_IGP 3
563 struct drm_ati_pcigart_info
{
564 int gart_table_location
;
568 dma_addr_t table_mask
;
569 struct drm_dma_handle
*table_handle
;
570 drm_local_map_t mapping
;
575 * GEM specific mm private for tracking GEM objects
578 struct drm_mm offset_manager
; /**< Offset mgmt for buffer objects */
579 struct drm_open_hash offset_hash
; /**< User token hash table for maps */
583 * This structure defines the drm_mm memory object, which will be used by the
584 * DRM for its buffer objects.
586 struct drm_gem_object
{
587 /** Reference count of this object */
588 struct kref refcount
;
590 /** Handle count of this object. Each handle also holds a reference */
591 struct kref handlecount
;
593 /** Related drm device */
594 struct drm_device
*dev
;
596 /** File representing the shmem storage */
599 /* Mapping info for this object */
600 struct drm_map_list map_list
;
603 * Size of the object, in bytes. Immutable over the object's
609 * Global name for this object, starts at 1. 0 means unnamed.
610 * Access is covered by the object_name_lock in the related drm_device
615 * Memory domains. These monitor which caches contain read/write data
616 * related to the object. When transitioning from one set of domains
617 * to another, the driver is called to ensure that caches are suitably
618 * flushed and invalidated
620 uint32_t read_domains
;
621 uint32_t write_domain
;
624 * While validating an exec operation, the
625 * new read/write domain values are computed here.
626 * They will be transferred to the above values
627 * at the point that any cache flushing occurs
629 uint32_t pending_read_domains
;
630 uint32_t pending_write_domain
;
632 void *driver_private
;
635 #include "drm_crtc.h"
637 /* per-master structure */
640 struct kref refcount
; /* refcount for this master */
642 struct list_head head
; /**< each minor contains a list of masters */
643 struct drm_minor
*minor
; /**< link back to minor we are a master for */
645 char *unique
; /**< Unique identifier: e.g., busid */
646 int unique_len
; /**< Length of unique field */
647 int unique_size
; /**< amount allocated */
649 int blocked
; /**< Blocked due to VC switch? */
651 /** \name Authentication */
653 struct drm_open_hash magiclist
;
654 struct list_head magicfree
;
657 struct drm_lock_data lock
; /**< Information on hardware lock */
659 void *driver_priv
; /**< Private structure for driver to use */
663 * DRM driver structure. This structure represent the common code for
664 * a family of cards. There will one drm_device for each card present
668 int (*load
) (struct drm_device
*, unsigned long flags
);
669 int (*firstopen
) (struct drm_device
*);
670 int (*open
) (struct drm_device
*, struct drm_file
*);
671 void (*preclose
) (struct drm_device
*, struct drm_file
*file_priv
);
672 void (*postclose
) (struct drm_device
*, struct drm_file
*);
673 void (*lastclose
) (struct drm_device
*);
674 int (*unload
) (struct drm_device
*);
675 int (*suspend
) (struct drm_device
*, pm_message_t state
);
676 int (*resume
) (struct drm_device
*);
677 int (*dma_ioctl
) (struct drm_device
*dev
, void *data
, struct drm_file
*file_priv
);
678 void (*dma_ready
) (struct drm_device
*);
679 int (*dma_quiescent
) (struct drm_device
*);
680 int (*context_ctor
) (struct drm_device
*dev
, int context
);
681 int (*context_dtor
) (struct drm_device
*dev
, int context
);
682 int (*kernel_context_switch
) (struct drm_device
*dev
, int old
,
684 void (*kernel_context_switch_unlock
) (struct drm_device
*dev
);
685 int (*dri_library_name
) (struct drm_device
*dev
, char *buf
);
688 * get_vblank_counter - get raw hardware vblank counter
690 * @crtc: counter to fetch
692 * Driver callback for fetching a raw hardware vblank counter
693 * for @crtc. If a device doesn't have a hardware counter, the
694 * driver can simply return the value of drm_vblank_count and
695 * make the enable_vblank() and disable_vblank() hooks into no-ops,
696 * leaving interrupts enabled at all times.
698 * Wraparound handling and loss of events due to modesetting is dealt
699 * with in the DRM core code.
702 * Raw vblank counter value.
704 u32 (*get_vblank_counter
) (struct drm_device
*dev
, int crtc
);
707 * enable_vblank - enable vblank interrupt events
709 * @crtc: which irq to enable
711 * Enable vblank interrupts for @crtc. If the device doesn't have
712 * a hardware vblank counter, this routine should be a no-op, since
713 * interrupts will have to stay on to keep the count accurate.
716 * Zero on success, appropriate errno if the given @crtc's vblank
717 * interrupt cannot be enabled.
719 int (*enable_vblank
) (struct drm_device
*dev
, int crtc
);
722 * disable_vblank - disable vblank interrupt events
724 * @crtc: which irq to enable
726 * Disable vblank interrupts for @crtc. If the device doesn't have
727 * a hardware vblank counter, this routine should be a no-op, since
728 * interrupts will have to stay on to keep the count accurate.
730 void (*disable_vblank
) (struct drm_device
*dev
, int crtc
);
733 * Called by \c drm_device_is_agp. Typically used to determine if a
734 * card is really attached to AGP or not.
736 * \param dev DRM device handle
739 * One of three values is returned depending on whether or not the
740 * card is absolutely \b not AGP (return of 0), absolutely \b is AGP
741 * (return of 1), or may or may not be AGP (return of 2).
743 int (*device_is_agp
) (struct drm_device
*dev
);
745 /* these have to be filled in */
747 irqreturn_t(*irq_handler
) (DRM_IRQ_ARGS
);
748 void (*irq_preinstall
) (struct drm_device
*dev
);
749 int (*irq_postinstall
) (struct drm_device
*dev
);
750 void (*irq_uninstall
) (struct drm_device
*dev
);
751 void (*reclaim_buffers
) (struct drm_device
*dev
,
752 struct drm_file
* file_priv
);
753 void (*reclaim_buffers_locked
) (struct drm_device
*dev
,
754 struct drm_file
*file_priv
);
755 void (*reclaim_buffers_idlelocked
) (struct drm_device
*dev
,
756 struct drm_file
*file_priv
);
757 unsigned long (*get_map_ofs
) (struct drm_map
* map
);
758 unsigned long (*get_reg_ofs
) (struct drm_device
*dev
);
759 void (*set_version
) (struct drm_device
*dev
,
760 struct drm_set_version
*sv
);
762 /* Master routines */
763 int (*master_create
)(struct drm_device
*dev
, struct drm_master
*master
);
764 void (*master_destroy
)(struct drm_device
*dev
, struct drm_master
*master
);
766 int (*proc_init
)(struct drm_minor
*minor
);
767 void (*proc_cleanup
)(struct drm_minor
*minor
);
770 * Driver-specific constructor for drm_gem_objects, to set up
771 * obj->driver_private.
773 * Returns 0 on success.
775 int (*gem_init_object
) (struct drm_gem_object
*obj
);
776 void (*gem_free_object
) (struct drm_gem_object
*obj
);
778 /* Driver private ops for this object */
779 struct vm_operations_struct
*gem_vm_ops
;
790 struct drm_ioctl_desc
*ioctls
;
792 struct file_operations fops
;
793 struct pci_driver pci_driver
;
794 /* List of devices hanging off this driver */
795 struct list_head device_list
;
798 #define DRM_MINOR_UNASSIGNED 0
799 #define DRM_MINOR_LEGACY 1
800 #define DRM_MINOR_CONTROL 2
801 #define DRM_MINOR_RENDER 3
804 * DRM minor structure. This structure represents a drm minor number.
807 int index
; /**< Minor device number */
808 int type
; /**< Control or render */
809 dev_t device
; /**< Device number for mknod */
810 struct device kdev
; /**< Linux device */
811 struct drm_device
*dev
;
812 struct proc_dir_entry
*dev_root
; /**< proc directory entry */
813 struct drm_master
*master
; /* currently active master for this node */
814 struct list_head master_list
;
815 struct drm_mode_group mode_group
;
819 * DRM device structure. This structure represent a complete card that
820 * may contain multiple heads.
823 struct list_head driver_item
; /**< list of devices per driver */
824 char *devname
; /**< For /proc/interrupts */
825 int if_version
; /**< Highest interface version set */
829 spinlock_t count_lock
; /**< For inuse, drm_device::open_count, drm_device::buf_use */
830 struct mutex struct_mutex
; /**< For others */
833 /** \name Usage Counters */
835 int open_count
; /**< Outstanding files open */
836 atomic_t ioctl_count
; /**< Outstanding IOCTLs pending */
837 atomic_t vma_count
; /**< Outstanding vma areas open */
838 int buf_use
; /**< Buffers in use -- cannot alloc */
839 atomic_t buf_alloc
; /**< Buffer allocation in progress */
842 /** \name Performance counters */
844 unsigned long counters
;
845 enum drm_stat_type types
[15];
849 struct list_head filelist
;
851 /** \name Memory management */
853 struct list_head maplist
; /**< Linked list of regions */
854 int map_count
; /**< Number of mappable regions */
855 struct drm_open_hash map_hash
; /**< User token hash table for maps */
857 /** \name Context handle management */
859 struct list_head ctxlist
; /**< Linked list of context handles */
860 int ctx_count
; /**< Number of context handles */
861 struct mutex ctxlist_mutex
; /**< For ctxlist */
865 struct list_head vmalist
; /**< List of vmas (for debugging) */
869 /** \name DMA queues (contexts) */
871 int queue_count
; /**< Number of active DMA queues */
872 int queue_reserved
; /**< Number of reserved DMA queues */
873 int queue_slots
; /**< Actual length of queuelist */
874 struct drm_queue
**queuelist
; /**< Vector of pointers to DMA queues */
875 struct drm_device_dma
*dma
; /**< Optional pointer for DMA support */
878 /** \name Context support */
880 int irq_enabled
; /**< True if irq handler is enabled */
881 __volatile__
long context_flag
; /**< Context swapping flag */
882 __volatile__
long interrupt_flag
; /**< Interruption handler flag */
883 __volatile__
long dma_flag
; /**< DMA dispatch flag */
884 struct timer_list timer
; /**< Timer for delaying ctx switch */
885 wait_queue_head_t context_wait
; /**< Processes waiting on ctx switch */
886 int last_checked
; /**< Last context checked for DMA */
887 int last_context
; /**< Last current context */
888 unsigned long last_switch
; /**< jiffies at last context switch */
891 struct work_struct work
;
892 /** \name VBLANK IRQ support */
896 * At load time, disabling the vblank interrupt won't be allowed since
897 * old clients may not call the modeset ioctl and therefore misbehave.
898 * Once the modeset ioctl *has* been called though, we can safely
899 * disable them when unused.
901 int vblank_disable_allowed
;
903 wait_queue_head_t
*vbl_queue
; /**< VBLANK wait queue */
904 atomic_t
*_vblank_count
; /**< number of VBLANK interrupts (driver must alloc the right number of counters) */
906 struct list_head
*vbl_sigs
; /**< signal list to send on VBLANK */
907 atomic_t vbl_signal_pending
; /* number of signals pending on all crtcs*/
908 atomic_t
*vblank_refcount
; /* number of users of vblank interruptsper crtc */
909 u32
*last_vblank
; /* protected by dev->vbl_lock, used */
910 /* for wraparound handling */
911 int *vblank_enabled
; /* so we don't call enable more than
913 int *vblank_inmodeset
; /* Display driver is setting mode */
914 u32
*last_vblank_wait
; /* Last vblank seqno waited per CRTC */
915 struct timer_list vblank_disable_timer
;
917 u32 max_vblank_count
; /**< size of vblank counter register */
923 struct fasync_struct
*buf_async
;/**< Processes waiting for SIGIO */
924 wait_queue_head_t buf_readers
; /**< Processes waiting to read */
925 wait_queue_head_t buf_writers
; /**< Processes waiting to ctx switch */
927 struct drm_agp_head
*agp
; /**< AGP data */
929 struct pci_dev
*pdev
; /**< PCI device structure */
930 int pci_vendor
; /**< PCI vendor id */
931 int pci_device
; /**< PCI device id */
933 struct pci_controller
*hose
;
935 struct drm_sg_mem
*sg
; /**< Scatter gather memory */
936 int num_crtcs
; /**< Number of CRTCs on this device */
937 void *dev_private
; /**< device private data */
939 struct address_space
*dev_mapping
;
940 struct drm_sigdata sigdata
; /**< For block_all_signals */
943 struct drm_driver
*driver
;
944 drm_local_map_t
*agp_buffer_map
;
945 unsigned int agp_buffer_token
;
946 struct drm_minor
*control
; /**< Control node for card */
947 struct drm_minor
*primary
; /**< render type primary screen head */
949 /** \name Drawable information */
955 struct drm_mode_config mode_config
; /**< Current mode config */
957 /** \name GEM information */
959 spinlock_t object_name_lock
;
960 struct idr object_name_idr
;
961 atomic_t object_count
;
962 atomic_t object_memory
;
968 uint32_t invalidate_domains
; /* domains pending invalidation */
969 uint32_t flush_domains
; /* domains pending flush */
974 static inline int drm_dev_to_irq(struct drm_device
*dev
)
976 return dev
->pdev
->irq
;
979 static __inline__
int drm_core_check_feature(struct drm_device
*dev
,
982 return ((dev
->driver
->driver_features
& feature
) ? 1 : 0);
986 #define drm_get_pci_domain(dev) dev->hose->index
988 #define drm_get_pci_domain(dev) 0
992 static inline int drm_core_has_AGP(struct drm_device
*dev
)
994 return drm_core_check_feature(dev
, DRIVER_USE_AGP
);
997 #define drm_core_has_AGP(dev) (0)
1001 static inline int drm_core_has_MTRR(struct drm_device
*dev
)
1003 return drm_core_check_feature(dev
, DRIVER_USE_MTRR
);
1006 #define DRM_MTRR_WC MTRR_TYPE_WRCOMB
1008 static inline int drm_mtrr_add(unsigned long offset
, unsigned long size
,
1011 return mtrr_add(offset
, size
, flags
, 1);
1014 static inline int drm_mtrr_del(int handle
, unsigned long offset
,
1015 unsigned long size
, unsigned int flags
)
1017 return mtrr_del(handle
, offset
, size
);
1021 #define drm_core_has_MTRR(dev) (0)
1023 #define DRM_MTRR_WC 0
1025 static inline int drm_mtrr_add(unsigned long offset
, unsigned long size
,
1031 static inline int drm_mtrr_del(int handle
, unsigned long offset
,
1032 unsigned long size
, unsigned int flags
)
1038 /******************************************************************/
1039 /** \name Internal function definitions */
1042 /* Driver support (drm_drv.h) */
1043 extern int drm_init(struct drm_driver
*driver
);
1044 extern void drm_exit(struct drm_driver
*driver
);
1045 extern int drm_ioctl(struct inode
*inode
, struct file
*filp
,
1046 unsigned int cmd
, unsigned long arg
);
1047 extern long drm_compat_ioctl(struct file
*filp
,
1048 unsigned int cmd
, unsigned long arg
);
1049 extern int drm_lastclose(struct drm_device
*dev
);
1051 /* Device support (drm_fops.h) */
1052 extern int drm_open(struct inode
*inode
, struct file
*filp
);
1053 extern int drm_stub_open(struct inode
*inode
, struct file
*filp
);
1054 extern int drm_fasync(int fd
, struct file
*filp
, int on
);
1055 extern int drm_release(struct inode
*inode
, struct file
*filp
);
1057 /* Mapping support (drm_vm.h) */
1058 extern int drm_mmap(struct file
*filp
, struct vm_area_struct
*vma
);
1059 extern int drm_mmap_locked(struct file
*filp
, struct vm_area_struct
*vma
);
1060 extern void drm_vm_open_locked(struct vm_area_struct
*vma
);
1061 extern unsigned long drm_core_get_map_ofs(struct drm_map
* map
);
1062 extern unsigned long drm_core_get_reg_ofs(struct drm_device
*dev
);
1063 extern unsigned int drm_poll(struct file
*filp
, struct poll_table_struct
*wait
);
1065 /* Memory management support (drm_memory.h) */
1066 #include "drm_memory.h"
1067 extern void drm_mem_init(void);
1068 extern int drm_mem_info(char *buf
, char **start
, off_t offset
,
1069 int request
, int *eof
, void *data
);
1070 extern void *drm_realloc(void *oldpt
, size_t oldsize
, size_t size
, int area
);
1072 extern DRM_AGP_MEM
*drm_alloc_agp(struct drm_device
*dev
, int pages
, u32 type
);
1073 extern int drm_free_agp(DRM_AGP_MEM
* handle
, int pages
);
1074 extern int drm_bind_agp(DRM_AGP_MEM
* handle
, unsigned int start
);
1075 extern DRM_AGP_MEM
*drm_agp_bind_pages(struct drm_device
*dev
,
1076 struct page
**pages
,
1077 unsigned long num_pages
,
1078 uint32_t gtt_offset
,
1080 extern int drm_unbind_agp(DRM_AGP_MEM
* handle
);
1082 /* Misc. IOCTL support (drm_ioctl.h) */
1083 extern int drm_irq_by_busid(struct drm_device
*dev
, void *data
,
1084 struct drm_file
*file_priv
);
1085 extern int drm_getunique(struct drm_device
*dev
, void *data
,
1086 struct drm_file
*file_priv
);
1087 extern int drm_setunique(struct drm_device
*dev
, void *data
,
1088 struct drm_file
*file_priv
);
1089 extern int drm_getmap(struct drm_device
*dev
, void *data
,
1090 struct drm_file
*file_priv
);
1091 extern int drm_getclient(struct drm_device
*dev
, void *data
,
1092 struct drm_file
*file_priv
);
1093 extern int drm_getstats(struct drm_device
*dev
, void *data
,
1094 struct drm_file
*file_priv
);
1095 extern int drm_setversion(struct drm_device
*dev
, void *data
,
1096 struct drm_file
*file_priv
);
1097 extern int drm_noop(struct drm_device
*dev
, void *data
,
1098 struct drm_file
*file_priv
);
1100 /* Context IOCTL support (drm_context.h) */
1101 extern int drm_resctx(struct drm_device
*dev
, void *data
,
1102 struct drm_file
*file_priv
);
1103 extern int drm_addctx(struct drm_device
*dev
, void *data
,
1104 struct drm_file
*file_priv
);
1105 extern int drm_modctx(struct drm_device
*dev
, void *data
,
1106 struct drm_file
*file_priv
);
1107 extern int drm_getctx(struct drm_device
*dev
, void *data
,
1108 struct drm_file
*file_priv
);
1109 extern int drm_switchctx(struct drm_device
*dev
, void *data
,
1110 struct drm_file
*file_priv
);
1111 extern int drm_newctx(struct drm_device
*dev
, void *data
,
1112 struct drm_file
*file_priv
);
1113 extern int drm_rmctx(struct drm_device
*dev
, void *data
,
1114 struct drm_file
*file_priv
);
1116 extern int drm_ctxbitmap_init(struct drm_device
*dev
);
1117 extern void drm_ctxbitmap_cleanup(struct drm_device
*dev
);
1118 extern void drm_ctxbitmap_free(struct drm_device
*dev
, int ctx_handle
);
1120 extern int drm_setsareactx(struct drm_device
*dev
, void *data
,
1121 struct drm_file
*file_priv
);
1122 extern int drm_getsareactx(struct drm_device
*dev
, void *data
,
1123 struct drm_file
*file_priv
);
1125 /* Drawable IOCTL support (drm_drawable.h) */
1126 extern int drm_adddraw(struct drm_device
*dev
, void *data
,
1127 struct drm_file
*file_priv
);
1128 extern int drm_rmdraw(struct drm_device
*dev
, void *data
,
1129 struct drm_file
*file_priv
);
1130 extern int drm_update_drawable_info(struct drm_device
*dev
, void *data
,
1131 struct drm_file
*file_priv
);
1132 extern struct drm_drawable_info
*drm_get_drawable_info(struct drm_device
*dev
,
1134 extern void drm_drawable_free_all(struct drm_device
*dev
);
1136 /* Authentication IOCTL support (drm_auth.h) */
1137 extern int drm_getmagic(struct drm_device
*dev
, void *data
,
1138 struct drm_file
*file_priv
);
1139 extern int drm_authmagic(struct drm_device
*dev
, void *data
,
1140 struct drm_file
*file_priv
);
1142 /* Cache management (drm_cache.c) */
1143 void drm_clflush_pages(struct page
*pages
[], unsigned long num_pages
);
1145 /* Locking IOCTL support (drm_lock.h) */
1146 extern int drm_lock(struct drm_device
*dev
, void *data
,
1147 struct drm_file
*file_priv
);
1148 extern int drm_unlock(struct drm_device
*dev
, void *data
,
1149 struct drm_file
*file_priv
);
1150 extern int drm_lock_take(struct drm_lock_data
*lock_data
, unsigned int context
);
1151 extern int drm_lock_free(struct drm_lock_data
*lock_data
, unsigned int context
);
1152 extern void drm_idlelock_take(struct drm_lock_data
*lock_data
);
1153 extern void drm_idlelock_release(struct drm_lock_data
*lock_data
);
1156 * These are exported to drivers so that they can implement fencing using
1157 * DMA quiscent + idle. DMA quiescent usually requires the hardware lock.
1160 extern int drm_i_have_hw_lock(struct drm_device
*dev
, struct drm_file
*file_priv
);
1162 /* Buffer management support (drm_bufs.h) */
1163 extern int drm_addbufs_agp(struct drm_device
*dev
, struct drm_buf_desc
* request
);
1164 extern int drm_addbufs_pci(struct drm_device
*dev
, struct drm_buf_desc
* request
);
1165 extern int drm_addmap(struct drm_device
*dev
, unsigned int offset
,
1166 unsigned int size
, enum drm_map_type type
,
1167 enum drm_map_flags flags
, drm_local_map_t
** map_ptr
);
1168 extern int drm_addmap_ioctl(struct drm_device
*dev
, void *data
,
1169 struct drm_file
*file_priv
);
1170 extern int drm_rmmap(struct drm_device
*dev
, drm_local_map_t
*map
);
1171 extern int drm_rmmap_locked(struct drm_device
*dev
, drm_local_map_t
*map
);
1172 extern int drm_rmmap_ioctl(struct drm_device
*dev
, void *data
,
1173 struct drm_file
*file_priv
);
1174 extern int drm_addbufs(struct drm_device
*dev
, void *data
,
1175 struct drm_file
*file_priv
);
1176 extern int drm_infobufs(struct drm_device
*dev
, void *data
,
1177 struct drm_file
*file_priv
);
1178 extern int drm_markbufs(struct drm_device
*dev
, void *data
,
1179 struct drm_file
*file_priv
);
1180 extern int drm_freebufs(struct drm_device
*dev
, void *data
,
1181 struct drm_file
*file_priv
);
1182 extern int drm_mapbufs(struct drm_device
*dev
, void *data
,
1183 struct drm_file
*file_priv
);
1184 extern int drm_order(unsigned long size
);
1185 extern unsigned long drm_get_resource_start(struct drm_device
*dev
,
1186 unsigned int resource
);
1187 extern unsigned long drm_get_resource_len(struct drm_device
*dev
,
1188 unsigned int resource
);
1190 /* DMA support (drm_dma.h) */
1191 extern int drm_dma_setup(struct drm_device
*dev
);
1192 extern void drm_dma_takedown(struct drm_device
*dev
);
1193 extern void drm_free_buffer(struct drm_device
*dev
, struct drm_buf
* buf
);
1194 extern void drm_core_reclaim_buffers(struct drm_device
*dev
,
1195 struct drm_file
*filp
);
1197 /* IRQ support (drm_irq.h) */
1198 extern int drm_control(struct drm_device
*dev
, void *data
,
1199 struct drm_file
*file_priv
);
1200 extern irqreturn_t
drm_irq_handler(DRM_IRQ_ARGS
);
1201 extern int drm_irq_install(struct drm_device
*dev
);
1202 extern int drm_irq_uninstall(struct drm_device
*dev
);
1203 extern void drm_driver_irq_preinstall(struct drm_device
*dev
);
1204 extern void drm_driver_irq_postinstall(struct drm_device
*dev
);
1205 extern void drm_driver_irq_uninstall(struct drm_device
*dev
);
1207 extern int drm_vblank_init(struct drm_device
*dev
, int num_crtcs
);
1208 extern int drm_wait_vblank(struct drm_device
*dev
, void *data
,
1209 struct drm_file
*filp
);
1210 extern int drm_vblank_wait(struct drm_device
*dev
, unsigned int *vbl_seq
);
1211 extern u32
drm_vblank_count(struct drm_device
*dev
, int crtc
);
1212 extern void drm_handle_vblank(struct drm_device
*dev
, int crtc
);
1213 extern int drm_vblank_get(struct drm_device
*dev
, int crtc
);
1214 extern void drm_vblank_put(struct drm_device
*dev
, int crtc
);
1215 extern void drm_vblank_cleanup(struct drm_device
*dev
);
1216 /* Modesetting support */
1217 extern void drm_vblank_pre_modeset(struct drm_device
*dev
, int crtc
);
1218 extern void drm_vblank_post_modeset(struct drm_device
*dev
, int crtc
);
1219 extern int drm_modeset_ctl(struct drm_device
*dev
, void *data
,
1220 struct drm_file
*file_priv
);
1222 /* AGP/GART support (drm_agpsupport.h) */
1223 extern struct drm_agp_head
*drm_agp_init(struct drm_device
*dev
);
1224 extern int drm_agp_acquire(struct drm_device
*dev
);
1225 extern int drm_agp_acquire_ioctl(struct drm_device
*dev
, void *data
,
1226 struct drm_file
*file_priv
);
1227 extern int drm_agp_release(struct drm_device
*dev
);
1228 extern int drm_agp_release_ioctl(struct drm_device
*dev
, void *data
,
1229 struct drm_file
*file_priv
);
1230 extern int drm_agp_enable(struct drm_device
*dev
, struct drm_agp_mode mode
);
1231 extern int drm_agp_enable_ioctl(struct drm_device
*dev
, void *data
,
1232 struct drm_file
*file_priv
);
1233 extern int drm_agp_info(struct drm_device
*dev
, struct drm_agp_info
*info
);
1234 extern int drm_agp_info_ioctl(struct drm_device
*dev
, void *data
,
1235 struct drm_file
*file_priv
);
1236 extern int drm_agp_alloc(struct drm_device
*dev
, struct drm_agp_buffer
*request
);
1237 extern int drm_agp_alloc_ioctl(struct drm_device
*dev
, void *data
,
1238 struct drm_file
*file_priv
);
1239 extern int drm_agp_free(struct drm_device
*dev
, struct drm_agp_buffer
*request
);
1240 extern int drm_agp_free_ioctl(struct drm_device
*dev
, void *data
,
1241 struct drm_file
*file_priv
);
1242 extern int drm_agp_unbind(struct drm_device
*dev
, struct drm_agp_binding
*request
);
1243 extern int drm_agp_unbind_ioctl(struct drm_device
*dev
, void *data
,
1244 struct drm_file
*file_priv
);
1245 extern int drm_agp_bind(struct drm_device
*dev
, struct drm_agp_binding
*request
);
1246 extern int drm_agp_bind_ioctl(struct drm_device
*dev
, void *data
,
1247 struct drm_file
*file_priv
);
1248 extern DRM_AGP_MEM
*drm_agp_allocate_memory(struct agp_bridge_data
*bridge
, size_t pages
, u32 type
);
1249 extern int drm_agp_free_memory(DRM_AGP_MEM
* handle
);
1250 extern int drm_agp_bind_memory(DRM_AGP_MEM
* handle
, off_t start
);
1251 extern int drm_agp_unbind_memory(DRM_AGP_MEM
* handle
);
1252 extern void drm_agp_chipset_flush(struct drm_device
*dev
);
1254 /* Stub support (drm_stub.h) */
1255 extern int drm_setmaster_ioctl(struct drm_device
*dev
, void *data
,
1256 struct drm_file
*file_priv
);
1257 extern int drm_dropmaster_ioctl(struct drm_device
*dev
, void *data
,
1258 struct drm_file
*file_priv
);
1259 struct drm_master
*drm_master_create(struct drm_minor
*minor
);
1260 extern struct drm_master
*drm_master_get(struct drm_master
*master
);
1261 extern void drm_master_put(struct drm_master
**master
);
1262 extern int drm_get_dev(struct pci_dev
*pdev
, const struct pci_device_id
*ent
,
1263 struct drm_driver
*driver
);
1264 extern int drm_put_dev(struct drm_device
*dev
);
1265 extern int drm_put_minor(struct drm_minor
**minor
);
1266 extern unsigned int drm_debug
;
1268 extern struct class *drm_class
;
1269 extern struct proc_dir_entry
*drm_proc_root
;
1271 extern struct idr drm_minors_idr
;
1273 extern drm_local_map_t
*drm_getsarea(struct drm_device
*dev
);
1275 /* Proc support (drm_proc.h) */
1276 extern int drm_proc_init(struct drm_minor
*minor
, int minor_id
,
1277 struct proc_dir_entry
*root
);
1278 extern int drm_proc_cleanup(struct drm_minor
*minor
, struct proc_dir_entry
*root
);
1280 /* Scatter Gather Support (drm_scatter.h) */
1281 extern void drm_sg_cleanup(struct drm_sg_mem
* entry
);
1282 extern int drm_sg_alloc_ioctl(struct drm_device
*dev
, void *data
,
1283 struct drm_file
*file_priv
);
1284 extern int drm_sg_alloc(struct drm_device
*dev
, struct drm_scatter_gather
* request
);
1285 extern int drm_sg_free(struct drm_device
*dev
, void *data
,
1286 struct drm_file
*file_priv
);
1288 /* ATI PCIGART support (ati_pcigart.h) */
1289 extern int drm_ati_pcigart_init(struct drm_device
*dev
,
1290 struct drm_ati_pcigart_info
* gart_info
);
1291 extern int drm_ati_pcigart_cleanup(struct drm_device
*dev
,
1292 struct drm_ati_pcigart_info
* gart_info
);
1294 extern drm_dma_handle_t
*drm_pci_alloc(struct drm_device
*dev
, size_t size
,
1295 size_t align
, dma_addr_t maxaddr
);
1296 extern void __drm_pci_free(struct drm_device
*dev
, drm_dma_handle_t
* dmah
);
1297 extern void drm_pci_free(struct drm_device
*dev
, drm_dma_handle_t
* dmah
);
1299 /* sysfs support (drm_sysfs.c) */
1300 struct drm_sysfs_class
;
1301 extern struct class *drm_sysfs_create(struct module
*owner
, char *name
);
1302 extern void drm_sysfs_destroy(void);
1303 extern int drm_sysfs_device_add(struct drm_minor
*minor
);
1304 extern void drm_sysfs_hotplug_event(struct drm_device
*dev
);
1305 extern void drm_sysfs_device_remove(struct drm_minor
*minor
);
1306 extern char *drm_get_connector_status_name(enum drm_connector_status status
);
1307 extern int drm_sysfs_connector_add(struct drm_connector
*connector
);
1308 extern void drm_sysfs_connector_remove(struct drm_connector
*connector
);
1311 * Basic memory manager support (drm_mm.c)
1313 extern struct drm_mm_node
*drm_mm_get_block(struct drm_mm_node
* parent
,
1315 unsigned alignment
);
1316 extern void drm_mm_put_block(struct drm_mm_node
* cur
);
1317 extern struct drm_mm_node
*drm_mm_search_free(const struct drm_mm
*mm
, unsigned long size
,
1318 unsigned alignment
, int best_match
);
1319 extern int drm_mm_init(struct drm_mm
*mm
, unsigned long start
, unsigned long size
);
1320 extern void drm_mm_takedown(struct drm_mm
*mm
);
1321 extern int drm_mm_clean(struct drm_mm
*mm
);
1322 extern unsigned long drm_mm_tail_space(struct drm_mm
*mm
);
1323 extern int drm_mm_remove_space_from_tail(struct drm_mm
*mm
, unsigned long size
);
1324 extern int drm_mm_add_space_to_tail(struct drm_mm
*mm
, unsigned long size
);
1326 /* Graphics Execution Manager library functions (drm_gem.c) */
1327 int drm_gem_init(struct drm_device
*dev
);
1328 void drm_gem_destroy(struct drm_device
*dev
);
1329 void drm_gem_object_free(struct kref
*kref
);
1330 struct drm_gem_object
*drm_gem_object_alloc(struct drm_device
*dev
,
1332 void drm_gem_object_handle_free(struct kref
*kref
);
1333 int drm_gem_mmap(struct file
*filp
, struct vm_area_struct
*vma
);
1336 drm_gem_object_reference(struct drm_gem_object
*obj
)
1338 kref_get(&obj
->refcount
);
1342 drm_gem_object_unreference(struct drm_gem_object
*obj
)
1347 kref_put(&obj
->refcount
, drm_gem_object_free
);
1350 int drm_gem_handle_create(struct drm_file
*file_priv
,
1351 struct drm_gem_object
*obj
,
1355 drm_gem_object_handle_reference(struct drm_gem_object
*obj
)
1357 drm_gem_object_reference(obj
);
1358 kref_get(&obj
->handlecount
);
1362 drm_gem_object_handle_unreference(struct drm_gem_object
*obj
)
1368 * Must bump handle count first as this may be the last
1369 * ref, in which case the object would disappear before we
1370 * checked for a name
1372 kref_put(&obj
->handlecount
, drm_gem_object_handle_free
);
1373 drm_gem_object_unreference(obj
);
1376 struct drm_gem_object
*drm_gem_object_lookup(struct drm_device
*dev
,
1377 struct drm_file
*filp
,
1379 int drm_gem_close_ioctl(struct drm_device
*dev
, void *data
,
1380 struct drm_file
*file_priv
);
1381 int drm_gem_flink_ioctl(struct drm_device
*dev
, void *data
,
1382 struct drm_file
*file_priv
);
1383 int drm_gem_open_ioctl(struct drm_device
*dev
, void *data
,
1384 struct drm_file
*file_priv
);
1385 void drm_gem_open(struct drm_device
*dev
, struct drm_file
*file_private
);
1386 void drm_gem_release(struct drm_device
*dev
, struct drm_file
*file_private
);
1388 extern void drm_core_ioremap(struct drm_map
*map
, struct drm_device
*dev
);
1389 extern void drm_core_ioremap_wc(struct drm_map
*map
, struct drm_device
*dev
);
1390 extern void drm_core_ioremapfree(struct drm_map
*map
, struct drm_device
*dev
);
1392 static __inline__
struct drm_map
*drm_core_findmap(struct drm_device
*dev
,
1395 struct drm_map_list
*_entry
;
1396 list_for_each_entry(_entry
, &dev
->maplist
, head
)
1397 if (_entry
->user_token
== token
)
1402 static __inline__
int drm_device_is_agp(struct drm_device
*dev
)
1404 if (dev
->driver
->device_is_agp
!= NULL
) {
1405 int err
= (*dev
->driver
->device_is_agp
) (dev
);
1412 return pci_find_capability(dev
->pdev
, PCI_CAP_ID_AGP
);
1415 static __inline__
int drm_device_is_pcie(struct drm_device
*dev
)
1417 return pci_find_capability(dev
->pdev
, PCI_CAP_ID_EXP
);
1420 static __inline__
void drm_core_dropmap(struct drm_map
*map
)
1424 #ifndef DEBUG_MEMORY
1425 /** Wrapper around kmalloc() */
1426 static __inline__
void *drm_alloc(size_t size
, int area
)
1428 return kmalloc(size
, GFP_KERNEL
);
1431 /** Wrapper around kfree() */
1432 static __inline__
void drm_free(void *pt
, size_t size
, int area
)
1437 /** Wrapper around kcalloc() */
1438 static __inline__
void *drm_calloc(size_t nmemb
, size_t size
, int area
)
1440 return kcalloc(nmemb
, size
, GFP_KERNEL
);
1443 extern void *drm_alloc(size_t size
, int area
);
1444 extern void drm_free(void *pt
, size_t size
, int area
);
1445 extern void *drm_calloc(size_t nmemb
, size_t size
, int area
);
1450 #endif /* __KERNEL__ */