drm/linux: add agp_backend.h
[dragonfly.git] / sys / dev / drm / include / drm / drmP.h
1 /*
2  * Internal Header for the Direct Rendering Manager
3  *
4  * Copyright 1999 Precision Insight, Inc., Cedar Park, Texas.
5  * Copyright 2000 VA Linux Systems, Inc., Sunnyvale, California.
6  * Copyright (c) 2009-2010, Code Aurora Forum.
7  * All rights reserved.
8  *
9  * Author: Rickard E. (Rik) Faith <faith@valinux.com>
10  * Author: Gareth Hughes <gareth@valinux.com>
11  *
12  * Permission is hereby granted, free of charge, to any person obtaining a
13  * copy of this software and associated documentation files (the "Software"),
14  * to deal in the Software without restriction, including without limitation
15  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
16  * and/or sell copies of the Software, and to permit persons to whom the
17  * Software is furnished to do so, subject to the following conditions:
18  *
19  * The above copyright notice and this permission notice (including the next
20  * paragraph) shall be included in all copies or substantial portions of the
21  * Software.
22  *
23  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
24  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
25  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
26  * VA LINUX SYSTEMS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
27  * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
28  * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
29  * OTHER DEALINGS IN THE SOFTWARE.
30  */
31
32 #ifndef _DRM_P_H_
33 #define _DRM_P_H_
34
35 #if defined(_KERNEL) || defined(__KERNEL__)
36
37 #include <sys/param.h>
38 #include <sys/queue.h>
39 #include <sys/malloc.h>
40 #include <sys/kernel.h>
41 #include <sys/ktr.h>
42 #include <sys/module.h>
43 #include <sys/systm.h>
44 #include <sys/device.h>
45 #include <sys/sglist.h>
46 #include <sys/stat.h>
47 #include <sys/priv.h>
48 #include <sys/proc.h>
49 #include <sys/lock.h>
50 #include <sys/spinlock.h>
51 #include <sys/spinlock2.h>
52 #include <sys/fcntl.h>
53 #include <sys/uio.h>
54 #include <sys/filio.h>
55 #include <sys/sysctl.h>
56 #include <sys/bus.h>
57 #include <sys/signalvar.h>
58 #include <sys/poll.h>
59 #include <linux/highmem.h>
60 #include <sys/sbuf.h>
61 #include <sys/taskqueue.h>
62 #include <sys/tree.h>
63 #include <vm/vm.h>
64 #include <vm/pmap.h>
65 #include <vm/vm_extern.h>
66 #include <vm/vm_kern.h>
67 #include <vm/vm_map.h>
68 #include <vm/vm_object.h>
69 #include <vm/vm_page2.h>
70 #include <vm/vm_pager.h>
71 #include <vm/vm_param.h>
72 #include <machine/param.h>
73 #include <machine/pmap.h>
74 #ifdef __x86_64__
75 #include <machine/specialreg.h>
76 #endif
77 #include <machine/sysarch.h>
78 #include <sys/endian.h>
79 #include <sys/mman.h>
80 #include <sys/rman.h>
81 #include <sys/memrange.h>
82 #include <sys/mutex.h>
83
84 #include <linux/agp_backend.h>
85 #include <linux/atomic.h>
86 #include <linux/bug.h>
87 #include <linux/dma-mapping.h>
88 #include <linux/capability.h>
89 #include <linux/err.h>
90 #include <linux/idr.h>
91 #include <linux/pci.h>
92 #include <linux/jiffies.h>
93 #include <linux/kernel.h>
94 #include <linux/fs.h>
95 #include <linux/kref.h>
96 #include <linux/list.h>
97 #include <linux/mm.h>
98 #include <linux/moduleparam.h>
99 #include <linux/mutex.h>
100 #include <linux/slab.h>
101 #include <linux/scatterlist.h>
102 #include <linux/timer.h>
103 #include <asm/io.h>
104 #include <linux/seq_file.h>
105 #include <linux/types.h>
106 #include <linux/vmalloc.h>
107 #include <linux/wait.h>
108 #include <linux/workqueue.h>
109
110 #include <asm/uaccess.h>
111
112 #include <uapi_drm/drm.h>
113 #include <uapi_drm/drm_mode.h>
114
115 #include <drm/drm_agpsupport.h>
116 #include <drm/drm_crtc.h>
117 #include <drm/drm_global.h>
118 #include <drm/drm_hashtab.h>
119 #include <drm/drm_mem_util.h>
120 #include <drm/drm_mm.h>
121 #include <drm/drm_os_linux.h>
122 #include <uapi_drm/drm_sarea.h>
123 #include <drm/drm_vma_manager.h>
124
125 struct drm_file;
126 struct drm_device;
127 struct drm_agp_head;
128 struct drm_local_map;
129 struct drm_device_dma;
130 struct drm_dma_handle;
131 struct drm_gem_object;
132
133 struct device_node;
134 #ifdef CONFIG_VIDEOMODE_HELPERS
135 struct videomode;       /* XXX empty struct in videomode.h ? */
136 #endif
137 struct reservation_object;
138 struct dma_buf_attachment;
139
140 /*
141  * 4 debug categories are defined:
142  *
143  * CORE: Used in the generic drm code: drm_ioctl.c, drm_mm.c, drm_memory.c, ...
144  *       This is the category used by the DRM_DEBUG() macro.
145  *
146  * DRIVER: Used in the vendor specific part of the driver: i915, radeon, ...
147  *         This is the category used by the DRM_DEBUG_DRIVER() macro.
148  *
149  * KMS: used in the modesetting code.
150  *      This is the category used by the DRM_DEBUG_KMS() macro.
151  *
152  * PRIME: used in the prime code.
153  *        This is the category used by the DRM_DEBUG_PRIME() macro.
154  *
155  * ATOMIC: used in the atomic code.
156  *        This is the category used by the DRM_DEBUG_ATOMIC() macro.
157  *
158  *
159  * PID: used as modifier to include PID number in messages.
160  *        This is the category used by the all debug macros.
161  *
162  * FIOCTL: used in failed ioctl debugging.
163  *        This is the category used by the DRM_DEBUG_FIOCTL() macro.
164  *
165  * IOCTL: used in ioctl debugging.
166  *        This is the category used by the DRM_DEBUG_IOCTL() macro.
167  *
168  * VBLANK: used in vblank debugging.
169  *        This is the category used by the DRM_DEBUG_VBLANK() macro.
170  *
171  * Enabling verbose debug messages is done through the drm.debug parameter,
172  * each category being enabled by a bit.
173  *
174  * drm.debug=0x1 will enable CORE messages
175  * drm.debug=0x2 will enable DRIVER messages
176  * drm.debug=0x3 will enable CORE and DRIVER messages
177  * ...
178  * drm.debug=0xf will enable all messages
179  *
180  * An interesting feature is that it's possible to enable verbose logging at
181  * run-time by using hw.drm.debug sysctl variable:
182  *   # sysctl hw.drm.debug=0xfff
183  */
184 #define DRM_UT_CORE             0x01
185 #define DRM_UT_DRIVER           0x02
186 #define DRM_UT_KMS              0x04
187 #define DRM_UT_PRIME            0x08
188 #define DRM_UT_ATOMIC           0x10
189 #define DRM_UT_VBL              0x20
190 /* Extra DragonFly debug categories */
191 #ifdef __DragonFly__
192 #define DRM_UT_RES7             0x40    /* reserved for future expansion */
193 #define DRM_UT_RES8             0x80    /* reserved for future expansion */
194 #define DRM_UT_PID              0x100
195 #define DRM_UT_FIOCTL           0x200
196 #define DRM_UT_IOCTL            0x400
197 #define DRM_UT_VBLANK           0x800
198 #endif
199
200 extern __printflike(2, 3)
201 void drm_ut_debug_printk(const char *function_name,
202                          const char *format, ...);
203 extern __printflike(2, 3)
204 void drm_err(const char *func, const char *format, ...);
205
206 /***********************************************************************/
207 /** \name DRM template customization defaults */
208 /*@{*/
209
210 /* driver capabilities and requirements mask */
211 #define DRIVER_USE_AGP                  0x1
212 #define DRIVER_PCI_DMA                  0x8
213 #define DRIVER_SG                       0x10
214 #define DRIVER_HAVE_DMA                 0x20
215 #define DRIVER_HAVE_IRQ                 0x40
216 #define DRIVER_IRQ_SHARED               0x80
217 #define DRIVER_GEM                      0x1000
218 #define DRIVER_MODESET                  0x2000
219 #define DRIVER_PRIME                    0x4000
220 #define DRIVER_RENDER                   0x8000
221 #define DRIVER_ATOMIC                   0x10000
222 #define DRIVER_KMS_LEGACY_CONTEXT       0x20000
223
224 #define DRM_MAGIC_HASH_ORDER  4  /**< Size of key hash table. Must be power of 2. */
225
226 /***********************************************************************/
227 /** \name Macros to make printk easier */
228 /*@{*/
229
230 /**
231  * Error output.
232  *
233  * \param fmt printf() like format string.
234  * \param arg arguments
235  */
236 #define DRM_ERROR(fmt, ...)                             \
237         drm_err(__func__, fmt, ##__VA_ARGS__)
238
239 /**
240  * Rate limited error output.  Like DRM_ERROR() but won't flood the log.
241  *
242  * \param fmt printf() like format string.
243  * \param arg arguments
244  */
245 #define DRM_ERROR_RATELIMITED(fmt, ...)                         \
246 ({                                                                      \
247         static struct krate krate_derr = { .freq = 1, .count = -16 };   \
248                                                                         \
249         krateprintf(&krate_derr, "error: [" DRM_NAME ":%s] *ERROR* "    \
250             fmt, __func__, ##__VA_ARGS__);                              \
251 })
252
253 #define DRM_INFO(fmt, ...)                              \
254         printk(KERN_INFO "[" DRM_NAME "] " fmt, ##__VA_ARGS__)
255
256 #define DRM_INFO_ONCE(fmt, ...)                         \
257         printk_once(KERN_INFO "[" DRM_NAME "] " fmt, ##__VA_ARGS__)
258
259 /**
260  * Debug output.
261  *
262  * \param fmt printf() like format string.
263  * \param arg arguments
264  */
265 #define DRM_DEBUG(fmt, args...)                                         \
266         do {                                                            \
267                 if (unlikely(drm_debug & DRM_UT_CORE))                  \
268                         drm_ut_debug_printk(__func__, fmt, ##args);     \
269         } while (0)
270
271 #define DRM_DEBUG_DRIVER(fmt, args...)                                  \
272         do {                                                            \
273                 if (unlikely(drm_debug & DRM_UT_DRIVER))                \
274                         drm_ut_debug_printk(__func__, fmt, ##args);     \
275         } while (0)
276 #define DRM_DEBUG_KMS(fmt, args...)                                     \
277         do {                                                            \
278                 if (unlikely(drm_debug & DRM_UT_KMS))                   \
279                         drm_ut_debug_printk(__func__, fmt, ##args);     \
280         } while (0)
281 #define DRM_DEBUG_PRIME(fmt, args...)                                   \
282         do {                                                            \
283                 if (unlikely(drm_debug & DRM_UT_PRIME))                 \
284                         drm_ut_debug_printk(__func__, fmt, ##args);     \
285         } while (0)
286 #define DRM_DEBUG_ATOMIC(fmt, args...)                                  \
287         do {                                                            \
288                 if (unlikely(drm_debug & DRM_UT_ATOMIC))                \
289                         drm_ut_debug_printk(__func__, fmt, ##args);     \
290         } while (0)
291
292 #ifdef __DragonFly__
293 #define DRM_DEBUG_FIOCTL(fmt, args...)                                  \
294         do {                                                            \
295                 if (unlikely(drm_debug & DRM_UT_FIOCTL))                \
296                         drm_ut_debug_printk(__func__, fmt, ##args);     \
297         } while (0)
298 #define DRM_DEBUG_IOCTL(fmt, args...)                                   \
299         do {                                                            \
300                 if (unlikely(drm_debug & DRM_UT_IOCTL))                 \
301                         drm_ut_debug_printk(__func__, fmt, ##args);     \
302         } while (0)
303 #define DRM_DEBUG_VBLANK(fmt, args...)                                  \
304         do {                                                            \
305                 if (unlikely(drm_debug & DRM_UT_VBLANK))                \
306                         drm_ut_debug_printk(__func__, fmt, ##args);     \
307         } while (0)
308 #define DRM_DEBUG_VBL(fmt, args...)                                     \
309         do {                                                            \
310                 if (unlikely(drm_debug & DRM_UT_VBL))           \
311                         drm_ut_debug_printk(__func__, fmt, ##args);     \
312         } while (0)
313 #endif
314
315 /*@}*/
316
317 /***********************************************************************/
318 /** \name Internal types and structures */
319 /*@{*/
320
321 SYSCTL_DECL(_hw_drm);
322
323 #define DRM_MAX(a,b) ((a)>(b)?(a):(b))
324
325 #define DRM_IF_VERSION(maj, min) (maj << 16 | min)
326
327 #define DRM_DEV_MODE    (S_IRUSR|S_IWUSR|S_IRGRP|S_IWGRP)
328 #define DRM_DEV_UID     UID_ROOT
329 #define DRM_DEV_GID     GID_WHEEL
330
331 #define DRM_CURPROC             curthread
332 #define DRM_STRUCTPROC          struct thread
333 #define DRM_LOCK(dev)           lockmgr(&(dev)->struct_mutex, LK_EXCLUSIVE)
334 #define DRM_UNLOCK(dev)         lockmgr(&(dev)->struct_mutex, LK_RELEASE)
335 #define DRM_LOCK_SLEEP(dev, chan, flags, msg, timeout)                  \
336     (lksleep((chan), &(dev)->struct_mutex, (flags), (msg), (timeout)))
337 #if defined(INVARIANTS)
338 #define DRM_LOCK_ASSERT(dev)    KKASSERT(lockstatus(&(dev)->struct_mutex, curthread) != 0);
339 #define DRM_UNLOCK_ASSERT(dev)  KKASSERT(lockstatus(&(dev)->struct_mutex, curthread) == 0);
340 #else
341 #define DRM_LOCK_ASSERT(d)
342 #define DRM_UNLOCK_ASSERT(d)
343 #endif
344
345 #define DRM_SYSCTL_HANDLER_ARGS (SYSCTL_HANDLER_ARGS)
346
347 #define drm_get_device_from_kdev(_kdev) (_kdev->si_drv1)
348
349 #define DRM_MTRR_WC             MDF_WRITECOMBINE
350
351 int vm_phys_fictitious_reg_range(vm_paddr_t start, vm_paddr_t end,
352     vm_memattr_t memattr);
353 void vm_phys_fictitious_unreg_range(vm_paddr_t start, vm_paddr_t end);
354 vm_page_t vm_phys_fictitious_to_vm_page(vm_paddr_t pa);
355
356 /* drm_memory.c */
357 int     drm_mtrr_add(unsigned long offset, size_t size, int flags);
358 int     drm_mtrr_del(int handle, unsigned long offset, size_t size, int flags);
359
360 typedef struct drm_pci_id_list
361 {
362         int vendor;
363         int device;
364         long driver_private;
365         char *name;
366 } drm_pci_id_list_t;
367
368 /**
369  * Ioctl function type.
370  *
371  * \param inode device inode.
372  * \param file_priv DRM file private pointer.
373  * \param cmd command.
374  * \param arg argument.
375  */
376 typedef int drm_ioctl_t(struct drm_device *dev, void *data,
377                         struct drm_file *file_priv);
378
379 typedef int drm_ioctl_compat_t(struct file *filp, unsigned int cmd,
380                                unsigned long arg);
381
382 #define DRM_IOCTL_NR(n)                ((n) & 0xff)
383
384 #define DRM_AUTH        0x1
385 #define DRM_MASTER      0x2
386 #define DRM_ROOT_ONLY   0x4
387 #define DRM_CONTROL_ALLOW 0x8
388 #define DRM_UNLOCKED    0x10
389 #define DRM_RENDER_ALLOW 0x20
390
391 struct drm_ioctl_desc {
392         unsigned int cmd;
393         int flags;
394         drm_ioctl_t *func;
395         unsigned int cmd_drv;
396         const char *name;
397 };
398
399 /**
400  * Creates a driver or general drm_ioctl_desc array entry for the given
401  * ioctl, for use by drm_ioctl().
402  */
403
404 #define DRM_IOCTL_DEF_DRV(ioctl, _func, _flags)                         \
405         [DRM_IOCTL_NR(DRM_##ioctl)] = {                                 \
406                 .cmd = DRM_##ioctl,                                     \
407                 .func = _func,                                          \
408                 .flags = _flags,                                        \
409                 .cmd_drv = DRM_IOCTL_##ioctl,                           \
410                 .name = #ioctl                                          \
411         }
412
413 typedef struct drm_magic_entry {
414         struct list_head head;
415         struct drm_hash_item hash_item;
416         struct drm_file        *priv;
417         struct drm_magic_entry *next;
418 } drm_magic_entry_t;
419
420 /* Event queued up for userspace to read */
421 struct drm_pending_event {
422         struct drm_event *event;
423         struct list_head link;
424         struct drm_file *file_priv;
425         pid_t pid; /* pid of requester, no guarantee it's valid by the time
426                       we deliver the event, for tracing only */
427         void (*destroy)(struct drm_pending_event *event);
428 };
429
430 /* initial implementaton using a linked list - todo hashtab */
431 struct drm_prime_file_private {
432         struct list_head head;
433 #ifdef DUMBBELL_WIP
434         struct mutex lock;
435 #endif /* DUMBBELL_WIP */
436 };
437
438 /** File private data */
439 struct drm_file {
440         int authenticated;
441         struct drm_device *dev;
442         int               master;
443
444         /* true when the client has asked us to expose stereo 3D mode flags */
445         bool stereo_allowed;
446         /*
447          * true if client understands CRTC primary planes and cursor planes
448          * in the plane list
449          */
450         unsigned universal_planes:1;
451         /* true if client understands atomic properties */
452         unsigned atomic:1;
453
454         pid_t             pid;
455         uid_t             uid;
456         drm_magic_t       magic;
457         unsigned long     ioctl_count;
458         struct list_head lhead;
459         struct kqinfo     dkq;
460
461         /** Mapping of mm object handles to object pointers. */
462         struct idr object_idr;
463         /** Lock for synchronization of access to object_idr. */
464         struct lock table_lock;
465
466         void *driver_priv;
467
468         int               is_master;
469         struct drm_master *masterp;
470
471         /**
472          * fbs - List of framebuffers associated with this file.
473          *
474          * Protected by fbs_lock. Note that the fbs list holds a reference on
475          * the fb object to prevent it from untimely disappearing.
476          */
477         struct list_head fbs;
478         struct lock fbs_lock;
479
480         /** User-created blob properties; this retains a reference on the
481          *  property. */
482         struct list_head blobs;
483
484         wait_queue_head_t event_wait;
485         struct list_head pending_event_list;
486         struct list_head event_list;
487         int event_space;
488
489         struct lock event_read_lock;
490
491         struct drm_prime_file_private prime;
492 };
493
494 /**
495  * Lock data.
496  */
497 struct drm_lock_data {
498         struct drm_hw_lock *hw_lock;    /**< Hardware lock */
499         /** Private of lock holder's file (NULL=kernel) */
500         struct drm_file *file_priv;
501         wait_queue_head_t lock_queue;   /**< Queue of blocked processes */
502         unsigned long lock_time;        /**< Time of last lock in jiffies */
503 };
504
505 /**
506  * GEM specific mm private for tracking GEM objects
507  */
508 struct drm_gem_mm {
509         struct drm_vma_offset_manager vma_manager;
510         struct drm_mm offset_manager;   /**< Offset mgmt for buffer objects */
511         struct drm_open_hash offset_hash; /**< User token hash table for maps */
512         struct unrhdr *idxunr;
513 };
514
515 /**
516  * struct drm_master - drm master structure
517  *
518  * @refcount: Refcount for this master object.
519  * @minor: Link back to minor char device we are master for. Immutable.
520  * @unique: Unique identifier: e.g. busid. Protected by drm_global_mutex.
521  * @unique_len: Length of unique field. Protected by drm_global_mutex.
522  * @unique_size: Amount allocated. Protected by drm_global_mutex.
523  * @magiclist: Hash of used authentication tokens. Protected by struct_mutex.
524  * @magicfree: List of used authentication tokens. Protected by struct_mutex.
525  * @lock: DRI lock information.
526  * @driver_priv: Pointer to driver-private information.
527  */
528 struct drm_master {
529         struct kref refcount;           /* refcount for this master */
530         struct list_head head;          /**< each minor contains a list of masters */
531         struct drm_minor *minor;        /**< link back to minor we are a master for */
532         char *unique;                   /**< Unique identifier: e.g., busid */
533         int unique_len;                 /**< Length of unique field */
534         int unique_size;                /**< amount allocated */
535         int blocked;                    /**< Blocked due to VC switch? */
536         struct drm_open_hash magiclist;
537         struct list_head magicfree;
538         struct drm_lock_data lock;
539         void *driver_priv;
540 };
541
542 /* Size of ringbuffer for vblank timestamps. Just double-buffer
543  * in initial implementation.
544  */
545 #define DRM_VBLANKTIME_RBSIZE 2
546
547 /* Flags and return codes for get_vblank_timestamp() driver function. */
548 #define DRM_CALLED_FROM_VBLIRQ 1
549 #define DRM_VBLANKTIME_SCANOUTPOS_METHOD (1 << 0)
550 #define DRM_VBLANKTIME_IN_VBLANK         (1 << 1)
551
552 /* get_scanout_position() return flags */
553 #define DRM_SCANOUTPOS_VALID        (1 << 0)
554 #define DRM_SCANOUTPOS_IN_VBLANK    (1 << 1)
555 #define DRM_SCANOUTPOS_ACCURATE     (1 << 2)
556
557 /**
558  * DRM driver structure. This structure represent the common code for
559  * a family of cards. There will one drm_device for each card present
560  * in this family
561  */
562 struct drm_driver {
563         int (*load) (struct drm_device *, unsigned long flags);
564         int (*use_msi) (struct drm_device *, unsigned long flags);
565         int (*firstopen) (struct drm_device *);
566         int (*open) (struct drm_device *, struct drm_file *);
567         void (*preclose) (struct drm_device *, struct drm_file *file_priv);
568         void (*postclose) (struct drm_device *, struct drm_file *);
569         void (*lastclose) (struct drm_device *);
570         int (*unload) (struct drm_device *);
571         void (*reclaim_buffers_locked) (struct drm_device *,
572                                         struct drm_file *file_priv);
573         int (*dma_ioctl) (struct drm_device *dev, void *data, struct drm_file *file_priv);
574         int (*dma_quiescent) (struct drm_device *);
575         int (*context_ctor) (struct drm_device *dev, int context);
576         int (*context_dtor) (struct drm_device *dev, int context);
577
578         /**
579          * get_vblank_counter - get raw hardware vblank counter
580          * @dev: DRM device
581          * @pipe: counter to fetch
582          *
583          * Driver callback for fetching a raw hardware vblank counter for @crtc.
584          * If a device doesn't have a hardware counter, the driver can simply
585          * return the value of drm_vblank_count. The DRM core will account for
586          * missed vblank events while interrupts where disabled based on system
587          * timestamps.
588          *
589          * Wraparound handling and loss of events due to modesetting is dealt
590          * with in the DRM core code.
591          *
592          * RETURNS
593          * Raw vblank counter value.
594          */
595         u32 (*get_vblank_counter) (struct drm_device *dev, unsigned int pipe);
596
597         /**
598          * enable_vblank - enable vblank interrupt events
599          * @dev: DRM device
600          * @pipe: which irq to enable
601          *
602          * Enable vblank interrupts for @crtc.  If the device doesn't have
603          * a hardware vblank counter, this routine should be a no-op, since
604          * interrupts will have to stay on to keep the count accurate.
605          *
606          * RETURNS
607          * Zero on success, appropriate errno if the given @crtc's vblank
608          * interrupt cannot be enabled.
609          */
610         int (*enable_vblank) (struct drm_device *dev, unsigned int pipe);
611
612         /**
613          * disable_vblank - disable vblank interrupt events
614          * @dev: DRM device
615          * @pipe: which irq to enable
616          *
617          * Disable vblank interrupts for @crtc.  If the device doesn't have
618          * a hardware vblank counter, this routine should be a no-op, since
619          * interrupts will have to stay on to keep the count accurate.
620          */
621         void (*disable_vblank) (struct drm_device *dev, unsigned int pipe);
622
623         /**
624          * Called by \c drm_device_is_agp.  Typically used to determine if a
625          * card is really attached to AGP or not.
626          *
627          * \param dev  DRM device handle
628          *
629          * \returns
630          * One of three values is returned depending on whether or not the
631          * card is absolutely \b not AGP (return of 0), absolutely \b is AGP
632          * (return of 1), or may or may not be AGP (return of 2).
633          */
634         int (*device_is_agp) (struct drm_device *dev);
635
636         /**
637          * Called by vblank timestamping code.
638          *
639          * Return the current display scanout position from a crtc, and an
640          * optional accurate ktime_get timestamp of when position was measured.
641          *
642          * \param dev  DRM device.
643          * \param pipe Id of the crtc to query.
644          * \param flags Flags from the caller (DRM_CALLED_FROM_VBLIRQ or 0).
645          * \param *vpos Target location for current vertical scanout position.
646          * \param *hpos Target location for current horizontal scanout position.
647          * \param *stime Target location for timestamp taken immediately before
648          *               scanout position query. Can be NULL to skip timestamp.
649          * \param *etime Target location for timestamp taken immediately after
650          *               scanout position query. Can be NULL to skip timestamp.
651          *
652          * Returns vpos as a positive number while in active scanout area.
653          * Returns vpos as a negative number inside vblank, counting the number
654          * of scanlines to go until end of vblank, e.g., -1 means "one scanline
655          * until start of active scanout / end of vblank."
656          *
657          * \return Flags, or'ed together as follows:
658          *
659          * DRM_SCANOUTPOS_VALID = Query successful.
660          * DRM_SCANOUTPOS_INVBL = Inside vblank.
661          * DRM_SCANOUTPOS_ACCURATE = Returned position is accurate. A lack of
662          * this flag means that returned position may be offset by a constant
663          * but unknown small number of scanlines wrt. real scanout position.
664          *
665          */
666         int (*get_scanout_position) (struct drm_device *dev, unsigned int pipe,
667                                      unsigned int flags, int *vpos, int *hpos,
668                                      ktime_t *stime, ktime_t *etime,
669                                      const struct drm_display_mode *mode);
670
671         /**
672          * Called by \c drm_get_last_vbltimestamp. Should return a precise
673          * timestamp when the most recent VBLANK interval ended or will end.
674          *
675          * Specifically, the timestamp in @vblank_time should correspond as
676          * closely as possible to the time when the first video scanline of
677          * the video frame after the end of VBLANK will start scanning out,
678          * the time immediately after end of the VBLANK interval. If the
679          * @crtc is currently inside VBLANK, this will be a time in the future.
680          * If the @crtc is currently scanning out a frame, this will be the
681          * past start time of the current scanout. This is meant to adhere
682          * to the OpenML OML_sync_control extension specification.
683          *
684          * \param dev dev DRM device handle.
685          * \param pipe crtc for which timestamp should be returned.
686          * \param *max_error Maximum allowable timestamp error in nanoseconds.
687          *                   Implementation should strive to provide timestamp
688          *                   with an error of at most *max_error nanoseconds.
689          *                   Returns true upper bound on error for timestamp.
690          * \param *vblank_time Target location for returned vblank timestamp.
691          * \param flags 0 = Defaults, no special treatment needed.
692          * \param       DRM_CALLED_FROM_VBLIRQ = Function is called from vblank
693          *              irq handler. Some drivers need to apply some workarounds
694          *              for gpu-specific vblank irq quirks if flag is set.
695          *
696          * \returns
697          * Zero if timestamping isn't supported in current display mode or a
698          * negative number on failure. A positive status code on success,
699          * which describes how the vblank_time timestamp was computed.
700          */
701         int (*get_vblank_timestamp) (struct drm_device *dev, unsigned int pipe,
702                                      int *max_error,
703                                      struct timeval *vblank_time,
704                                      unsigned flags);
705
706         /* these have to be filled in */
707
708         irqreturn_t(*irq_handler) (int irq, void *arg);
709         void (*irq_preinstall) (struct drm_device *dev);
710         int (*irq_postinstall) (struct drm_device *dev);
711         void (*irq_uninstall) (struct drm_device *dev);
712
713         /**
714          * Driver-specific constructor for drm_gem_objects, to set up
715          * obj->driver_private.
716          *
717          * Returns 0 on success.
718          */
719         void (*gem_free_object) (struct drm_gem_object *obj);
720         int (*gem_open_object) (struct drm_gem_object *, struct drm_file *);
721         void (*gem_close_object) (struct drm_gem_object *, struct drm_file *);
722
723         int (*sysctl_init) (struct drm_device *dev,
724                     struct sysctl_ctx_list *ctx, struct sysctl_oid *top);
725         void (*sysctl_cleanup) (struct drm_device *dev);
726
727         drm_pci_id_list_t *id_entry;    /* PCI ID, name, and chipset private */
728
729         /* dumb alloc support */
730         int (*dumb_create)(struct drm_file *file_priv,
731                            struct drm_device *dev,
732                            struct drm_mode_create_dumb *args);
733         int (*dumb_map_offset)(struct drm_file *file_priv,
734                                struct drm_device *dev, uint32_t handle,
735                                uint64_t *offset);
736         int (*dumb_destroy)(struct drm_file *file_priv,
737                             struct drm_device *dev,
738                             uint32_t handle);
739
740         /* Driver private ops for this object */
741         struct cdev_pager_ops *gem_pager_ops;
742
743         int major;
744         int minor;
745         int patchlevel;
746         const char *name;               /* Simple driver name              */
747         const char *desc;               /* Longer driver name              */
748         const char *date;               /* Date of last major changes.     */
749
750         u32 driver_features;
751         int dev_priv_size;
752         const struct drm_ioctl_desc *ioctls;
753         int num_ioctls;
754 };
755
756 /**
757  * Info file list entry. This structure represents a debugfs or proc file to
758  * be created by the drm core
759  */
760 struct drm_info_list {
761         const char *name; /** file name */
762         int (*show)(struct seq_file*, void*); /** show callback */
763         u32 driver_features; /**< Required driver features for this entry */
764         void *data;
765 };
766
767 /**
768  * debugfs node structure. This structure represents a debugfs file.
769  */
770 struct drm_info_node {
771         struct list_head list;
772         struct drm_minor *minor;
773         const struct drm_info_list *info_ent;
774         struct dentry *dent;
775 };
776
777 /**
778  * DRM minor structure. This structure represents a drm minor number.
779  */
780 struct drm_minor {
781         int index;                      /**< Minor device number */
782         int type;                       /**< Control or render */
783         struct device *kdev;            /**< Linux device */
784         struct drm_device *dev;
785
786         /* currently active master for this node. Protected by master_mutex */
787         struct drm_master *master;
788 };
789
790 struct drm_pending_vblank_event {
791         struct drm_pending_event base;
792         unsigned int pipe;
793         struct drm_event_vblank event;
794 };
795
796 struct drm_vblank_crtc {
797         struct drm_device *dev;         /* pointer to the drm_device */
798         wait_queue_head_t queue;        /**< VBLANK wait queue */
799         struct timer_list disable_timer;                /* delayed disable timer */
800
801         /* vblank counter, protected by dev->vblank_time_lock for writes */
802         u32 count;
803         /* vblank timestamps, protected by dev->vblank_time_lock for writes */
804         struct timeval time[DRM_VBLANKTIME_RBSIZE];
805
806         atomic_t refcount;              /* number of users of vblank interruptsper crtc */
807         u32 last;                       /* protected by dev->vbl_lock, used */
808                                         /* for wraparound handling */
809         u32 last_wait;                  /* Last vblank seqno waited per CRTC */
810         unsigned int inmodeset;         /* Display driver is setting mode */
811         unsigned int pipe;              /* crtc index */
812         int framedur_ns;                /* frame/field duration in ns */
813         int linedur_ns;                 /* line duration in ns */
814         int pixeldur_ns;                /* pixel duration in ns */
815         bool enabled;                   /* so we don't call enable more than
816                                            once per disable */
817 };
818
819 struct drm_sysctl_info {
820         struct sysctl_ctx_list ctx;
821         char   name[2];
822 };
823
824 /* Length for the array of resource pointers for drm_get_resource_*. */
825 #define DRM_MAX_PCI_RESOURCE    6
826
827 /**
828  * DRM device structure. This structure represent a complete card that
829  * may contain multiple heads.
830  */
831 struct drm_device {
832         drm_pci_id_list_t *id_entry;    /* PCI ID, name, and chipset private */
833
834         char              *unique;      /* Unique identifier: e.g., busid  */
835         int               unique_len;   /* Length of unique field          */
836         struct cdev       *devnode;     /* Device number for mknod         */
837         int               if_version;   /* Highest interface version set */
838
839         int               flags;        /* Flags to open(2)                */
840
841                                 /* Locks */
842         struct spinlock   dma_lock;     /* protects dev->dma */
843         struct lwkt_serialize irq_lock; /* protects irq condition checks */
844         struct lock       dev_lock;     /* protects everything else */
845
846         /** \name Locks */
847         /*@{ */
848         struct lock struct_mutex;       /**< For others */
849         struct lock master_mutex;       /**< For drm_minor::master */
850         /*@} */
851
852         /** \name Usage Counters */
853         /*@{ */
854         int open_count;                 /**< Outstanding files open, protected by drm_global_mutex. */
855         struct spinlock buf_lock;       /**< For drm_device::buf_use and a few other things. */
856         int buf_use;                    /**< Buffers in use -- cannot alloc */
857         atomic_t buf_alloc;             /**< Buffer allocation in progress */
858         /*@} */
859
860
861         /** \name Performance counters */
862         /*@{ */
863         unsigned long     counters;
864         enum drm_stat_type      types[15];
865         atomic_t          counts[15];
866         /*@} */
867
868                                 /* Authentication */
869         struct drm_open_hash magiclist; /**< magic hash table */
870         struct list_head magicfree;
871
872         struct list_head filelist;
873
874         /** \name Memory management */
875         /*@{ */
876         struct list_head maplist;       /**< Linked list of regions */
877         int map_count;                  /**< Number of mappable regions */
878         struct drm_open_hash map_hash;  /**< User token hash table for maps */
879
880         /** \name Context handle management */
881         /*@{ */
882         struct list_head ctxlist;       /**< Linked list of context handles */
883         int ctx_count;                  /**< Number of context handles */
884         struct lock ctxlist_mutex;      /**< For ctxlist */
885
886         struct idr ctx_idr;
887
888         /*@} */
889
890         struct drm_lock_data lock;      /* Information on hardware lock    */
891
892         /** \name DMA support */
893         /*@{ */
894         struct drm_device_dma *dma;             /**< Optional pointer for DMA support */
895         /*@} */
896
897         /* Storage of resource pointers for drm_get_resource_* */
898         struct resource   *pcir[DRM_MAX_PCI_RESOURCE];
899         int               pcirid[DRM_MAX_PCI_RESOURCE];
900
901         int               pci_domain;
902         int               pci_bus;
903         int               pci_slot;
904         int               pci_func;
905
906         /** \name Context support */
907         /*@{ */
908
909         __volatile__ long context_flag; /**< Context swapping flag */
910         __volatile__ long interrupt_flag; /**< Interruption handler flag */
911         __volatile__ long dma_flag;     /**< DMA dispatch flag */
912         wait_queue_head_t context_wait; /**< Processes waiting on ctx switch */
913         int last_checked;               /**< Last context checked for DMA */
914         int last_context;               /**< Last current context */
915         unsigned long last_switch;      /**< jiffies at last context switch */
916         /*@} */
917
918         /** \name VBLANK IRQ support */
919         /*@{ */
920         int irq_enabled;                /**< True if irq handler is enabled */
921         int irq;                        /* Interrupt used by board */
922
923         /*
924          * If true, vblank interrupt will be disabled immediately when the
925          * refcount drops to zero, as opposed to via the vblank disable
926          * timer.
927          * This can be set to true it the hardware has a working vblank
928          * counter and the driver uses drm_vblank_on() and drm_vblank_off()
929          * appropriately.
930          */
931         bool vblank_disable_immediate;
932
933         /* array of size num_crtcs */
934         struct drm_vblank_crtc *vblank;
935
936         struct lock vblank_time_lock;    /**< Protects vblank count and time updates during vblank enable/disable */
937         struct lock vbl_lock;
938         struct timer_list vblank_disable_timer;
939
940         u32 max_vblank_count;           /**< size of vblank counter register */
941
942         /**
943          * List of events
944          */
945         struct list_head vblank_event_list;
946         struct lock event_lock;
947
948         /*@} */
949
950         struct sigio      *buf_sigio;   /* Processes waiting for SIGIO     */
951
952                                 /* Sysctl support */
953         struct drm_sysctl_info *sysctl;
954
955
956         struct drm_sg_mem *sg;  /**< Scatter gather memory */
957         unsigned int num_crtcs;                  /**< Number of CRTCs on this device */
958
959         unsigned long     *ctx_bitmap;
960         void              *dev_private;
961
962         void              *drm_ttm_bdev;
963
964         /*@} */
965
966         struct {
967                 int context;
968                 struct drm_hw_lock *lock;
969         } sigdata;
970
971         struct drm_agp_head *agp;       /**< AGP data */
972
973         struct device *dev;             /**< Device structure */
974         struct pci_dev *pdev;           /**< PCI device structure */
975
976         struct drm_driver *driver;
977         struct drm_local_map *agp_buffer_map;
978         unsigned int agp_buffer_token;
979         struct drm_minor *control;              /**< Control node for card */
980         struct drm_minor *primary;              /**< render type primary screen head */
981
982         struct drm_mode_config mode_config;     /**< Current mode config */
983
984         /** \name GEM information */
985         /*@{ */
986         struct lock object_name_lock;
987         struct idr object_name_idr;
988         /*@} */
989         void             *mm_private;
990
991         void *sysctl_private;
992         char busid_str[128];
993         int modesetting;
994
995         int switch_power_state;
996
997 #ifdef __DragonFly__
998         atomic_t unplugged; /* device has been unplugged or gone away */
999 #endif  /* __DragonFly__ */
1000 };
1001
1002 #define DRM_SWITCH_POWER_ON 0
1003 #define DRM_SWITCH_POWER_OFF 1
1004 #define DRM_SWITCH_POWER_CHANGING 2
1005 #define DRM_SWITCH_POWER_DYNAMIC_OFF 3
1006
1007 static __inline__ int drm_core_check_feature(struct drm_device *dev,
1008                                              int feature)
1009 {
1010         return ((dev->driver->driver_features & feature) ? 1 : 0);
1011 }
1012
1013 static inline void drm_device_set_unplugged(struct drm_device *dev)
1014 {
1015         smp_wmb();
1016         atomic_set(&dev->unplugged, 1);
1017 }
1018
1019 static inline int drm_device_is_unplugged(struct drm_device *dev)
1020 {
1021         int ret = atomic_read(&dev->unplugged);
1022         smp_rmb();
1023         return ret;
1024 }
1025
1026 static inline bool drm_is_primary_client(const struct drm_file *file_priv)
1027 {
1028         return 0 /* file_priv->minor->type == DRM_MINOR_LEGACY */;
1029 }
1030
1031 /**
1032  * drm_is_master() - Check whether a DRM open-file is DRM-Master
1033  * @file: DRM open-file context
1034  *
1035  * This checks whether a DRM open-file context is owner of the master context
1036  * attached to it. If a file owns a master context, it's called DRM-Master.
1037  * Per DRM device, only one such file can be DRM-Master at a time.
1038  *
1039  * Returns: True if the file is DRM-Master, otherwise false.
1040  */
1041 static inline bool drm_is_master(const struct drm_file *file)
1042 {
1043 #if 0
1044         return file->master && file->master == file->minor->master;
1045 #else
1046         return true;
1047 #endif
1048 }
1049
1050 /******************************************************************/
1051 /** \name Internal function definitions */
1052 /*@{*/
1053
1054                                 /* Driver support (drm_drv.h) */
1055 extern int drm_ioctl_permit(u32 flags, struct drm_file *file_priv);
1056 int     drm_probe(device_t kdev, drm_pci_id_list_t *idlist);
1057 int     drm_attach(device_t kdev, drm_pci_id_list_t *idlist);
1058 int     drm_create_cdevs(device_t kdev);
1059 d_ioctl_t drm_ioctl;
1060 extern bool drm_ioctl_flags(unsigned int nr, unsigned int *flags);
1061
1062                                 /* Device support (drm_fops.h) */
1063 d_open_t drm_open;
1064 d_close_t drm_close;
1065 d_read_t drm_read;
1066 d_kqfilter_t drm_kqfilter;
1067 int drm_release(device_t kdev);
1068
1069 d_mmap_t drm_mmap;
1070 d_mmap_single_t drm_mmap_single;
1071
1072 void drm_cdevpriv_dtor(void *cd);
1073
1074 int drm_add_busid_modesetting(struct drm_device *dev,
1075     struct sysctl_ctx_list *ctx, struct sysctl_oid *top);
1076
1077 /* File operations helpers (drm_fops.c) */
1078 extern int              drm_open_helper(struct cdev *kdev, int flags, int fmt,
1079                                          DRM_STRUCTPROC *p,
1080                                         struct drm_device *dev,
1081                                         struct file *fp);
1082 int drm_event_reserve_init_locked(struct drm_device *dev,
1083                                   struct drm_file *file_priv,
1084                                   struct drm_pending_event *p,
1085                                   struct drm_event *e);
1086 int drm_event_reserve_init(struct drm_device *dev,
1087                            struct drm_file *file_priv,
1088                            struct drm_pending_event *p,
1089                            struct drm_event *e);
1090 void drm_event_cancel_free(struct drm_device *dev,
1091                            struct drm_pending_event *p);
1092 void drm_send_event_locked(struct drm_device *dev, struct drm_pending_event *e);
1093 void drm_send_event(struct drm_device *dev, struct drm_pending_event *e);
1094
1095 /* Misc. IOCTL support (drm_ioctl.c) */
1096 int drm_noop(struct drm_device *dev, void *data,
1097              struct drm_file *file_priv);
1098 int drm_invalid_op(struct drm_device *dev, void *data,
1099                    struct drm_file *file_priv);
1100
1101 /* Cache management (drm_cache.c) */
1102 void drm_clflush_pages(struct page *pages[], unsigned long num_pages);
1103 void drm_clflush_sg(struct sg_table *st);
1104 void drm_clflush_virt_range(void *addr, unsigned long length);
1105
1106 /*
1107  * These are exported to drivers so that they can implement fencing using
1108  * DMA quiscent + idle. DMA quiescent usually requires the hardware lock.
1109  */
1110
1111 unsigned long drm_get_resource_start(struct drm_device *dev,
1112                                      unsigned int resource);
1113 unsigned long drm_get_resource_len(struct drm_device *dev,
1114                                    unsigned int resource);
1115
1116                                 /* IRQ support (drm_irq.h) */
1117 extern int drm_irq_install(struct drm_device *dev, int irq);
1118 extern int drm_irq_uninstall(struct drm_device *dev);
1119
1120 extern int drm_vblank_init(struct drm_device *dev, unsigned int num_crtcs);
1121 extern int drm_wait_vblank(struct drm_device *dev, void *data,
1122                            struct drm_file *filp);
1123 extern u32 drm_vblank_count(struct drm_device *dev, unsigned int pipe);
1124 extern u32 drm_crtc_vblank_count(struct drm_crtc *crtc);
1125 extern u32 drm_vblank_count_and_time(struct drm_device *dev, unsigned int pipe,
1126                                      struct timeval *vblanktime);
1127 extern u32 drm_crtc_vblank_count_and_time(struct drm_crtc *crtc,
1128                                           struct timeval *vblanktime);
1129 extern void drm_send_vblank_event(struct drm_device *dev, unsigned int pipe,
1130                                   struct drm_pending_vblank_event *e);
1131 extern void drm_crtc_send_vblank_event(struct drm_crtc *crtc,
1132                                        struct drm_pending_vblank_event *e);
1133 extern void drm_arm_vblank_event(struct drm_device *dev, unsigned int pipe,
1134                                  struct drm_pending_vblank_event *e);
1135 extern void drm_crtc_arm_vblank_event(struct drm_crtc *crtc,
1136                                       struct drm_pending_vblank_event *e);
1137 extern bool drm_handle_vblank(struct drm_device *dev, unsigned int pipe);
1138 extern bool drm_crtc_handle_vblank(struct drm_crtc *crtc);
1139 extern int drm_vblank_get(struct drm_device *dev, unsigned int pipe);
1140 extern void drm_vblank_put(struct drm_device *dev, unsigned int pipe);
1141 extern int drm_crtc_vblank_get(struct drm_crtc *crtc);
1142 extern void drm_crtc_vblank_put(struct drm_crtc *crtc);
1143 extern void drm_wait_one_vblank(struct drm_device *dev, unsigned int pipe);
1144 extern void drm_crtc_wait_one_vblank(struct drm_crtc *crtc);
1145 extern void drm_vblank_off(struct drm_device *dev, unsigned int pipe);
1146 extern void drm_vblank_on(struct drm_device *dev, unsigned int pipe);
1147 extern void drm_crtc_vblank_off(struct drm_crtc *crtc);
1148 extern void drm_crtc_vblank_reset(struct drm_crtc *crtc);
1149 extern void drm_crtc_vblank_on(struct drm_crtc *crtc);
1150 extern void drm_vblank_cleanup(struct drm_device *dev);
1151 extern u32 drm_vblank_no_hw_counter(struct drm_device *dev, unsigned int pipe);
1152
1153 extern int drm_calc_vbltimestamp_from_scanoutpos(struct drm_device *dev,
1154                                                  unsigned int pipe, int *max_error,
1155                                                  struct timeval *vblank_time,
1156                                                  unsigned flags,
1157                                                  const struct drm_display_mode *mode);
1158 extern void drm_calc_timestamping_constants(struct drm_crtc *crtc,
1159                                             const struct drm_display_mode *mode);
1160
1161 /**
1162  * drm_crtc_vblank_waitqueue - get vblank waitqueue for the CRTC
1163  * @crtc: which CRTC's vblank waitqueue to retrieve
1164  *
1165  * This function returns a pointer to the vblank waitqueue for the CRTC.
1166  * Drivers can use this to implement vblank waits using wait_event() & co.
1167  */
1168 static inline wait_queue_head_t *drm_crtc_vblank_waitqueue(struct drm_crtc *crtc)
1169 {
1170         return &crtc->dev->vblank[drm_crtc_index(crtc)].queue;
1171 }
1172
1173 /* Modesetting support */
1174 extern void drm_vblank_pre_modeset(struct drm_device *dev, unsigned int pipe);
1175 extern void drm_vblank_post_modeset(struct drm_device *dev, unsigned int pipe);
1176
1177                                 /* Stub support (drm_stub.h) */
1178
1179 extern void drm_put_dev(struct drm_device *dev);
1180 extern void drm_unplug_dev(struct drm_device *dev);
1181 extern unsigned int drm_debug;
1182 extern bool drm_atomic;
1183
1184 /* consistent PCI memory functions (drm_pci.c) */
1185 extern struct drm_dma_handle *drm_pci_alloc(struct drm_device *dev, size_t size,
1186                                             size_t align);
1187 extern void drm_pci_free(struct drm_device *dev, struct drm_dma_handle * dmah);
1188
1189                                /* sysfs support (drm_sysfs.c) */
1190 extern void drm_sysfs_hotplug_event(struct drm_device *dev);
1191
1192 /* sysctl support (drm_sysctl.h) */
1193 extern int drm_sysctl_init(struct drm_device *dev);
1194 extern int drm_sysctl_cleanup(struct drm_device *dev);
1195
1196 /* XXX: These are here only because of drm_sysctl.c */
1197 extern int drm_vblank_offdelay;
1198 extern unsigned int drm_timestamp_precision;
1199
1200 int drm_gem_mmap_single(struct drm_device *dev, vm_ooffset_t *offset,
1201     vm_size_t size, struct vm_object **obj_res, int nprot);
1202
1203 struct ttm_bo_device;
1204 int ttm_bo_mmap_single(struct ttm_bo_device *bdev, vm_ooffset_t *offset,
1205     vm_size_t size, struct vm_object **obj_res, int nprot);
1206 struct ttm_buffer_object;
1207 void ttm_bo_release_mmap(struct ttm_buffer_object *bo);
1208
1209 /* simplified version of kvasnprintf() for drm needs. */
1210 char *drm_vasprintf(int flags, const char *format, __va_list ap) __printflike(2, 0);
1211 char *drm_asprintf(int flags, const char *format, ...) __printflike(2, 3);
1212
1213 /* XXX glue logic, should be done in drm_pci_init(), pending drm update */
1214 void drm_init_pdev(device_t dev, struct pci_dev **pdev);
1215 void drm_fini_pdev(struct pci_dev **pdev);
1216 void drm_print_pdev(struct pci_dev *pdev);
1217
1218 /* Inline drm_free() helper for area kfree() */
1219 static __inline__ void
1220 drm_free(void *pt, struct malloc_type *area)
1221 {
1222         /* kfree is special!!! */
1223         if (pt != NULL)
1224                 (kfree)(pt, area);
1225 }
1226
1227 struct drm_device *drm_dev_alloc(struct drm_driver *driver,
1228                                  struct device *parent);
1229 void drm_dev_ref(struct drm_device *dev);
1230 void drm_dev_unref(struct drm_device *dev);
1231 int drm_dev_register(struct drm_device *dev, unsigned long flags);
1232 void drm_dev_unregister(struct drm_device *dev);
1233 int drm_dev_set_unique(struct drm_device *dev, const char *fmt, ...);
1234
1235
1236 /* PCI section */
1237 static __inline__ int drm_pci_device_is_agp(struct drm_device *dev)
1238 {
1239         if (dev->driver->device_is_agp != NULL) {
1240                 int err = (*dev->driver->device_is_agp) (dev);
1241
1242                 if (err != 2) {
1243                         return err;
1244                 }
1245         }
1246
1247         return (pci_find_extcap(dev->pdev->dev.bsddev, PCIY_AGP, NULL) == 0);
1248 }
1249
1250 #define DRM_PCIE_SPEED_25 1
1251 #define DRM_PCIE_SPEED_50 2
1252 #define DRM_PCIE_SPEED_80 4
1253
1254 extern int drm_pcie_get_speed_cap_mask(struct drm_device *dev, u32 *speed_mask);
1255
1256 /* XXX bad */
1257 #define drm_can_sleep() (HZ & 1)
1258
1259 #endif /* __KERNEL__ */
1260
1261 /* helper for handling conditionals in various for_each macros */
1262 #define for_each_if(condition) if (!(condition)) {} else
1263
1264 #endif /* _DRM_P_H_ */