xref: /freebsd/sys/dev/drm2/drmP.h (revision 685dc743dc3b5645e34836464128e1c0558b404b)
1592ffb21SWarner Losh /**
2592ffb21SWarner Losh  * \file drmP.h
3592ffb21SWarner Losh  * Private header for Direct Rendering Manager
4592ffb21SWarner Losh  *
5592ffb21SWarner Losh  * \author Rickard E. (Rik) Faith <faith@valinux.com>
6592ffb21SWarner Losh  * \author Gareth Hughes <gareth@valinux.com>
7592ffb21SWarner Losh  */
8592ffb21SWarner Losh 
9592ffb21SWarner Losh /*
10592ffb21SWarner Losh  * Copyright 1999 Precision Insight, Inc., Cedar Park, Texas.
11592ffb21SWarner Losh  * Copyright 2000 VA Linux Systems, Inc., Sunnyvale, California.
12592ffb21SWarner Losh  * Copyright (c) 2009-2010, Code Aurora Forum.
13592ffb21SWarner Losh  * All rights reserved.
14592ffb21SWarner Losh  *
15592ffb21SWarner Losh  * Permission is hereby granted, free of charge, to any person obtaining a
16592ffb21SWarner Losh  * copy of this software and associated documentation files (the "Software"),
17592ffb21SWarner Losh  * to deal in the Software without restriction, including without limitation
18592ffb21SWarner Losh  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
19592ffb21SWarner Losh  * and/or sell copies of the Software, and to permit persons to whom the
20592ffb21SWarner Losh  * Software is furnished to do so, subject to the following conditions:
21592ffb21SWarner Losh  *
22592ffb21SWarner Losh  * The above copyright notice and this permission notice (including the next
23592ffb21SWarner Losh  * paragraph) shall be included in all copies or substantial portions of the
24592ffb21SWarner Losh  * Software.
25592ffb21SWarner Losh  *
26592ffb21SWarner Losh  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
27592ffb21SWarner Losh  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
28592ffb21SWarner Losh  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
29592ffb21SWarner Losh  * VA LINUX SYSTEMS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
30592ffb21SWarner Losh  * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
31592ffb21SWarner Losh  * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
32592ffb21SWarner Losh  * OTHER DEALINGS IN THE SOFTWARE.
33592ffb21SWarner Losh  */
34592ffb21SWarner Losh 
35592ffb21SWarner Losh #include <sys/cdefs.h>
36592ffb21SWarner Losh #ifndef _DRM_P_H_
37592ffb21SWarner Losh #define _DRM_P_H_
38592ffb21SWarner Losh 
39592ffb21SWarner Losh #if defined(_KERNEL) || defined(__KERNEL__)
40592ffb21SWarner Losh 
41592ffb21SWarner Losh #include <sys/param.h>
42592ffb21SWarner Losh #include <sys/queue.h>
43592ffb21SWarner Losh #include <sys/malloc.h>
44592ffb21SWarner Losh #include <sys/kernel.h>
45592ffb21SWarner Losh #include <sys/ktr.h>
46592ffb21SWarner Losh #include <sys/module.h>
47592ffb21SWarner Losh #include <sys/systm.h>
48592ffb21SWarner Losh #include <sys/conf.h>
49592ffb21SWarner Losh #include <sys/sglist.h>
50592ffb21SWarner Losh #include <sys/stat.h>
51592ffb21SWarner Losh #include <sys/priv.h>
52592ffb21SWarner Losh #include <sys/proc.h>
5391898857SMark Johnston #include <sys/limits.h>
54592ffb21SWarner Losh #include <sys/lock.h>
55592ffb21SWarner Losh #include <sys/fcntl.h>
56592ffb21SWarner Losh #include <sys/uio.h>
57592ffb21SWarner Losh #include <sys/filio.h>
58592ffb21SWarner Losh #include <sys/rwlock.h>
59592ffb21SWarner Losh #include <sys/selinfo.h>
60592ffb21SWarner Losh #include <sys/sysctl.h>
61592ffb21SWarner Losh #include <sys/bus.h>
62592ffb21SWarner Losh #include <sys/queue.h>
63592ffb21SWarner Losh #include <sys/signalvar.h>
64592ffb21SWarner Losh #include <sys/poll.h>
65592ffb21SWarner Losh #include <sys/sbuf.h>
66592ffb21SWarner Losh #include <sys/taskqueue.h>
67592ffb21SWarner Losh #include <sys/tree.h>
68592ffb21SWarner Losh #include <sys/vmmeter.h>
69592ffb21SWarner Losh #include <vm/vm.h>
70592ffb21SWarner Losh #include <vm/pmap.h>
71592ffb21SWarner Losh #include <vm/vm_extern.h>
72592ffb21SWarner Losh #include <vm/vm_kern.h>
73592ffb21SWarner Losh #include <vm/vm_map.h>
74592ffb21SWarner Losh #include <vm/vm_object.h>
75592ffb21SWarner Losh #include <vm/vm_page.h>
76592ffb21SWarner Losh #include <vm/vm_pager.h>
77592ffb21SWarner Losh #include <vm/vm_param.h>
78592ffb21SWarner Losh #include <vm/vm_phys.h>
79592ffb21SWarner Losh #include <machine/bus.h>
80592ffb21SWarner Losh #include <machine/resource.h>
81592ffb21SWarner Losh #if defined(__i386__) || defined(__amd64__)
82592ffb21SWarner Losh #include <machine/specialreg.h>
83592ffb21SWarner Losh #endif
84592ffb21SWarner Losh #include <machine/sysarch.h>
85592ffb21SWarner Losh #include <sys/endian.h>
86592ffb21SWarner Losh #include <sys/mman.h>
87592ffb21SWarner Losh #include <sys/rman.h>
88592ffb21SWarner Losh #include <sys/memrange.h>
89592ffb21SWarner Losh #include <dev/agp/agpvar.h>
90592ffb21SWarner Losh #include <sys/agpio.h>
91592ffb21SWarner Losh #include <sys/mutex.h>
92592ffb21SWarner Losh #include <dev/pci/pcivar.h>
93592ffb21SWarner Losh #include <dev/pci/pcireg.h>
94592ffb21SWarner Losh #include <sys/selinfo.h>
95592ffb21SWarner Losh #include <sys/bus.h>
96592ffb21SWarner Losh 
97592ffb21SWarner Losh #include <dev/drm2/drm.h>
98592ffb21SWarner Losh #include <dev/drm2/drm_sarea.h>
99592ffb21SWarner Losh 
100592ffb21SWarner Losh #include <dev/drm2/drm_atomic.h>
101592ffb21SWarner Losh #include <dev/drm2/drm_linux_list.h>
102592ffb21SWarner Losh #include <dev/drm2/drm_gem_names.h>
103592ffb21SWarner Losh 
104592ffb21SWarner Losh #include <dev/drm2/drm_os_freebsd.h>
105592ffb21SWarner Losh 
106592ffb21SWarner Losh #if defined(CONFIG_AGP) || (defined(CONFIG_AGP_MODULE) && defined(MODULE))
107592ffb21SWarner Losh #define __OS_HAS_AGP 1
108592ffb21SWarner Losh #else
109592ffb21SWarner Losh #define __OS_HAS_AGP 0
110592ffb21SWarner Losh #endif
111592ffb21SWarner Losh #if defined(CONFIG_MTRR)
112592ffb21SWarner Losh #define __OS_HAS_MTRR 1
113592ffb21SWarner Losh #else
114592ffb21SWarner Losh #define __OS_HAS_MTRR 0
115592ffb21SWarner Losh #endif
116592ffb21SWarner Losh 
117592ffb21SWarner Losh struct drm_file;
118592ffb21SWarner Losh struct drm_device;
119592ffb21SWarner Losh 
120592ffb21SWarner Losh #include <dev/drm2/drm_hashtab.h>
121592ffb21SWarner Losh #include <dev/drm2/drm_mm.h>
122592ffb21SWarner Losh 
123592ffb21SWarner Losh #include "opt_drm.h"
124592ffb21SWarner Losh #include "opt_syscons.h"
125592ffb21SWarner Losh #ifdef DRM_DEBUG
126592ffb21SWarner Losh #undef DRM_DEBUG
127592ffb21SWarner Losh #define DRM_DEBUG_DEFAULT_ON 1
128592ffb21SWarner Losh #endif /* DRM_DEBUG */
129592ffb21SWarner Losh 
130592ffb21SWarner Losh #define	DRM_DEBUGBITS_DEBUG		0x1
131592ffb21SWarner Losh #define	DRM_DEBUGBITS_KMS		0x2
132592ffb21SWarner Losh #define	DRM_DEBUGBITS_FAILED_IOCTL	0x4
133592ffb21SWarner Losh 
134592ffb21SWarner Losh #undef DRM_LINUX
135592ffb21SWarner Losh #define DRM_LINUX 0
136592ffb21SWarner Losh 
137592ffb21SWarner Losh /***********************************************************************/
138592ffb21SWarner Losh /** \name DRM template customization defaults */
139592ffb21SWarner Losh /*@{*/
140592ffb21SWarner Losh 
141592ffb21SWarner Losh /* driver capabilities and requirements mask */
142592ffb21SWarner Losh #define DRIVER_USE_AGP     0x1
143592ffb21SWarner Losh #define DRIVER_REQUIRE_AGP 0x2
144592ffb21SWarner Losh #define DRIVER_USE_MTRR    0x4
145592ffb21SWarner Losh #define DRIVER_PCI_DMA     0x8
146592ffb21SWarner Losh #define DRIVER_SG          0x10
147592ffb21SWarner Losh #define DRIVER_HAVE_DMA    0x20
148592ffb21SWarner Losh #define DRIVER_HAVE_IRQ    0x40
149592ffb21SWarner Losh #define DRIVER_IRQ_SHARED  0x80
150592ffb21SWarner Losh #define DRIVER_IRQ_VBL     0x100
151592ffb21SWarner Losh #define DRIVER_DMA_QUEUE   0x200
152592ffb21SWarner Losh #define DRIVER_FB_DMA      0x400
153592ffb21SWarner Losh #define DRIVER_IRQ_VBL2    0x800
154592ffb21SWarner Losh #define DRIVER_GEM         0x1000
155592ffb21SWarner Losh #define DRIVER_MODESET     0x2000
156592ffb21SWarner Losh #define DRIVER_PRIME       0x4000
157592ffb21SWarner Losh 
158592ffb21SWarner Losh #define DRIVER_BUS_PCI 0x1
159592ffb21SWarner Losh #define DRIVER_BUS_PLATFORM 0x2
160592ffb21SWarner Losh #define DRIVER_BUS_USB 0x3
161592ffb21SWarner Losh 
162592ffb21SWarner Losh /***********************************************************************/
163592ffb21SWarner Losh /** \name Begin the DRM... */
164592ffb21SWarner Losh /*@{*/
165592ffb21SWarner Losh 
166592ffb21SWarner Losh #define DRM_DEBUG_CODE 2	  /**< Include debugging code if > 1, then
167592ffb21SWarner Losh 				     also include looping detection. */
168592ffb21SWarner Losh 
169592ffb21SWarner Losh #define DRM_MAGIC_HASH_ORDER  4  /**< Size of key hash table. Must be power of 2. */
170592ffb21SWarner Losh #define DRM_KERNEL_CONTEXT    0	 /**< Change drm_resctx if changed */
171592ffb21SWarner Losh #define DRM_RESERVED_CONTEXTS 1	 /**< Change drm_resctx if changed */
172592ffb21SWarner Losh #define DRM_LOOPING_LIMIT     5000000
173592ffb21SWarner Losh #define DRM_TIME_SLICE	      (HZ/20)  /**< Time slice for GLXContexts */
174592ffb21SWarner Losh #define DRM_LOCK_SLICE	      1	/**< Time slice for lock, in jiffies */
175592ffb21SWarner Losh 
176592ffb21SWarner Losh #define DRM_FLAG_DEBUG	  0x01
177592ffb21SWarner Losh 
178592ffb21SWarner Losh #define DRM_MAX_CTXBITMAP (PAGE_SIZE * 8)
179592ffb21SWarner Losh #define DRM_MAP_HASH_OFFSET 0x10000000
180592ffb21SWarner Losh 
181592ffb21SWarner Losh /*@}*/
182592ffb21SWarner Losh 
183592ffb21SWarner Losh /***********************************************************************/
184592ffb21SWarner Losh /** \name Macros to make printk easier */
185592ffb21SWarner Losh /*@{*/
186592ffb21SWarner Losh 
187592ffb21SWarner Losh /**
188592ffb21SWarner Losh  * Error output.
189592ffb21SWarner Losh  *
190592ffb21SWarner Losh  * \param fmt printf() like format string.
191592ffb21SWarner Losh  * \param arg arguments
192592ffb21SWarner Losh  */
193592ffb21SWarner Losh #define DRM_ERROR(fmt, ...) \
194592ffb21SWarner Losh 	printf("error: [" DRM_NAME ":pid%d:%s] *ERROR* " fmt,		\
195592ffb21SWarner Losh 	    DRM_CURRENTPID, __func__ , ##__VA_ARGS__)
196592ffb21SWarner Losh 
197592ffb21SWarner Losh #define DRM_WARNING(fmt, ...)  printf("warning: [" DRM_NAME "] " fmt , ##__VA_ARGS__)
198592ffb21SWarner Losh #define DRM_INFO(fmt, ...)  printf("info: [" DRM_NAME "] " fmt , ##__VA_ARGS__)
199592ffb21SWarner Losh 
200592ffb21SWarner Losh /**
201592ffb21SWarner Losh  * Debug output.
202592ffb21SWarner Losh  *
203592ffb21SWarner Losh  * \param fmt printf() like format string.
204592ffb21SWarner Losh  * \param arg arguments
205592ffb21SWarner Losh  */
206592ffb21SWarner Losh #define DRM_DEBUG(fmt, ...) do {					\
207592ffb21SWarner Losh 	if ((drm_debug & DRM_DEBUGBITS_DEBUG) != 0)			\
208592ffb21SWarner Losh 		printf("[" DRM_NAME ":pid%d:%s] " fmt, DRM_CURRENTPID,	\
209592ffb21SWarner Losh 			__func__ , ##__VA_ARGS__);			\
210592ffb21SWarner Losh } while (0)
211592ffb21SWarner Losh 
212592ffb21SWarner Losh #define DRM_DEBUG_DRIVER(fmt, ...) do {					\
213592ffb21SWarner Losh 	if ((drm_debug & DRM_DEBUGBITS_KMS) != 0)			\
214592ffb21SWarner Losh 		printf("[" DRM_NAME ":KMS:pid%d:%s] " fmt, DRM_CURRENTPID,\
215592ffb21SWarner Losh 			__func__ , ##__VA_ARGS__);			\
216592ffb21SWarner Losh } while (0)
217592ffb21SWarner Losh 
218592ffb21SWarner Losh #define DRM_DEBUG_KMS(fmt, ...) do {					\
219592ffb21SWarner Losh 	if ((drm_debug & DRM_DEBUGBITS_KMS) != 0)			\
220592ffb21SWarner Losh 		printf("[" DRM_NAME ":KMS:pid%d:%s] " fmt, DRM_CURRENTPID,\
221592ffb21SWarner Losh 			__func__ , ##__VA_ARGS__);			\
222592ffb21SWarner Losh } while (0)
223592ffb21SWarner Losh 
224592ffb21SWarner Losh #define DRM_LOG(fmt, ...) do {						\
225592ffb21SWarner Losh 	if ((drm_debug & DRM_DEBUGBITS_KMS) != 0)			\
226592ffb21SWarner Losh 		printf("[" DRM_NAME "]:pid%d:%s]" fmt, DRM_CURRENTPID,	\
227592ffb21SWarner Losh 			__func__ , ##__VA_ARGS__);			\
228592ffb21SWarner Losh } while (0)
229592ffb21SWarner Losh 
230592ffb21SWarner Losh #define DRM_LOG_KMS(fmt, ...) do {					\
231592ffb21SWarner Losh 	if ((drm_debug & DRM_DEBUGBITS_KMS) != 0)			\
232592ffb21SWarner Losh 		printf("[" DRM_NAME "]:KMS:pid%d:%s]" fmt, DRM_CURRENTPID,\
233592ffb21SWarner Losh 			__func__ , ##__VA_ARGS__);			\
234592ffb21SWarner Losh } while (0)
235592ffb21SWarner Losh 
236592ffb21SWarner Losh #define DRM_LOG_MODE(fmt, ...) do {					\
237592ffb21SWarner Losh 	if ((drm_debug & DRM_DEBUGBITS_KMS) != 0)			\
238592ffb21SWarner Losh 		printf("[" DRM_NAME "]:pid%d:%s]" fmt, DRM_CURRENTPID,	\
239592ffb21SWarner Losh 			__func__ , ##__VA_ARGS__);			\
240592ffb21SWarner Losh } while (0)
241592ffb21SWarner Losh 
242592ffb21SWarner Losh #define DRM_LOG_DRIVER(fmt, ...) do {					\
243592ffb21SWarner Losh 	if ((drm_debug & DRM_DEBUGBITS_KMS) != 0)			\
244592ffb21SWarner Losh 		printf("[" DRM_NAME "]:KMS:pid%d:%s]" fmt, DRM_CURRENTPID,\
245592ffb21SWarner Losh 			__func__ , ##__VA_ARGS__);			\
246592ffb21SWarner Losh } while (0)
247592ffb21SWarner Losh 
248592ffb21SWarner Losh /*@}*/
249592ffb21SWarner Losh 
250592ffb21SWarner Losh /***********************************************************************/
251592ffb21SWarner Losh /** \name Internal types and structures */
252592ffb21SWarner Losh /*@{*/
253592ffb21SWarner Losh 
254592ffb21SWarner Losh #define DRM_ARRAY_SIZE(x) ARRAY_SIZE(x)
255592ffb21SWarner Losh 
256592ffb21SWarner Losh #define DRM_LEFTCOUNT(x) (((x)->rp + (x)->count - (x)->wp) % ((x)->count + 1))
257592ffb21SWarner Losh #define DRM_BUFCOUNT(x) ((x)->count - DRM_LEFTCOUNT(x))
258592ffb21SWarner Losh 
259592ffb21SWarner Losh #define DRM_IF_VERSION(maj, min) (maj << 16 | min)
260592ffb21SWarner Losh 
261592ffb21SWarner Losh /**
262592ffb21SWarner Losh  * Test that the hardware lock is held by the caller, returning otherwise.
263592ffb21SWarner Losh  *
264592ffb21SWarner Losh  * \param dev DRM device.
265592ffb21SWarner Losh  * \param filp file pointer of the caller.
266592ffb21SWarner Losh  */
267592ffb21SWarner Losh #define LOCK_TEST_WITH_RETURN( dev, _file_priv )				\
268592ffb21SWarner Losh do {										\
269592ffb21SWarner Losh 	if (!_DRM_LOCK_IS_HELD(_file_priv->master->lock.hw_lock->lock) ||	\
270592ffb21SWarner Losh 	    _file_priv->master->lock.file_priv != _file_priv)	{		\
271592ffb21SWarner Losh 		DRM_ERROR( "%s called without lock held, held  %d owner %p %p\n",\
272592ffb21SWarner Losh 			   __func__, _DRM_LOCK_IS_HELD(_file_priv->master->lock.hw_lock->lock),\
273592ffb21SWarner Losh 			   _file_priv->master->lock.file_priv, _file_priv);	\
274592ffb21SWarner Losh 		return -EINVAL;							\
275592ffb21SWarner Losh 	}									\
276592ffb21SWarner Losh } while (0)
277592ffb21SWarner Losh 
278592ffb21SWarner Losh /**
279592ffb21SWarner Losh  * Ioctl function type.
280592ffb21SWarner Losh  *
281592ffb21SWarner Losh  * \param inode device inode.
282592ffb21SWarner Losh  * \param file_priv DRM file private pointer.
283592ffb21SWarner Losh  * \param cmd command.
284592ffb21SWarner Losh  * \param arg argument.
285592ffb21SWarner Losh  */
286592ffb21SWarner Losh typedef int drm_ioctl_t(struct drm_device *dev, void *data,
287592ffb21SWarner Losh 			struct drm_file *file_priv);
288592ffb21SWarner Losh 
289592ffb21SWarner Losh #define DRM_IOCTL_NR(n)                ((n) & 0xff)
290592ffb21SWarner Losh #define DRM_MAJOR       226
291592ffb21SWarner Losh 
292592ffb21SWarner Losh #define DRM_AUTH	0x1
293592ffb21SWarner Losh #define	DRM_MASTER	0x2
294592ffb21SWarner Losh #define DRM_ROOT_ONLY	0x4
295592ffb21SWarner Losh #define DRM_CONTROL_ALLOW 0x8
296592ffb21SWarner Losh #define DRM_UNLOCKED	0x10
297592ffb21SWarner Losh 
298592ffb21SWarner Losh struct drm_ioctl_desc {
299592ffb21SWarner Losh 	unsigned long cmd;
300592ffb21SWarner Losh 	int flags;
301592ffb21SWarner Losh 	drm_ioctl_t *func;
302592ffb21SWarner Losh 	unsigned int cmd_drv;
303592ffb21SWarner Losh };
304592ffb21SWarner Losh 
305592ffb21SWarner Losh /**
306592ffb21SWarner Losh  * Creates a driver or general drm_ioctl_desc array entry for the given
307592ffb21SWarner Losh  * ioctl, for use by drm_ioctl().
308592ffb21SWarner Losh  */
309592ffb21SWarner Losh 
310592ffb21SWarner Losh #define DRM_IOCTL_DEF(ioctl, _func, _flags) \
311592ffb21SWarner Losh 	[DRM_IOCTL_NR(ioctl)] = {.cmd = ioctl, .func = _func, .flags = _flags, .cmd_drv = 0}
312592ffb21SWarner Losh 
313592ffb21SWarner Losh #define DRM_IOCTL_DEF_DRV(ioctl, _func, _flags)			\
314592ffb21SWarner Losh 	[DRM_IOCTL_NR(DRM_##ioctl)] = {.cmd = DRM_##ioctl, .func = _func, .flags = _flags, .cmd_drv = DRM_IOCTL_##ioctl}
315592ffb21SWarner Losh 
316592ffb21SWarner Losh struct drm_magic_entry {
317592ffb21SWarner Losh 	struct list_head head;
318592ffb21SWarner Losh 	struct drm_hash_item hash_item;
319592ffb21SWarner Losh 	struct drm_file *priv;
320592ffb21SWarner Losh };
321592ffb21SWarner Losh 
322592ffb21SWarner Losh /**
323592ffb21SWarner Losh  * DMA buffer.
324592ffb21SWarner Losh  */
325592ffb21SWarner Losh struct drm_buf {
326592ffb21SWarner Losh 	int idx;		       /**< Index into master buflist */
327592ffb21SWarner Losh 	int total;		       /**< Buffer size */
328592ffb21SWarner Losh 	int order;		       /**< log-base-2(total) */
329592ffb21SWarner Losh 	int used;		       /**< Amount of buffer in use (for DMA) */
330592ffb21SWarner Losh 	unsigned long offset;	       /**< Byte offset (used internally) */
331592ffb21SWarner Losh 	void *address;		       /**< Address of buffer */
332592ffb21SWarner Losh 	unsigned long bus_address;     /**< Bus address of buffer */
333592ffb21SWarner Losh 	struct drm_buf *next;	       /**< Kernel-only: used for free list */
334592ffb21SWarner Losh 	__volatile__ int waiting;      /**< On kernel DMA queue */
335592ffb21SWarner Losh 	__volatile__ int pending;      /**< On hardware DMA queue */
336592ffb21SWarner Losh 	struct drm_file *file_priv;    /**< Private of holding file descr */
337592ffb21SWarner Losh 	int context;		       /**< Kernel queue for this buffer */
338592ffb21SWarner Losh 	int while_locked;	       /**< Dispatch this buffer while locked */
339592ffb21SWarner Losh 	enum {
340592ffb21SWarner Losh 		DRM_LIST_NONE = 0,
341592ffb21SWarner Losh 		DRM_LIST_FREE = 1,
342592ffb21SWarner Losh 		DRM_LIST_WAIT = 2,
343592ffb21SWarner Losh 		DRM_LIST_PEND = 3,
344592ffb21SWarner Losh 		DRM_LIST_PRIO = 4,
345592ffb21SWarner Losh 		DRM_LIST_RECLAIM = 5
346592ffb21SWarner Losh 	} list;			       /**< Which list we're on */
347592ffb21SWarner Losh 
348592ffb21SWarner Losh 	int dev_priv_size;		 /**< Size of buffer private storage */
349592ffb21SWarner Losh 	void *dev_private;		 /**< Per-buffer private storage */
350592ffb21SWarner Losh };
351592ffb21SWarner Losh 
352592ffb21SWarner Losh struct drm_freelist {
353592ffb21SWarner Losh 	int initialized;	       /**< Freelist in use */
354592ffb21SWarner Losh 	atomic_t count;		       /**< Number of free buffers */
355592ffb21SWarner Losh 	struct drm_buf *next;	       /**< End pointer */
356592ffb21SWarner Losh 
357592ffb21SWarner Losh #ifdef FREEBSD_NOTYET
358592ffb21SWarner Losh 	wait_queue_head_t waiting;     /**< Processes waiting on free bufs */
359592ffb21SWarner Losh #endif /* defined(FREEBSD_NOTYET) */
360592ffb21SWarner Losh 	int low_mark;		       /**< Low water mark */
361592ffb21SWarner Losh 	int high_mark;		       /**< High water mark */
362592ffb21SWarner Losh #ifdef FREEBSD_NOTYET
363592ffb21SWarner Losh 	atomic_t wfh;		       /**< If waiting for high mark */
364592ffb21SWarner Losh 	spinlock_t lock;
365592ffb21SWarner Losh #endif /* defined(FREEBSD_NOTYET) */
366592ffb21SWarner Losh };
367592ffb21SWarner Losh 
368592ffb21SWarner Losh typedef struct drm_dma_handle {
369592ffb21SWarner Losh 	void *vaddr;
370592ffb21SWarner Losh 	bus_addr_t busaddr;
371592ffb21SWarner Losh 	bus_dma_tag_t tag;
372592ffb21SWarner Losh 	bus_dmamap_t map;
373592ffb21SWarner Losh } drm_dma_handle_t;
374592ffb21SWarner Losh 
375592ffb21SWarner Losh /**
376592ffb21SWarner Losh  * Buffer entry.  There is one of this for each buffer size order.
377592ffb21SWarner Losh  */
378592ffb21SWarner Losh struct drm_buf_entry {
379592ffb21SWarner Losh 	int buf_size;			/**< size */
380592ffb21SWarner Losh 	int buf_count;			/**< number of buffers */
381592ffb21SWarner Losh 	struct drm_buf *buflist;		/**< buffer list */
382592ffb21SWarner Losh 	int seg_count;
383592ffb21SWarner Losh 	int page_order;
384592ffb21SWarner Losh 	struct drm_dma_handle **seglist;
385592ffb21SWarner Losh 
386592ffb21SWarner Losh 	struct drm_freelist freelist;
387592ffb21SWarner Losh };
388592ffb21SWarner Losh 
389592ffb21SWarner Losh /* Event queued up for userspace to read */
390592ffb21SWarner Losh struct drm_pending_event {
391592ffb21SWarner Losh 	struct drm_event *event;
392592ffb21SWarner Losh 	struct list_head link;
393592ffb21SWarner Losh 	struct drm_file *file_priv;
394592ffb21SWarner Losh 	pid_t pid; /* pid of requester, no guarantee it's valid by the time
395592ffb21SWarner Losh 		      we deliver the event, for tracing only */
396592ffb21SWarner Losh 	void (*destroy)(struct drm_pending_event *event);
397592ffb21SWarner Losh };
398592ffb21SWarner Losh 
399592ffb21SWarner Losh /* initial implementaton using a linked list - todo hashtab */
400592ffb21SWarner Losh struct drm_prime_file_private {
401592ffb21SWarner Losh 	struct list_head head;
402592ffb21SWarner Losh 	struct mtx lock;
403592ffb21SWarner Losh };
404592ffb21SWarner Losh 
405592ffb21SWarner Losh struct drm_file {
406592ffb21SWarner Losh 	int authenticated;
407592ffb21SWarner Losh 	pid_t pid;
408592ffb21SWarner Losh 	uid_t uid;
409592ffb21SWarner Losh 	drm_magic_t magic;
410592ffb21SWarner Losh 	unsigned long ioctl_count;
411592ffb21SWarner Losh 	struct list_head lhead;
412592ffb21SWarner Losh 	struct drm_minor *minor;
413592ffb21SWarner Losh 	unsigned long lock_count;
414592ffb21SWarner Losh 
415592ffb21SWarner Losh 	void *driver_priv;
416592ffb21SWarner Losh 	struct drm_gem_names object_names;
417592ffb21SWarner Losh 
418592ffb21SWarner Losh 	int is_master; /* this file private is a master for a minor */
419592ffb21SWarner Losh 	struct drm_master *master; /* master this node is currently associated with
420592ffb21SWarner Losh 				      N.B. not always minor->master */
421592ffb21SWarner Losh 	struct list_head fbs;
422592ffb21SWarner Losh 
423592ffb21SWarner Losh 	struct selinfo event_poll;
424592ffb21SWarner Losh 	struct list_head event_list;
425592ffb21SWarner Losh 	int event_space;
426592ffb21SWarner Losh 
427592ffb21SWarner Losh 	struct drm_prime_file_private prime;
428592ffb21SWarner Losh };
429592ffb21SWarner Losh 
430592ffb21SWarner Losh /**
431592ffb21SWarner Losh  * Lock data.
432592ffb21SWarner Losh  */
433592ffb21SWarner Losh struct drm_lock_data {
434592ffb21SWarner Losh 	struct drm_hw_lock *hw_lock;	/**< Hardware lock */
435592ffb21SWarner Losh 	/** Private of lock holder's file (NULL=kernel) */
436592ffb21SWarner Losh 	struct drm_file *file_priv;
437592ffb21SWarner Losh 	wait_queue_head_t lock_queue;	/**< Queue of blocked processes */
438592ffb21SWarner Losh 	unsigned long lock_time;	/**< Time of last lock in jiffies */
439592ffb21SWarner Losh 	struct mtx spinlock;
440592ffb21SWarner Losh 	uint32_t kernel_waiters;
441592ffb21SWarner Losh 	uint32_t user_waiters;
442592ffb21SWarner Losh 	int idle_has_lock;
443592ffb21SWarner Losh };
444592ffb21SWarner Losh 
445592ffb21SWarner Losh /**
446592ffb21SWarner Losh  * DMA data.
447592ffb21SWarner Losh  */
448592ffb21SWarner Losh struct drm_device_dma {
449592ffb21SWarner Losh 
450592ffb21SWarner Losh 	struct drm_buf_entry bufs[DRM_MAX_ORDER + 1];	/**< buffers, grouped by their size order */
451592ffb21SWarner Losh 	int buf_count;			/**< total number of buffers */
452592ffb21SWarner Losh 	struct drm_buf **buflist;		/**< Vector of pointers into drm_device_dma::bufs */
453592ffb21SWarner Losh 	int seg_count;
454592ffb21SWarner Losh 	int page_count;			/**< number of pages */
455592ffb21SWarner Losh 	unsigned long *pagelist;	/**< page list */
456592ffb21SWarner Losh 	unsigned long byte_count;
457592ffb21SWarner Losh 	enum {
458592ffb21SWarner Losh 		_DRM_DMA_USE_AGP = 0x01,
459592ffb21SWarner Losh 		_DRM_DMA_USE_SG = 0x02,
460592ffb21SWarner Losh 		_DRM_DMA_USE_FB = 0x04,
461592ffb21SWarner Losh 		_DRM_DMA_USE_PCI_RO = 0x08
462592ffb21SWarner Losh 	} flags;
463592ffb21SWarner Losh 
464592ffb21SWarner Losh };
465592ffb21SWarner Losh 
466592ffb21SWarner Losh /**
467592ffb21SWarner Losh  * AGP memory entry.  Stored as a doubly linked list.
468592ffb21SWarner Losh  */
469592ffb21SWarner Losh struct drm_agp_mem {
470592ffb21SWarner Losh 	unsigned long handle;		/**< handle */
471592ffb21SWarner Losh 	DRM_AGP_MEM *memory;
472592ffb21SWarner Losh 	unsigned long bound;		/**< address */
473592ffb21SWarner Losh 	int pages;
474592ffb21SWarner Losh 	struct list_head head;
475592ffb21SWarner Losh };
476592ffb21SWarner Losh 
477592ffb21SWarner Losh /**
478592ffb21SWarner Losh  * AGP data.
479592ffb21SWarner Losh  *
480592ffb21SWarner Losh  * \sa drm_agp_init() and drm_device::agp.
481592ffb21SWarner Losh  */
482592ffb21SWarner Losh struct drm_agp_head {
483592ffb21SWarner Losh 	DRM_AGP_KERN agp_info;		/**< AGP device information */
484592ffb21SWarner Losh 	struct list_head memory;
485592ffb21SWarner Losh 	unsigned long mode;		/**< AGP mode */
486592ffb21SWarner Losh 	device_t bridge;
487592ffb21SWarner Losh 	int enabled;			/**< whether the AGP bus as been enabled */
488592ffb21SWarner Losh 	int acquired;			/**< whether the AGP device has been acquired */
489592ffb21SWarner Losh 	unsigned long base;
490592ffb21SWarner Losh 	int agp_mtrr;
491592ffb21SWarner Losh 	int cant_use_aperture;
492592ffb21SWarner Losh };
493592ffb21SWarner Losh 
494592ffb21SWarner Losh /**
495592ffb21SWarner Losh  * Scatter-gather memory.
496592ffb21SWarner Losh  */
497592ffb21SWarner Losh struct drm_sg_mem {
498*f49fd63aSJohn Baldwin 	void *vaddr;
499592ffb21SWarner Losh 	vm_paddr_t *busaddr;
500592ffb21SWarner Losh 	vm_pindex_t pages;
501592ffb21SWarner Losh };
502592ffb21SWarner Losh 
503592ffb21SWarner Losh struct drm_sigdata {
504592ffb21SWarner Losh 	int context;
505592ffb21SWarner Losh 	struct drm_hw_lock *lock;
506592ffb21SWarner Losh };
507592ffb21SWarner Losh 
508592ffb21SWarner Losh /**
509592ffb21SWarner Losh  * Kernel side of a mapping
510592ffb21SWarner Losh  */
511592ffb21SWarner Losh #define DRM_MAP_HANDLE_BITS	(sizeof(void *) == 4 ? 4 : 24)
512592ffb21SWarner Losh #define DRM_MAP_HANDLE_SHIFT	(sizeof(void *) * 8 - DRM_MAP_HANDLE_BITS)
513592ffb21SWarner Losh 
514592ffb21SWarner Losh struct drm_local_map {
515592ffb21SWarner Losh 	resource_size_t offset;	 /**< Requested physical address (0 for SAREA)*/
516592ffb21SWarner Losh 	unsigned long size;	 /**< Requested physical size (bytes) */
517592ffb21SWarner Losh 	enum drm_map_type type;	 /**< Type of memory to map */
518592ffb21SWarner Losh 	enum drm_map_flags flags;	 /**< Flags */
519592ffb21SWarner Losh 	void *handle;		 /**< User-space: "Handle" to pass to mmap() */
520592ffb21SWarner Losh 				 /**< Kernel-space: kernel-virtual address */
521592ffb21SWarner Losh 	int mtrr;		 /**< MTRR slot used */
522592ffb21SWarner Losh 
523592ffb21SWarner Losh 				  /* Private data                         */
524592ffb21SWarner Losh 	drm_dma_handle_t *dmah;
525592ffb21SWarner Losh };
526592ffb21SWarner Losh 
527592ffb21SWarner Losh typedef struct drm_local_map drm_local_map_t;
528592ffb21SWarner Losh 
529592ffb21SWarner Losh /**
530592ffb21SWarner Losh  * Mappings list
531592ffb21SWarner Losh  */
532592ffb21SWarner Losh struct drm_map_list {
533592ffb21SWarner Losh 	struct list_head head;		/**< list head */
534592ffb21SWarner Losh 	struct drm_hash_item hash;
535592ffb21SWarner Losh 	struct drm_local_map *map;	/**< mapping */
536592ffb21SWarner Losh 	uint64_t user_token;
537592ffb21SWarner Losh 	struct drm_master *master;
538592ffb21SWarner Losh 	struct drm_mm_node *file_offset_node;	/**< fake offset */
539592ffb21SWarner Losh };
540592ffb21SWarner Losh 
541592ffb21SWarner Losh /**
542592ffb21SWarner Losh  * Context handle list
543592ffb21SWarner Losh  */
544592ffb21SWarner Losh struct drm_ctx_list {
545592ffb21SWarner Losh 	struct list_head head;		/**< list head */
546592ffb21SWarner Losh 	drm_context_t handle;		/**< context handle */
547592ffb21SWarner Losh 	struct drm_file *tag;		/**< associated fd private data */
548592ffb21SWarner Losh };
549592ffb21SWarner Losh 
550592ffb21SWarner Losh /* location of GART table */
551592ffb21SWarner Losh #define DRM_ATI_GART_MAIN 1
552592ffb21SWarner Losh #define DRM_ATI_GART_FB   2
553592ffb21SWarner Losh 
554592ffb21SWarner Losh #define DRM_ATI_GART_PCI 1
555592ffb21SWarner Losh #define DRM_ATI_GART_PCIE 2
556592ffb21SWarner Losh #define DRM_ATI_GART_IGP 3
557592ffb21SWarner Losh 
558592ffb21SWarner Losh struct drm_ati_pcigart_info {
559592ffb21SWarner Losh 	int gart_table_location;
560592ffb21SWarner Losh 	int gart_reg_if;
561592ffb21SWarner Losh 	void *addr;
562592ffb21SWarner Losh 	dma_addr_t bus_addr;
563592ffb21SWarner Losh 	dma_addr_t table_mask;
564592ffb21SWarner Losh 	struct drm_dma_handle *table_handle;
565592ffb21SWarner Losh 	struct drm_local_map mapping;
566592ffb21SWarner Losh 	int table_size;
567592ffb21SWarner Losh 	struct drm_dma_handle *dmah; /* handle for ATI PCIGART table FIXME */
568592ffb21SWarner Losh };
569592ffb21SWarner Losh 
570592ffb21SWarner Losh /**
571592ffb21SWarner Losh  * GEM specific mm private for tracking GEM objects
572592ffb21SWarner Losh  */
573592ffb21SWarner Losh struct drm_gem_mm {
574592ffb21SWarner Losh 	struct unrhdr *idxunr;
575592ffb21SWarner Losh 	struct drm_open_hash offset_hash; /**< User token hash table for maps */
576592ffb21SWarner Losh };
577592ffb21SWarner Losh 
578592ffb21SWarner Losh /**
579592ffb21SWarner Losh  * This structure defines the drm_mm memory object, which will be used by the
580592ffb21SWarner Losh  * DRM for its buffer objects.
581592ffb21SWarner Losh  */
582592ffb21SWarner Losh struct drm_gem_object {
583592ffb21SWarner Losh 	/** Reference count of this object */
584592ffb21SWarner Losh 	u_int refcount;
585592ffb21SWarner Losh 
586592ffb21SWarner Losh 	/** Handle count of this object. Each handle also holds a reference */
587592ffb21SWarner Losh 	atomic_t handle_count; /* number of handles on this object */
588592ffb21SWarner Losh 
589592ffb21SWarner Losh 	/** Related drm device */
590592ffb21SWarner Losh 	struct drm_device *dev;
591592ffb21SWarner Losh 
592592ffb21SWarner Losh 	/** File representing the shmem storage: filp in Linux parlance */
593592ffb21SWarner Losh 	vm_object_t vm_obj;
594592ffb21SWarner Losh 
595592ffb21SWarner Losh 	/* Mapping info for this object */
596592ffb21SWarner Losh 	bool on_map;
597592ffb21SWarner Losh 	struct drm_hash_item map_list;
598592ffb21SWarner Losh 
599592ffb21SWarner Losh 	/**
600592ffb21SWarner Losh 	 * Size of the object, in bytes.  Immutable over the object's
601592ffb21SWarner Losh 	 * lifetime.
602592ffb21SWarner Losh 	 */
603592ffb21SWarner Losh 	size_t size;
604592ffb21SWarner Losh 
605592ffb21SWarner Losh 	/**
606592ffb21SWarner Losh 	 * Global name for this object, starts at 1. 0 means unnamed.
607592ffb21SWarner Losh 	 * Access is covered by the object_name_lock in the related drm_device
608592ffb21SWarner Losh 	 */
609592ffb21SWarner Losh 	int name;
610592ffb21SWarner Losh 
611592ffb21SWarner Losh 	/**
612592ffb21SWarner Losh 	 * Memory domains. These monitor which caches contain read/write data
613592ffb21SWarner Losh 	 * related to the object. When transitioning from one set of domains
614592ffb21SWarner Losh 	 * to another, the driver is called to ensure that caches are suitably
615592ffb21SWarner Losh 	 * flushed and invalidated
616592ffb21SWarner Losh 	 */
617592ffb21SWarner Losh 	uint32_t read_domains;
618592ffb21SWarner Losh 	uint32_t write_domain;
619592ffb21SWarner Losh 
620592ffb21SWarner Losh 	/**
621592ffb21SWarner Losh 	 * While validating an exec operation, the
622592ffb21SWarner Losh 	 * new read/write domain values are computed here.
623592ffb21SWarner Losh 	 * They will be transferred to the above values
624592ffb21SWarner Losh 	 * at the point that any cache flushing occurs
625592ffb21SWarner Losh 	 */
626592ffb21SWarner Losh 	uint32_t pending_read_domains;
627592ffb21SWarner Losh 	uint32_t pending_write_domain;
628592ffb21SWarner Losh 
629592ffb21SWarner Losh 	void *driver_private;
630592ffb21SWarner Losh 
631592ffb21SWarner Losh #ifdef FREEBSD_NOTYET
632592ffb21SWarner Losh 	/* dma buf exported from this GEM object */
633592ffb21SWarner Losh 	struct dma_buf *export_dma_buf;
634592ffb21SWarner Losh 
635592ffb21SWarner Losh 	/* dma buf attachment backing this object */
636592ffb21SWarner Losh 	struct dma_buf_attachment *import_attach;
637592ffb21SWarner Losh #endif /* FREEBSD_NOTYET */
638592ffb21SWarner Losh };
639592ffb21SWarner Losh 
640592ffb21SWarner Losh #include <dev/drm2/drm_crtc.h>
641592ffb21SWarner Losh 
642592ffb21SWarner Losh /* per-master structure */
643592ffb21SWarner Losh struct drm_master {
644592ffb21SWarner Losh 
645592ffb21SWarner Losh 	u_int refcount; /* refcount for this master */
646592ffb21SWarner Losh 
647592ffb21SWarner Losh 	struct list_head head; /**< each minor contains a list of masters */
648592ffb21SWarner Losh 	struct drm_minor *minor; /**< link back to minor we are a master for */
649592ffb21SWarner Losh 
650592ffb21SWarner Losh 	char *unique;			/**< Unique identifier: e.g., busid */
651592ffb21SWarner Losh 	int unique_len;			/**< Length of unique field */
652592ffb21SWarner Losh 	int unique_size;		/**< amount allocated */
653592ffb21SWarner Losh 
654592ffb21SWarner Losh 	int blocked;			/**< Blocked due to VC switch? */
655592ffb21SWarner Losh 
656592ffb21SWarner Losh 	/** \name Authentication */
657592ffb21SWarner Losh 	/*@{ */
658592ffb21SWarner Losh 	struct drm_open_hash magiclist;
659592ffb21SWarner Losh 	struct list_head magicfree;
660592ffb21SWarner Losh 	/*@} */
661592ffb21SWarner Losh 
662592ffb21SWarner Losh 	struct drm_lock_data lock;	/**< Information on hardware lock */
663592ffb21SWarner Losh 
664592ffb21SWarner Losh 	void *driver_priv; /**< Private structure for driver to use */
665592ffb21SWarner Losh };
666592ffb21SWarner Losh 
667592ffb21SWarner Losh /* Size of ringbuffer for vblank timestamps. Just double-buffer
668592ffb21SWarner Losh  * in initial implementation.
669592ffb21SWarner Losh  */
670592ffb21SWarner Losh #define DRM_VBLANKTIME_RBSIZE 2
671592ffb21SWarner Losh 
672592ffb21SWarner Losh /* Flags and return codes for get_vblank_timestamp() driver function. */
673592ffb21SWarner Losh #define DRM_CALLED_FROM_VBLIRQ 1
674592ffb21SWarner Losh #define DRM_VBLANKTIME_SCANOUTPOS_METHOD (1 << 0)
675592ffb21SWarner Losh #define DRM_VBLANKTIME_INVBL             (1 << 1)
676592ffb21SWarner Losh 
677592ffb21SWarner Losh /* get_scanout_position() return flags */
678592ffb21SWarner Losh #define DRM_SCANOUTPOS_VALID        (1 << 0)
679592ffb21SWarner Losh #define DRM_SCANOUTPOS_INVBL        (1 << 1)
680592ffb21SWarner Losh #define DRM_SCANOUTPOS_ACCURATE     (1 << 2)
681592ffb21SWarner Losh 
682592ffb21SWarner Losh struct drm_bus {
683592ffb21SWarner Losh 	int bus_type;
684592ffb21SWarner Losh 	int (*get_irq)(struct drm_device *dev);
685592ffb21SWarner Losh 	void (*free_irq)(struct drm_device *dev);
686592ffb21SWarner Losh 	const char *(*get_name)(struct drm_device *dev);
687592ffb21SWarner Losh 	int (*set_busid)(struct drm_device *dev, struct drm_master *master);
688592ffb21SWarner Losh 	int (*set_unique)(struct drm_device *dev, struct drm_master *master,
689592ffb21SWarner Losh 			  struct drm_unique *unique);
690592ffb21SWarner Losh 	int (*irq_by_busid)(struct drm_device *dev, struct drm_irq_busid *p);
691592ffb21SWarner Losh 	/* hooks that are for PCI */
692592ffb21SWarner Losh 	int (*agp_init)(struct drm_device *dev);
693592ffb21SWarner Losh 
694592ffb21SWarner Losh };
695592ffb21SWarner Losh 
696592ffb21SWarner Losh /**
697592ffb21SWarner Losh  * DRM driver structure. This structure represent the common code for
698592ffb21SWarner Losh  * a family of cards. There will one drm_device for each card present
699592ffb21SWarner Losh  * in this family
700592ffb21SWarner Losh  */
701592ffb21SWarner Losh struct drm_driver {
702592ffb21SWarner Losh 	int (*load) (struct drm_device *, unsigned long flags);
703592ffb21SWarner Losh 	int (*firstopen) (struct drm_device *);
704592ffb21SWarner Losh 	int (*open) (struct drm_device *, struct drm_file *);
705592ffb21SWarner Losh 	void (*preclose) (struct drm_device *, struct drm_file *file_priv);
706592ffb21SWarner Losh 	void (*postclose) (struct drm_device *, struct drm_file *);
707592ffb21SWarner Losh 	void (*lastclose) (struct drm_device *);
708592ffb21SWarner Losh 	int (*unload) (struct drm_device *);
709592ffb21SWarner Losh 	int (*suspend) (struct drm_device *, pm_message_t state);
710592ffb21SWarner Losh 	int (*resume) (struct drm_device *);
711592ffb21SWarner Losh 	int (*dma_ioctl) (struct drm_device *dev, void *data, struct drm_file *file_priv);
712592ffb21SWarner Losh 	int (*dma_quiescent) (struct drm_device *);
713592ffb21SWarner Losh 	int (*context_dtor) (struct drm_device *dev, int context);
714592ffb21SWarner Losh 
715592ffb21SWarner Losh 	/**
716592ffb21SWarner Losh 	 * get_vblank_counter - get raw hardware vblank counter
717592ffb21SWarner Losh 	 * @dev: DRM device
718592ffb21SWarner Losh 	 * @crtc: counter to fetch
719592ffb21SWarner Losh 	 *
720592ffb21SWarner Losh 	 * Driver callback for fetching a raw hardware vblank counter for @crtc.
721592ffb21SWarner Losh 	 * If a device doesn't have a hardware counter, the driver can simply
722592ffb21SWarner Losh 	 * return the value of drm_vblank_count. The DRM core will account for
723592ffb21SWarner Losh 	 * missed vblank events while interrupts where disabled based on system
724592ffb21SWarner Losh 	 * timestamps.
725592ffb21SWarner Losh 	 *
726592ffb21SWarner Losh 	 * Wraparound handling and loss of events due to modesetting is dealt
727592ffb21SWarner Losh 	 * with in the DRM core code.
728592ffb21SWarner Losh 	 *
729592ffb21SWarner Losh 	 * RETURNS
730592ffb21SWarner Losh 	 * Raw vblank counter value.
731592ffb21SWarner Losh 	 */
732592ffb21SWarner Losh 	u32 (*get_vblank_counter) (struct drm_device *dev, int crtc);
733592ffb21SWarner Losh 
734592ffb21SWarner Losh 	/**
735592ffb21SWarner Losh 	 * enable_vblank - enable vblank interrupt events
736592ffb21SWarner Losh 	 * @dev: DRM device
737592ffb21SWarner Losh 	 * @crtc: which irq to enable
738592ffb21SWarner Losh 	 *
739592ffb21SWarner Losh 	 * Enable vblank interrupts for @crtc.  If the device doesn't have
740592ffb21SWarner Losh 	 * a hardware vblank counter, this routine should be a no-op, since
741592ffb21SWarner Losh 	 * interrupts will have to stay on to keep the count accurate.
742592ffb21SWarner Losh 	 *
743592ffb21SWarner Losh 	 * RETURNS
744592ffb21SWarner Losh 	 * Zero on success, appropriate errno if the given @crtc's vblank
745592ffb21SWarner Losh 	 * interrupt cannot be enabled.
746592ffb21SWarner Losh 	 */
747592ffb21SWarner Losh 	int (*enable_vblank) (struct drm_device *dev, int crtc);
748592ffb21SWarner Losh 
749592ffb21SWarner Losh 	/**
750592ffb21SWarner Losh 	 * disable_vblank - disable vblank interrupt events
751592ffb21SWarner Losh 	 * @dev: DRM device
752592ffb21SWarner Losh 	 * @crtc: which irq to enable
753592ffb21SWarner Losh 	 *
754592ffb21SWarner Losh 	 * Disable vblank interrupts for @crtc.  If the device doesn't have
755592ffb21SWarner Losh 	 * a hardware vblank counter, this routine should be a no-op, since
756592ffb21SWarner Losh 	 * interrupts will have to stay on to keep the count accurate.
757592ffb21SWarner Losh 	 */
758592ffb21SWarner Losh 	void (*disable_vblank) (struct drm_device *dev, int crtc);
759592ffb21SWarner Losh 
760592ffb21SWarner Losh 	/**
761592ffb21SWarner Losh 	 * Called by \c drm_device_is_agp.  Typically used to determine if a
762592ffb21SWarner Losh 	 * card is really attached to AGP or not.
763592ffb21SWarner Losh 	 *
764592ffb21SWarner Losh 	 * \param dev  DRM device handle
765592ffb21SWarner Losh 	 *
766592ffb21SWarner Losh 	 * \returns
767592ffb21SWarner Losh 	 * One of three values is returned depending on whether or not the
768592ffb21SWarner Losh 	 * card is absolutely \b not AGP (return of 0), absolutely \b is AGP
769592ffb21SWarner Losh 	 * (return of 1), or may or may not be AGP (return of 2).
770592ffb21SWarner Losh 	 */
771592ffb21SWarner Losh 	int (*device_is_agp) (struct drm_device *dev);
772592ffb21SWarner Losh 
773592ffb21SWarner Losh 	/**
774592ffb21SWarner Losh 	 * Called by vblank timestamping code.
775592ffb21SWarner Losh 	 *
776592ffb21SWarner Losh 	 * Return the current display scanout position from a crtc.
777592ffb21SWarner Losh 	 *
778592ffb21SWarner Losh 	 * \param dev  DRM device.
779592ffb21SWarner Losh 	 * \param crtc Id of the crtc to query.
780592ffb21SWarner Losh 	 * \param *vpos Target location for current vertical scanout position.
781592ffb21SWarner Losh 	 * \param *hpos Target location for current horizontal scanout position.
782592ffb21SWarner Losh 	 *
783592ffb21SWarner Losh 	 * Returns vpos as a positive number while in active scanout area.
784592ffb21SWarner Losh 	 * Returns vpos as a negative number inside vblank, counting the number
785592ffb21SWarner Losh 	 * of scanlines to go until end of vblank, e.g., -1 means "one scanline
786592ffb21SWarner Losh 	 * until start of active scanout / end of vblank."
787592ffb21SWarner Losh 	 *
788592ffb21SWarner Losh 	 * \return Flags, or'ed together as follows:
789592ffb21SWarner Losh 	 *
790592ffb21SWarner Losh 	 * DRM_SCANOUTPOS_VALID = Query successful.
791592ffb21SWarner Losh 	 * DRM_SCANOUTPOS_INVBL = Inside vblank.
792592ffb21SWarner Losh 	 * DRM_SCANOUTPOS_ACCURATE = Returned position is accurate. A lack of
793592ffb21SWarner Losh 	 * this flag means that returned position may be offset by a constant
794592ffb21SWarner Losh 	 * but unknown small number of scanlines wrt. real scanout position.
795592ffb21SWarner Losh 	 *
796592ffb21SWarner Losh 	 */
797592ffb21SWarner Losh 	int (*get_scanout_position) (struct drm_device *dev, int crtc,
798592ffb21SWarner Losh 				     int *vpos, int *hpos);
799592ffb21SWarner Losh 
800592ffb21SWarner Losh 	/**
801592ffb21SWarner Losh 	 * Called by \c drm_get_last_vbltimestamp. Should return a precise
802592ffb21SWarner Losh 	 * timestamp when the most recent VBLANK interval ended or will end.
803592ffb21SWarner Losh 	 *
804592ffb21SWarner Losh 	 * Specifically, the timestamp in @vblank_time should correspond as
805592ffb21SWarner Losh 	 * closely as possible to the time when the first video scanline of
806592ffb21SWarner Losh 	 * the video frame after the end of VBLANK will start scanning out,
807592ffb21SWarner Losh 	 * the time immediately after end of the VBLANK interval. If the
808592ffb21SWarner Losh 	 * @crtc is currently inside VBLANK, this will be a time in the future.
809592ffb21SWarner Losh 	 * If the @crtc is currently scanning out a frame, this will be the
810592ffb21SWarner Losh 	 * past start time of the current scanout. This is meant to adhere
811592ffb21SWarner Losh 	 * to the OpenML OML_sync_control extension specification.
812592ffb21SWarner Losh 	 *
813592ffb21SWarner Losh 	 * \param dev dev DRM device handle.
814592ffb21SWarner Losh 	 * \param crtc crtc for which timestamp should be returned.
815592ffb21SWarner Losh 	 * \param *max_error Maximum allowable timestamp error in nanoseconds.
816592ffb21SWarner Losh 	 *                   Implementation should strive to provide timestamp
817592ffb21SWarner Losh 	 *                   with an error of at most *max_error nanoseconds.
818592ffb21SWarner Losh 	 *                   Returns true upper bound on error for timestamp.
819592ffb21SWarner Losh 	 * \param *vblank_time Target location for returned vblank timestamp.
820592ffb21SWarner Losh 	 * \param flags 0 = Defaults, no special treatment needed.
821592ffb21SWarner Losh 	 * \param       DRM_CALLED_FROM_VBLIRQ = Function is called from vblank
822592ffb21SWarner Losh 	 *	        irq handler. Some drivers need to apply some workarounds
823592ffb21SWarner Losh 	 *              for gpu-specific vblank irq quirks if flag is set.
824592ffb21SWarner Losh 	 *
825592ffb21SWarner Losh 	 * \returns
826592ffb21SWarner Losh 	 * Zero if timestamping isn't supported in current display mode or a
827592ffb21SWarner Losh 	 * negative number on failure. A positive status code on success,
828592ffb21SWarner Losh 	 * which describes how the vblank_time timestamp was computed.
829592ffb21SWarner Losh 	 */
830592ffb21SWarner Losh 	int (*get_vblank_timestamp) (struct drm_device *dev, int crtc,
831592ffb21SWarner Losh 				     int *max_error,
832592ffb21SWarner Losh 				     struct timeval *vblank_time,
833592ffb21SWarner Losh 				     unsigned flags);
834592ffb21SWarner Losh 
835592ffb21SWarner Losh 	/* these have to be filled in */
836592ffb21SWarner Losh 
837592ffb21SWarner Losh 	irqreturn_t(*irq_handler) (DRM_IRQ_ARGS);
838592ffb21SWarner Losh 	void (*irq_preinstall) (struct drm_device *dev);
839592ffb21SWarner Losh 	int (*irq_postinstall) (struct drm_device *dev);
840592ffb21SWarner Losh 	void (*irq_uninstall) (struct drm_device *dev);
841592ffb21SWarner Losh 	void (*set_version) (struct drm_device *dev,
842592ffb21SWarner Losh 			     struct drm_set_version *sv);
843592ffb21SWarner Losh 
844592ffb21SWarner Losh 	/* Master routines */
845592ffb21SWarner Losh 	int (*master_create)(struct drm_device *dev, struct drm_master *master);
846592ffb21SWarner Losh 	void (*master_destroy)(struct drm_device *dev, struct drm_master *master);
847592ffb21SWarner Losh 	/**
848592ffb21SWarner Losh 	 * master_set is called whenever the minor master is set.
849592ffb21SWarner Losh 	 * master_drop is called whenever the minor master is dropped.
850592ffb21SWarner Losh 	 */
851592ffb21SWarner Losh 
852592ffb21SWarner Losh 	int (*master_set)(struct drm_device *dev, struct drm_file *file_priv,
853592ffb21SWarner Losh 			  bool from_open);
854592ffb21SWarner Losh 	void (*master_drop)(struct drm_device *dev, struct drm_file *file_priv,
855592ffb21SWarner Losh 			    bool from_release);
856592ffb21SWarner Losh 
857592ffb21SWarner Losh 	/**
858592ffb21SWarner Losh 	 * Driver-specific constructor for drm_gem_objects, to set up
859592ffb21SWarner Losh 	 * obj->driver_private.
860592ffb21SWarner Losh 	 *
861592ffb21SWarner Losh 	 * Returns 0 on success.
862592ffb21SWarner Losh 	 */
863592ffb21SWarner Losh 	int (*gem_init_object) (struct drm_gem_object *obj);
864592ffb21SWarner Losh 	void (*gem_free_object) (struct drm_gem_object *obj);
865592ffb21SWarner Losh 	int (*gem_open_object) (struct drm_gem_object *, struct drm_file *);
866592ffb21SWarner Losh 	void (*gem_close_object) (struct drm_gem_object *, struct drm_file *);
867592ffb21SWarner Losh 
868592ffb21SWarner Losh #ifdef FREEBSD_NOTYET
869592ffb21SWarner Losh 	/* prime: */
870592ffb21SWarner Losh 	/* export handle -> fd (see drm_gem_prime_handle_to_fd() helper) */
871592ffb21SWarner Losh 	int (*prime_handle_to_fd)(struct drm_device *dev, struct drm_file *file_priv,
872592ffb21SWarner Losh 				uint32_t handle, uint32_t flags, int *prime_fd);
873592ffb21SWarner Losh 	/* import fd -> handle (see drm_gem_prime_fd_to_handle() helper) */
874592ffb21SWarner Losh 	int (*prime_fd_to_handle)(struct drm_device *dev, struct drm_file *file_priv,
875592ffb21SWarner Losh 				int prime_fd, uint32_t *handle);
876592ffb21SWarner Losh 	/* export GEM -> dmabuf */
877592ffb21SWarner Losh 	struct dma_buf * (*gem_prime_export)(struct drm_device *dev,
878592ffb21SWarner Losh 				struct drm_gem_object *obj, int flags);
879592ffb21SWarner Losh 	/* import dmabuf -> GEM */
880592ffb21SWarner Losh 	struct drm_gem_object * (*gem_prime_import)(struct drm_device *dev,
881592ffb21SWarner Losh 				struct dma_buf *dma_buf);
882592ffb21SWarner Losh #endif /* defined(FREEBSD_NOTYET) */
883592ffb21SWarner Losh 
884592ffb21SWarner Losh 	/* dumb alloc support */
885592ffb21SWarner Losh 	int (*dumb_create)(struct drm_file *file_priv,
886592ffb21SWarner Losh 			   struct drm_device *dev,
887592ffb21SWarner Losh 			   struct drm_mode_create_dumb *args);
888592ffb21SWarner Losh 	int (*dumb_map_offset)(struct drm_file *file_priv,
889592ffb21SWarner Losh 			       struct drm_device *dev, uint32_t handle,
890592ffb21SWarner Losh 			       uint64_t *offset);
891592ffb21SWarner Losh 	int (*dumb_destroy)(struct drm_file *file_priv,
892592ffb21SWarner Losh 			    struct drm_device *dev,
893592ffb21SWarner Losh 			    uint32_t handle);
894592ffb21SWarner Losh 
895592ffb21SWarner Losh 	/* Driver private ops for this object */
896592ffb21SWarner Losh 	struct cdev_pager_ops *gem_pager_ops;
897592ffb21SWarner Losh 
898592ffb21SWarner Losh 	int	(*sysctl_init)(struct drm_device *dev,
899592ffb21SWarner Losh 		    struct sysctl_ctx_list *ctx, struct sysctl_oid *top);
900592ffb21SWarner Losh 	void	(*sysctl_cleanup)(struct drm_device *dev);
901592ffb21SWarner Losh 
902592ffb21SWarner Losh 	int major;
903592ffb21SWarner Losh 	int minor;
904592ffb21SWarner Losh 	int patchlevel;
905592ffb21SWarner Losh 	char *name;
906592ffb21SWarner Losh 	char *desc;
907592ffb21SWarner Losh 	char *date;
908592ffb21SWarner Losh 
909592ffb21SWarner Losh 	u32 driver_features;
910592ffb21SWarner Losh 	int dev_priv_size;
911592ffb21SWarner Losh 	struct drm_ioctl_desc *ioctls;
912592ffb21SWarner Losh 	int num_ioctls;
913592ffb21SWarner Losh 	struct drm_bus *bus;
914592ffb21SWarner Losh #ifdef COMPAT_FREEBSD32
915592ffb21SWarner Losh 	struct drm_ioctl_desc *compat_ioctls;
916592ffb21SWarner Losh 	int *num_compat_ioctls;
917592ffb21SWarner Losh #endif
918592ffb21SWarner Losh 
919592ffb21SWarner Losh 	int	buf_priv_size;
920592ffb21SWarner Losh };
921592ffb21SWarner Losh 
922592ffb21SWarner Losh #define DRM_MINOR_UNASSIGNED 0
923592ffb21SWarner Losh #define DRM_MINOR_LEGACY 1
924592ffb21SWarner Losh #define DRM_MINOR_CONTROL 2
925592ffb21SWarner Losh #define DRM_MINOR_RENDER 3
926592ffb21SWarner Losh 
927592ffb21SWarner Losh /**
928592ffb21SWarner Losh  * DRM minor structure. This structure represents a drm minor number.
929592ffb21SWarner Losh  */
930592ffb21SWarner Losh struct drm_minor {
931592ffb21SWarner Losh 	int index;			/**< Minor device number */
932592ffb21SWarner Losh 	int type;                       /**< Control or render */
933592ffb21SWarner Losh 	struct cdev *device;		/**< Device number for mknod */
934592ffb21SWarner Losh 	device_t kdev;			/**< OS device */
935592ffb21SWarner Losh 	struct drm_device *dev;
936592ffb21SWarner Losh 
937592ffb21SWarner Losh 	struct drm_master *master; /* currently active master for this node */
938592ffb21SWarner Losh 	struct list_head master_list;
939592ffb21SWarner Losh 	struct drm_mode_group mode_group;
940592ffb21SWarner Losh 
941592ffb21SWarner Losh 	struct sigio *buf_sigio;	/* Processes waiting for SIGIO     */
942592ffb21SWarner Losh };
943592ffb21SWarner Losh 
944592ffb21SWarner Losh /* mode specified on the command line */
945592ffb21SWarner Losh struct drm_cmdline_mode {
946592ffb21SWarner Losh 	bool specified;
947592ffb21SWarner Losh 	bool refresh_specified;
948592ffb21SWarner Losh 	bool bpp_specified;
949592ffb21SWarner Losh 	int xres, yres;
950592ffb21SWarner Losh 	int bpp;
951592ffb21SWarner Losh 	int refresh;
952592ffb21SWarner Losh 	bool rb;
953592ffb21SWarner Losh 	bool interlace;
954592ffb21SWarner Losh 	bool cvt;
955592ffb21SWarner Losh 	bool margins;
956592ffb21SWarner Losh 	enum drm_connector_force force;
957592ffb21SWarner Losh };
958592ffb21SWarner Losh 
959592ffb21SWarner Losh 
960592ffb21SWarner Losh struct drm_pending_vblank_event {
961592ffb21SWarner Losh 	struct drm_pending_event base;
962592ffb21SWarner Losh 	int pipe;
963592ffb21SWarner Losh 	struct drm_event_vblank event;
964592ffb21SWarner Losh };
965592ffb21SWarner Losh 
966592ffb21SWarner Losh /**
967592ffb21SWarner Losh  * DRM device structure. This structure represent a complete card that
968592ffb21SWarner Losh  * may contain multiple heads.
969592ffb21SWarner Losh  */
970592ffb21SWarner Losh struct drm_device {
971592ffb21SWarner Losh 	int if_version;			/**< Highest interface version set */
972592ffb21SWarner Losh 
973592ffb21SWarner Losh 	/** \name Locks */
974592ffb21SWarner Losh 	/*@{ */
975592ffb21SWarner Losh 	struct mtx count_lock;		/**< For inuse, drm_device::open_count, drm_device::buf_use */
976592ffb21SWarner Losh 	struct sx dev_struct_lock;	/**< For others */
977592ffb21SWarner Losh 	/*@} */
978592ffb21SWarner Losh 
979592ffb21SWarner Losh 	/** \name Usage Counters */
980592ffb21SWarner Losh 	/*@{ */
981592ffb21SWarner Losh 	int open_count;			/**< Outstanding files open */
982592ffb21SWarner Losh 	atomic_t ioctl_count;		/**< Outstanding IOCTLs pending */
983592ffb21SWarner Losh 	atomic_t vma_count;		/**< Outstanding vma areas open */
984592ffb21SWarner Losh 	int buf_use;			/**< Buffers in use -- cannot alloc */
985592ffb21SWarner Losh 	atomic_t buf_alloc;		/**< Buffer allocation in progress */
986592ffb21SWarner Losh 	/*@} */
987592ffb21SWarner Losh 
988592ffb21SWarner Losh 	/** \name Performance counters */
989592ffb21SWarner Losh 	/*@{ */
990592ffb21SWarner Losh 	unsigned long counters;
991592ffb21SWarner Losh 	enum drm_stat_type types[15];
992592ffb21SWarner Losh 	atomic_t counts[15];
993592ffb21SWarner Losh 	/*@} */
994592ffb21SWarner Losh 
995592ffb21SWarner Losh 	struct list_head filelist;
996592ffb21SWarner Losh 
997592ffb21SWarner Losh 	/** \name Memory management */
998592ffb21SWarner Losh 	/*@{ */
999592ffb21SWarner Losh 	struct list_head maplist;	/**< Linked list of regions */
1000592ffb21SWarner Losh 	int map_count;			/**< Number of mappable regions */
1001592ffb21SWarner Losh 	struct drm_open_hash map_hash;	/**< User token hash table for maps */
1002592ffb21SWarner Losh 
1003592ffb21SWarner Losh 	/** \name Context handle management */
1004592ffb21SWarner Losh 	/*@{ */
1005592ffb21SWarner Losh 	struct list_head ctxlist;	/**< Linked list of context handles */
1006592ffb21SWarner Losh 	int ctx_count;			/**< Number of context handles */
1007592ffb21SWarner Losh 	struct mtx ctxlist_mutex;	/**< For ctxlist */
1008592ffb21SWarner Losh 	drm_local_map_t **context_sareas;
1009592ffb21SWarner Losh 	int max_context;
1010592ffb21SWarner Losh 	unsigned long *ctx_bitmap;
1011592ffb21SWarner Losh 
1012592ffb21SWarner Losh 	/*@} */
1013592ffb21SWarner Losh 
1014592ffb21SWarner Losh 	/** \name DMA support */
1015592ffb21SWarner Losh 	/*@{ */
1016592ffb21SWarner Losh 	struct drm_device_dma *dma;		/**< Optional pointer for DMA support */
1017592ffb21SWarner Losh 	/*@} */
1018592ffb21SWarner Losh 
1019592ffb21SWarner Losh 	/** \name Context support */
1020592ffb21SWarner Losh 	/*@{ */
1021592ffb21SWarner Losh 	int irq_enabled;		/**< True if irq handler is enabled */
1022592ffb21SWarner Losh 	atomic_t context_flag;		/**< Context swapping flag */
1023592ffb21SWarner Losh 	atomic_t interrupt_flag;	/**< Interruption handler flag */
1024592ffb21SWarner Losh 	atomic_t dma_flag;		/**< DMA dispatch flag */
1025592ffb21SWarner Losh 	wait_queue_head_t context_wait;	/**< Processes waiting on ctx switch */
1026592ffb21SWarner Losh 	int last_checked;		/**< Last context checked for DMA */
1027592ffb21SWarner Losh 	int last_context;		/**< Last current context */
1028592ffb21SWarner Losh 	unsigned long last_switch;	/**< jiffies at last context switch */
1029592ffb21SWarner Losh 	/*@} */
1030592ffb21SWarner Losh 
1031592ffb21SWarner Losh 	/** \name VBLANK IRQ support */
1032592ffb21SWarner Losh 	/*@{ */
1033592ffb21SWarner Losh 
1034592ffb21SWarner Losh 	/*
1035592ffb21SWarner Losh 	 * At load time, disabling the vblank interrupt won't be allowed since
1036592ffb21SWarner Losh 	 * old clients may not call the modeset ioctl and therefore misbehave.
1037592ffb21SWarner Losh 	 * Once the modeset ioctl *has* been called though, we can safely
1038592ffb21SWarner Losh 	 * disable them when unused.
1039592ffb21SWarner Losh 	 */
1040592ffb21SWarner Losh 	int vblank_disable_allowed;
1041592ffb21SWarner Losh 
1042592ffb21SWarner Losh 	atomic_t *_vblank_count;        /**< number of VBLANK interrupts (driver must alloc the right number of counters) */
1043592ffb21SWarner Losh 	struct timeval *_vblank_time;   /**< timestamp of current vblank_count (drivers must alloc right number of fields) */
1044592ffb21SWarner Losh 	struct mtx vblank_time_lock;    /**< Protects vblank count and time updates during vblank enable/disable */
1045592ffb21SWarner Losh 	struct mtx vbl_lock;
1046592ffb21SWarner Losh 	atomic_t *vblank_refcount;      /* number of users of vblank interruptsper crtc */
1047592ffb21SWarner Losh 	u32 *last_vblank;               /* protected by dev->vbl_lock, used */
1048592ffb21SWarner Losh 					/* for wraparound handling */
1049592ffb21SWarner Losh 	int *vblank_enabled;            /* so we don't call enable more than
1050592ffb21SWarner Losh 					   once per disable */
1051592ffb21SWarner Losh 	int *vblank_inmodeset;          /* Display driver is setting mode */
1052592ffb21SWarner Losh 	u32 *last_vblank_wait;		/* Last vblank seqno waited per CRTC */
1053592ffb21SWarner Losh 	struct callout vblank_disable_callout;
1054592ffb21SWarner Losh 
1055592ffb21SWarner Losh 	u32 max_vblank_count;           /**< size of vblank counter register */
1056592ffb21SWarner Losh 
1057592ffb21SWarner Losh 	/**
1058592ffb21SWarner Losh 	 * List of events
1059592ffb21SWarner Losh 	 */
1060592ffb21SWarner Losh 	struct list_head vblank_event_list;
1061592ffb21SWarner Losh 	struct mtx event_lock;
1062592ffb21SWarner Losh 
1063592ffb21SWarner Losh 	/*@} */
1064592ffb21SWarner Losh 
1065592ffb21SWarner Losh 	struct drm_agp_head *agp;	/**< AGP data */
1066592ffb21SWarner Losh 
1067592ffb21SWarner Losh 	device_t dev;			/* Device instance from newbus */
1068592ffb21SWarner Losh 	uint16_t pci_device;		/* PCI device id */
1069592ffb21SWarner Losh 	uint16_t pci_vendor;		/* PCI vendor id */
1070592ffb21SWarner Losh 	uint16_t pci_subdevice;		/* PCI subsystem device id */
1071592ffb21SWarner Losh 	uint16_t pci_subvendor;		/* PCI subsystem vendor id */
1072592ffb21SWarner Losh 
1073592ffb21SWarner Losh 	struct drm_sg_mem *sg;	/**< Scatter gather memory */
1074592ffb21SWarner Losh 	unsigned int num_crtcs;                  /**< Number of CRTCs on this device */
1075592ffb21SWarner Losh 	void *dev_private;		/**< device private data */
1076592ffb21SWarner Losh 	void *mm_private;
1077592ffb21SWarner Losh 	struct drm_sigdata sigdata;	   /**< For block_all_signals */
1078592ffb21SWarner Losh 	sigset_t sigmask;
1079592ffb21SWarner Losh 
1080592ffb21SWarner Losh 	struct drm_driver *driver;
1081592ffb21SWarner Losh 	struct drm_local_map *agp_buffer_map;
1082592ffb21SWarner Losh 	unsigned int agp_buffer_token;
1083592ffb21SWarner Losh 	struct drm_minor *control;		/**< Control node for card */
1084592ffb21SWarner Losh 	struct drm_minor *primary;		/**< render type primary screen head */
1085592ffb21SWarner Losh 
1086592ffb21SWarner Losh         struct drm_mode_config mode_config;	/**< Current mode config */
1087592ffb21SWarner Losh 
1088592ffb21SWarner Losh 	/** \name GEM information */
1089592ffb21SWarner Losh 	/*@{ */
1090592ffb21SWarner Losh 	struct sx object_name_lock;
1091592ffb21SWarner Losh 	struct drm_gem_names object_names;
1092592ffb21SWarner Losh 	/*@} */
1093592ffb21SWarner Losh 	int switch_power_state;
1094592ffb21SWarner Losh 
1095592ffb21SWarner Losh 	atomic_t unplugged; /* device has been unplugged or gone away */
1096592ffb21SWarner Losh 
1097592ffb21SWarner Losh 				/* Locks */
1098592ffb21SWarner Losh 	struct mtx	  dma_lock;	/* protects dev->dma */
1099592ffb21SWarner Losh 	struct mtx	  irq_lock;	/* protects irq condition checks */
1100592ffb21SWarner Losh 
1101592ffb21SWarner Losh 				/* Context support */
1102592ffb21SWarner Losh 	int		  irq;		/* Interrupt used by board	   */
1103592ffb21SWarner Losh 	int		  msi_enabled;	/* MSI enabled */
1104592ffb21SWarner Losh 	int		  irqrid;	/* Interrupt used by board */
1105592ffb21SWarner Losh 	struct resource   *irqr;	/* Resource for interrupt used by board	   */
1106592ffb21SWarner Losh 	void		  *irqh;	/* Handle from bus_setup_intr      */
1107592ffb21SWarner Losh 
1108592ffb21SWarner Losh 	/* Storage of resource pointers for drm_get_resource_* */
1109592ffb21SWarner Losh #define	DRM_MAX_PCI_RESOURCE	6
1110592ffb21SWarner Losh 	struct resource   *pcir[DRM_MAX_PCI_RESOURCE];
1111592ffb21SWarner Losh 	int		  pcirid[DRM_MAX_PCI_RESOURCE];
1112592ffb21SWarner Losh 	struct mtx	  pcir_lock;
1113592ffb21SWarner Losh 
1114592ffb21SWarner Losh 	int		  pci_domain;
1115592ffb21SWarner Losh 	int		  pci_bus;
1116592ffb21SWarner Losh 	int		  pci_slot;
1117592ffb21SWarner Losh 	int		  pci_func;
1118592ffb21SWarner Losh 
1119592ffb21SWarner Losh 				/* Sysctl support */
1120592ffb21SWarner Losh 	struct drm_sysctl_info *sysctl;
1121592ffb21SWarner Losh 	int		  sysctl_node_idx;
1122592ffb21SWarner Losh 
1123592ffb21SWarner Losh 	void		  *drm_ttm_bdev;
1124592ffb21SWarner Losh 
1125592ffb21SWarner Losh 	void *sysctl_private;
1126592ffb21SWarner Losh 	char busid_str[128];
1127592ffb21SWarner Losh 	int modesetting;
1128592ffb21SWarner Losh 
1129592ffb21SWarner Losh 	const drm_pci_id_list_t *id_entry;	/* PCI ID, name, and chipset private */
1130592ffb21SWarner Losh };
1131592ffb21SWarner Losh 
1132592ffb21SWarner Losh #define DRM_SWITCH_POWER_ON 0
1133592ffb21SWarner Losh #define DRM_SWITCH_POWER_OFF 1
1134592ffb21SWarner Losh #define DRM_SWITCH_POWER_CHANGING 2
1135592ffb21SWarner Losh 
drm_core_check_feature(struct drm_device * dev,int feature)1136592ffb21SWarner Losh static __inline__ int drm_core_check_feature(struct drm_device *dev,
1137592ffb21SWarner Losh 					     int feature)
1138592ffb21SWarner Losh {
1139592ffb21SWarner Losh 	return ((dev->driver->driver_features & feature) ? 1 : 0);
1140592ffb21SWarner Losh }
1141592ffb21SWarner Losh 
drm_dev_to_irq(struct drm_device * dev)1142592ffb21SWarner Losh static inline int drm_dev_to_irq(struct drm_device *dev)
1143592ffb21SWarner Losh {
1144592ffb21SWarner Losh 	return dev->driver->bus->get_irq(dev);
1145592ffb21SWarner Losh }
1146592ffb21SWarner Losh 
1147592ffb21SWarner Losh 
1148592ffb21SWarner Losh #if __OS_HAS_AGP
drm_core_has_AGP(struct drm_device * dev)1149592ffb21SWarner Losh static inline int drm_core_has_AGP(struct drm_device *dev)
1150592ffb21SWarner Losh {
1151592ffb21SWarner Losh 	return drm_core_check_feature(dev, DRIVER_USE_AGP);
1152592ffb21SWarner Losh }
1153592ffb21SWarner Losh #else
1154592ffb21SWarner Losh #define drm_core_has_AGP(dev) (0)
1155592ffb21SWarner Losh #endif
1156592ffb21SWarner Losh 
1157592ffb21SWarner Losh #if __OS_HAS_MTRR
drm_core_has_MTRR(struct drm_device * dev)1158592ffb21SWarner Losh static inline int drm_core_has_MTRR(struct drm_device *dev)
1159592ffb21SWarner Losh {
1160592ffb21SWarner Losh 	return drm_core_check_feature(dev, DRIVER_USE_MTRR);
1161592ffb21SWarner Losh }
1162592ffb21SWarner Losh 
1163592ffb21SWarner Losh #define DRM_MTRR_WC		MDF_WRITECOMBINE
1164592ffb21SWarner Losh 
1165592ffb21SWarner Losh int drm_mtrr_add(unsigned long offset, unsigned long size, unsigned int flags);
1166592ffb21SWarner Losh int drm_mtrr_del(int handle, unsigned long offset, unsigned long size, unsigned int flags);
1167592ffb21SWarner Losh 
1168592ffb21SWarner Losh #else
1169592ffb21SWarner Losh #define drm_core_has_MTRR(dev) (0)
1170592ffb21SWarner Losh 
1171592ffb21SWarner Losh #define DRM_MTRR_WC		0
1172592ffb21SWarner Losh 
drm_mtrr_add(unsigned long offset,unsigned long size,unsigned int flags)1173592ffb21SWarner Losh static inline int drm_mtrr_add(unsigned long offset, unsigned long size,
1174592ffb21SWarner Losh 			       unsigned int flags)
1175592ffb21SWarner Losh {
1176592ffb21SWarner Losh 	return 0;
1177592ffb21SWarner Losh }
1178592ffb21SWarner Losh 
drm_mtrr_del(int handle,unsigned long offset,unsigned long size,unsigned int flags)1179592ffb21SWarner Losh static inline int drm_mtrr_del(int handle, unsigned long offset,
1180592ffb21SWarner Losh 			       unsigned long size, unsigned int flags)
1181592ffb21SWarner Losh {
1182592ffb21SWarner Losh 	return 0;
1183592ffb21SWarner Losh }
1184592ffb21SWarner Losh #endif
1185592ffb21SWarner Losh 
1186592ffb21SWarner Losh /******************************************************************/
1187592ffb21SWarner Losh /** \name Internal function definitions */
1188592ffb21SWarner Losh /*@{*/
1189592ffb21SWarner Losh 
1190592ffb21SWarner Losh 				/* Driver support (drm_drv.h) */
1191592ffb21SWarner Losh d_ioctl_t drm_ioctl;
1192592ffb21SWarner Losh extern int drm_lastclose(struct drm_device *dev);
1193592ffb21SWarner Losh 
1194592ffb21SWarner Losh 				/* Device support (drm_fops.h) */
1195592ffb21SWarner Losh extern struct sx drm_global_mutex;
1196592ffb21SWarner Losh d_open_t drm_open;
1197592ffb21SWarner Losh d_read_t drm_read;
1198592ffb21SWarner Losh extern void drm_release(void *data);
1199592ffb21SWarner Losh 
1200592ffb21SWarner Losh 				/* Mapping support (drm_vm.h) */
1201592ffb21SWarner Losh d_mmap_t drm_mmap;
1202592ffb21SWarner Losh int	drm_mmap_single(struct cdev *kdev, vm_ooffset_t *offset,
1203592ffb21SWarner Losh 	    vm_size_t size, struct vm_object **obj_res, int nprot);
1204592ffb21SWarner Losh d_poll_t drm_poll;
1205592ffb21SWarner Losh 
1206592ffb21SWarner Losh 
1207592ffb21SWarner Losh 				/* Misc. IOCTL support (drm_ioctl.h) */
1208592ffb21SWarner Losh extern int drm_irq_by_busid(struct drm_device *dev, void *data,
1209592ffb21SWarner Losh 			    struct drm_file *file_priv);
1210592ffb21SWarner Losh extern int drm_getunique(struct drm_device *dev, void *data,
1211592ffb21SWarner Losh 			 struct drm_file *file_priv);
1212592ffb21SWarner Losh extern int drm_setunique(struct drm_device *dev, void *data,
1213592ffb21SWarner Losh 			 struct drm_file *file_priv);
1214592ffb21SWarner Losh extern int drm_getmap(struct drm_device *dev, void *data,
1215592ffb21SWarner Losh 		      struct drm_file *file_priv);
1216592ffb21SWarner Losh extern int drm_getclient(struct drm_device *dev, void *data,
1217592ffb21SWarner Losh 			 struct drm_file *file_priv);
1218592ffb21SWarner Losh extern int drm_getstats(struct drm_device *dev, void *data,
1219592ffb21SWarner Losh 			struct drm_file *file_priv);
1220592ffb21SWarner Losh extern int drm_getcap(struct drm_device *dev, void *data,
1221592ffb21SWarner Losh 		      struct drm_file *file_priv);
1222592ffb21SWarner Losh extern int drm_setversion(struct drm_device *dev, void *data,
1223592ffb21SWarner Losh 			  struct drm_file *file_priv);
1224592ffb21SWarner Losh extern int drm_noop(struct drm_device *dev, void *data,
1225592ffb21SWarner Losh 		    struct drm_file *file_priv);
1226592ffb21SWarner Losh 
1227592ffb21SWarner Losh 				/* Context IOCTL support (drm_context.h) */
1228592ffb21SWarner Losh extern int drm_resctx(struct drm_device *dev, void *data,
1229592ffb21SWarner Losh 		      struct drm_file *file_priv);
1230592ffb21SWarner Losh extern int drm_addctx(struct drm_device *dev, void *data,
1231592ffb21SWarner Losh 		      struct drm_file *file_priv);
1232592ffb21SWarner Losh extern int drm_modctx(struct drm_device *dev, void *data,
1233592ffb21SWarner Losh 		      struct drm_file *file_priv);
1234592ffb21SWarner Losh extern int drm_getctx(struct drm_device *dev, void *data,
1235592ffb21SWarner Losh 		      struct drm_file *file_priv);
1236592ffb21SWarner Losh extern int drm_switchctx(struct drm_device *dev, void *data,
1237592ffb21SWarner Losh 			 struct drm_file *file_priv);
1238592ffb21SWarner Losh extern int drm_newctx(struct drm_device *dev, void *data,
1239592ffb21SWarner Losh 		      struct drm_file *file_priv);
1240592ffb21SWarner Losh extern int drm_rmctx(struct drm_device *dev, void *data,
1241592ffb21SWarner Losh 		     struct drm_file *file_priv);
1242592ffb21SWarner Losh 
1243592ffb21SWarner Losh extern int drm_ctxbitmap_init(struct drm_device *dev);
1244592ffb21SWarner Losh extern void drm_ctxbitmap_cleanup(struct drm_device *dev);
1245592ffb21SWarner Losh extern void drm_ctxbitmap_free(struct drm_device *dev, int ctx_handle);
1246592ffb21SWarner Losh 
1247592ffb21SWarner Losh extern int drm_setsareactx(struct drm_device *dev, void *data,
1248592ffb21SWarner Losh 			   struct drm_file *file_priv);
1249592ffb21SWarner Losh extern int drm_getsareactx(struct drm_device *dev, void *data,
1250592ffb21SWarner Losh 			   struct drm_file *file_priv);
1251592ffb21SWarner Losh 
1252592ffb21SWarner Losh 				/* Authentication IOCTL support (drm_auth.h) */
1253592ffb21SWarner Losh extern int drm_getmagic(struct drm_device *dev, void *data,
1254592ffb21SWarner Losh 			struct drm_file *file_priv);
1255592ffb21SWarner Losh extern int drm_authmagic(struct drm_device *dev, void *data,
1256592ffb21SWarner Losh 			 struct drm_file *file_priv);
1257592ffb21SWarner Losh extern int drm_remove_magic(struct drm_master *master, drm_magic_t magic);
1258592ffb21SWarner Losh 
1259592ffb21SWarner Losh /* Cache management (drm_cache.c) */
1260592ffb21SWarner Losh void drm_clflush_pages(vm_page_t *pages, unsigned long num_pages);
1261592ffb21SWarner Losh void drm_clflush_virt_range(char *addr, unsigned long length);
1262592ffb21SWarner Losh 
1263592ffb21SWarner Losh 				/* Locking IOCTL support (drm_lock.h) */
1264592ffb21SWarner Losh extern int drm_lock(struct drm_device *dev, void *data,
1265592ffb21SWarner Losh 		    struct drm_file *file_priv);
1266592ffb21SWarner Losh extern int drm_unlock(struct drm_device *dev, void *data,
1267592ffb21SWarner Losh 		      struct drm_file *file_priv);
1268592ffb21SWarner Losh extern int drm_lock_free(struct drm_lock_data *lock_data, unsigned int context);
1269592ffb21SWarner Losh extern void drm_idlelock_take(struct drm_lock_data *lock_data);
1270592ffb21SWarner Losh extern void drm_idlelock_release(struct drm_lock_data *lock_data);
1271592ffb21SWarner Losh 
1272592ffb21SWarner Losh /*
1273592ffb21SWarner Losh  * These are exported to drivers so that they can implement fencing using
1274592ffb21SWarner Losh  * DMA quiscent + idle. DMA quiescent usually requires the hardware lock.
1275592ffb21SWarner Losh  */
1276592ffb21SWarner Losh 
1277592ffb21SWarner Losh extern int drm_i_have_hw_lock(struct drm_device *dev, struct drm_file *file_priv);
1278592ffb21SWarner Losh 
1279592ffb21SWarner Losh 				/* Buffer management support (drm_bufs.h) */
1280592ffb21SWarner Losh extern int drm_addbufs_agp(struct drm_device *dev, struct drm_buf_desc * request);
1281592ffb21SWarner Losh extern int drm_addbufs_pci(struct drm_device *dev, struct drm_buf_desc * request);
1282592ffb21SWarner Losh extern int drm_addmap(struct drm_device *dev, resource_size_t offset,
1283592ffb21SWarner Losh 		      unsigned int size, enum drm_map_type type,
1284592ffb21SWarner Losh 		      enum drm_map_flags flags, struct drm_local_map **map_ptr);
1285592ffb21SWarner Losh extern int drm_addmap_ioctl(struct drm_device *dev, void *data,
1286592ffb21SWarner Losh 			    struct drm_file *file_priv);
1287592ffb21SWarner Losh extern int drm_rmmap(struct drm_device *dev, struct drm_local_map *map);
1288592ffb21SWarner Losh extern int drm_rmmap_locked(struct drm_device *dev, struct drm_local_map *map);
1289592ffb21SWarner Losh extern int drm_rmmap_ioctl(struct drm_device *dev, void *data,
1290592ffb21SWarner Losh 			   struct drm_file *file_priv);
1291592ffb21SWarner Losh extern int drm_addbufs(struct drm_device *dev, void *data,
1292592ffb21SWarner Losh 		       struct drm_file *file_priv);
1293592ffb21SWarner Losh extern int drm_infobufs(struct drm_device *dev, void *data,
1294592ffb21SWarner Losh 			struct drm_file *file_priv);
1295592ffb21SWarner Losh extern int drm_markbufs(struct drm_device *dev, void *data,
1296592ffb21SWarner Losh 			struct drm_file *file_priv);
1297592ffb21SWarner Losh extern int drm_freebufs(struct drm_device *dev, void *data,
1298592ffb21SWarner Losh 			struct drm_file *file_priv);
1299592ffb21SWarner Losh extern int drm_mapbufs(struct drm_device *dev, void *data,
1300592ffb21SWarner Losh 		       struct drm_file *file_priv);
1301592ffb21SWarner Losh extern int drm_order(unsigned long size);
1302592ffb21SWarner Losh 
1303592ffb21SWarner Losh 				/* DMA support (drm_dma.h) */
1304592ffb21SWarner Losh extern int drm_dma_setup(struct drm_device *dev);
1305592ffb21SWarner Losh extern void drm_dma_takedown(struct drm_device *dev);
1306592ffb21SWarner Losh extern void drm_free_buffer(struct drm_device *dev, struct drm_buf * buf);
1307592ffb21SWarner Losh extern void drm_core_reclaim_buffers(struct drm_device *dev,
1308592ffb21SWarner Losh 				     struct drm_file *filp);
1309592ffb21SWarner Losh 
1310592ffb21SWarner Losh 				/* IRQ support (drm_irq.h) */
1311592ffb21SWarner Losh extern int drm_control(struct drm_device *dev, void *data,
1312592ffb21SWarner Losh 		       struct drm_file *file_priv);
1313592ffb21SWarner Losh extern int drm_irq_install(struct drm_device *dev);
1314592ffb21SWarner Losh extern int drm_irq_uninstall(struct drm_device *dev);
1315592ffb21SWarner Losh 
1316592ffb21SWarner Losh extern int drm_vblank_init(struct drm_device *dev, int num_crtcs);
1317592ffb21SWarner Losh extern int drm_wait_vblank(struct drm_device *dev, void *data,
1318592ffb21SWarner Losh 			   struct drm_file *filp);
1319592ffb21SWarner Losh extern int drm_vblank_wait(struct drm_device *dev, unsigned int *vbl_seq);
1320592ffb21SWarner Losh extern u32 drm_vblank_count(struct drm_device *dev, int crtc);
1321592ffb21SWarner Losh extern u32 drm_vblank_count_and_time(struct drm_device *dev, int crtc,
1322592ffb21SWarner Losh 				     struct timeval *vblanktime);
1323592ffb21SWarner Losh extern void drm_send_vblank_event(struct drm_device *dev, int crtc,
1324592ffb21SWarner Losh 				     struct drm_pending_vblank_event *e);
1325592ffb21SWarner Losh extern bool drm_handle_vblank(struct drm_device *dev, int crtc);
1326592ffb21SWarner Losh extern int drm_vblank_get(struct drm_device *dev, int crtc);
1327592ffb21SWarner Losh extern void drm_vblank_put(struct drm_device *dev, int crtc);
1328592ffb21SWarner Losh extern void drm_vblank_off(struct drm_device *dev, int crtc);
1329592ffb21SWarner Losh extern void drm_vblank_cleanup(struct drm_device *dev);
1330592ffb21SWarner Losh extern u32 drm_get_last_vbltimestamp(struct drm_device *dev, int crtc,
1331592ffb21SWarner Losh 				     struct timeval *tvblank, unsigned flags);
1332592ffb21SWarner Losh extern int drm_calc_vbltimestamp_from_scanoutpos(struct drm_device *dev,
1333592ffb21SWarner Losh 						 int crtc, int *max_error,
1334592ffb21SWarner Losh 						 struct timeval *vblank_time,
1335592ffb21SWarner Losh 						 unsigned flags,
1336592ffb21SWarner Losh 						 struct drm_crtc *refcrtc);
1337592ffb21SWarner Losh extern void drm_calc_timestamping_constants(struct drm_crtc *crtc);
1338592ffb21SWarner Losh 
1339592ffb21SWarner Losh extern bool
1340592ffb21SWarner Losh drm_mode_parse_command_line_for_connector(const char *mode_option,
1341592ffb21SWarner Losh 					  struct drm_connector *connector,
1342592ffb21SWarner Losh 					  struct drm_cmdline_mode *mode);
1343592ffb21SWarner Losh 
1344592ffb21SWarner Losh extern struct drm_display_mode *
1345592ffb21SWarner Losh drm_mode_create_from_cmdline_mode(struct drm_device *dev,
1346592ffb21SWarner Losh 				  struct drm_cmdline_mode *cmd);
1347592ffb21SWarner Losh 
1348592ffb21SWarner Losh /* Modesetting support */
1349592ffb21SWarner Losh extern void drm_vblank_pre_modeset(struct drm_device *dev, int crtc);
1350592ffb21SWarner Losh extern void drm_vblank_post_modeset(struct drm_device *dev, int crtc);
1351592ffb21SWarner Losh extern int drm_modeset_ctl(struct drm_device *dev, void *data,
1352592ffb21SWarner Losh 			   struct drm_file *file_priv);
1353592ffb21SWarner Losh 
1354592ffb21SWarner Losh 
1355592ffb21SWarner Losh 				/* Stub support (drm_stub.h) */
1356592ffb21SWarner Losh extern int drm_setmaster_ioctl(struct drm_device *dev, void *data,
1357592ffb21SWarner Losh 			       struct drm_file *file_priv);
1358592ffb21SWarner Losh extern int drm_dropmaster_ioctl(struct drm_device *dev, void *data,
1359592ffb21SWarner Losh 				struct drm_file *file_priv);
1360592ffb21SWarner Losh struct drm_master *drm_master_create(struct drm_minor *minor);
1361592ffb21SWarner Losh extern struct drm_master *drm_master_get(struct drm_master *master);
1362592ffb21SWarner Losh extern void drm_master_put(struct drm_master **master);
1363592ffb21SWarner Losh 
1364592ffb21SWarner Losh extern void drm_put_dev(struct drm_device *dev);
1365592ffb21SWarner Losh extern int drm_put_minor(struct drm_minor **minor);
1366592ffb21SWarner Losh extern void drm_unplug_dev(struct drm_device *dev);
1367592ffb21SWarner Losh extern unsigned int drm_debug;
1368592ffb21SWarner Losh extern unsigned int drm_notyet;
1369592ffb21SWarner Losh 
1370592ffb21SWarner Losh extern unsigned int drm_vblank_offdelay;
1371592ffb21SWarner Losh extern unsigned int drm_timestamp_precision;
1372592ffb21SWarner Losh extern unsigned int drm_timestamp_monotonic;
1373592ffb21SWarner Losh 
1374592ffb21SWarner Losh extern struct drm_local_map *drm_getsarea(struct drm_device *dev);
1375592ffb21SWarner Losh 
1376592ffb21SWarner Losh 
1377592ffb21SWarner Losh #ifdef FREEBSD_NOTYET
1378592ffb21SWarner Losh extern int drm_gem_prime_handle_to_fd(struct drm_device *dev,
1379592ffb21SWarner Losh 		struct drm_file *file_priv, uint32_t handle, uint32_t flags,
1380592ffb21SWarner Losh 		int *prime_fd);
1381592ffb21SWarner Losh extern int drm_gem_prime_fd_to_handle(struct drm_device *dev,
1382592ffb21SWarner Losh 		struct drm_file *file_priv, int prime_fd, uint32_t *handle);
1383592ffb21SWarner Losh 
1384592ffb21SWarner Losh extern int drm_prime_handle_to_fd_ioctl(struct drm_device *dev, void *data,
1385592ffb21SWarner Losh 					struct drm_file *file_priv);
1386592ffb21SWarner Losh extern int drm_prime_fd_to_handle_ioctl(struct drm_device *dev, void *data,
1387592ffb21SWarner Losh 					struct drm_file *file_priv);
1388592ffb21SWarner Losh 
1389592ffb21SWarner Losh extern int drm_prime_sg_to_page_addr_arrays(struct sg_table *sgt, vm_page_t *pages,
1390592ffb21SWarner Losh 					    dma_addr_t *addrs, int max_pages);
1391592ffb21SWarner Losh extern struct sg_table *drm_prime_pages_to_sg(vm_page_t *pages, int nr_pages);
1392592ffb21SWarner Losh extern void drm_prime_gem_destroy(struct drm_gem_object *obj, struct sg_table *sg);
1393592ffb21SWarner Losh 
1394592ffb21SWarner Losh 
1395592ffb21SWarner Losh void drm_prime_init_file_private(struct drm_prime_file_private *prime_fpriv);
1396592ffb21SWarner Losh void drm_prime_destroy_file_private(struct drm_prime_file_private *prime_fpriv);
1397592ffb21SWarner Losh int drm_prime_add_imported_buf_handle(struct drm_prime_file_private *prime_fpriv, struct dma_buf *dma_buf, uint32_t handle);
1398592ffb21SWarner Losh int drm_prime_lookup_imported_buf_handle(struct drm_prime_file_private *prime_fpriv, struct dma_buf *dma_buf, uint32_t *handle);
1399592ffb21SWarner Losh void drm_prime_remove_imported_buf_handle(struct drm_prime_file_private *prime_fpriv, struct dma_buf *dma_buf);
1400592ffb21SWarner Losh 
1401592ffb21SWarner Losh int drm_prime_add_dma_buf(struct drm_device *dev, struct drm_gem_object *obj);
1402592ffb21SWarner Losh int drm_prime_lookup_obj(struct drm_device *dev, struct dma_buf *buf,
1403592ffb21SWarner Losh 			 struct drm_gem_object **obj);
1404592ffb21SWarner Losh #endif /* FREEBSD_NOTYET */
1405592ffb21SWarner Losh 
1406592ffb21SWarner Losh 				/* Scatter Gather Support (drm_scatter.h) */
1407592ffb21SWarner Losh extern void drm_sg_cleanup(struct drm_sg_mem * entry);
1408592ffb21SWarner Losh extern int drm_sg_alloc_ioctl(struct drm_device *dev, void *data,
1409592ffb21SWarner Losh 			struct drm_file *file_priv);
1410592ffb21SWarner Losh extern int drm_sg_alloc(struct drm_device *dev, struct drm_scatter_gather * request);
1411592ffb21SWarner Losh extern int drm_sg_free(struct drm_device *dev, void *data,
1412592ffb21SWarner Losh 		       struct drm_file *file_priv);
1413592ffb21SWarner Losh 
1414592ffb21SWarner Losh 			       /* ATI PCIGART support (ati_pcigart.h) */
1415592ffb21SWarner Losh extern int drm_ati_pcigart_init(struct drm_device *dev,
1416592ffb21SWarner Losh 				struct drm_ati_pcigart_info * gart_info);
1417592ffb21SWarner Losh extern int drm_ati_pcigart_cleanup(struct drm_device *dev,
1418592ffb21SWarner Losh 				   struct drm_ati_pcigart_info * gart_info);
1419592ffb21SWarner Losh 
1420592ffb21SWarner Losh extern drm_dma_handle_t *drm_pci_alloc(struct drm_device *dev, size_t size,
1421592ffb21SWarner Losh 				       size_t align, dma_addr_t maxaddr);
1422592ffb21SWarner Losh extern void __drm_pci_free(struct drm_device *dev, drm_dma_handle_t * dmah);
1423592ffb21SWarner Losh extern void drm_pci_free(struct drm_device *dev, drm_dma_handle_t * dmah);
1424592ffb21SWarner Losh 
1425592ffb21SWarner Losh /* Graphics Execution Manager library functions (drm_gem.c) */
1426592ffb21SWarner Losh int drm_gem_init(struct drm_device *dev);
1427592ffb21SWarner Losh void drm_gem_destroy(struct drm_device *dev);
1428592ffb21SWarner Losh void drm_gem_object_release(struct drm_gem_object *obj);
1429592ffb21SWarner Losh void drm_gem_object_free(struct drm_gem_object *obj);
1430592ffb21SWarner Losh struct drm_gem_object *drm_gem_object_alloc(struct drm_device *dev,
1431592ffb21SWarner Losh 					    size_t size);
1432592ffb21SWarner Losh int drm_gem_object_init(struct drm_device *dev,
1433592ffb21SWarner Losh 			struct drm_gem_object *obj, size_t size);
1434592ffb21SWarner Losh int drm_gem_private_object_init(struct drm_device *dev,
1435592ffb21SWarner Losh 			struct drm_gem_object *obj, size_t size);
1436592ffb21SWarner Losh void drm_gem_object_handle_free(struct drm_gem_object *obj);
1437592ffb21SWarner Losh int drm_gem_mmap_single(struct drm_device *dev, vm_ooffset_t *offset,
1438592ffb21SWarner Losh     vm_size_t size, struct vm_object **obj_res, int nprot);
1439592ffb21SWarner Losh void drm_gem_pager_dtr(void *obj);
1440592ffb21SWarner Losh 
1441592ffb21SWarner Losh #include <dev/drm2/drm_global.h>
1442592ffb21SWarner Losh 
1443592ffb21SWarner Losh static inline void
drm_gem_object_reference(struct drm_gem_object * obj)1444592ffb21SWarner Losh drm_gem_object_reference(struct drm_gem_object *obj)
1445592ffb21SWarner Losh {
1446592ffb21SWarner Losh 
1447592ffb21SWarner Losh 	KASSERT(obj->refcount > 0, ("Dangling obj %p", obj));
1448592ffb21SWarner Losh 	refcount_acquire(&obj->refcount);
1449592ffb21SWarner Losh }
1450592ffb21SWarner Losh 
1451592ffb21SWarner Losh static inline void
drm_gem_object_unreference(struct drm_gem_object * obj)1452592ffb21SWarner Losh drm_gem_object_unreference(struct drm_gem_object *obj)
1453592ffb21SWarner Losh {
1454592ffb21SWarner Losh 
1455592ffb21SWarner Losh 	if (obj == NULL)
1456592ffb21SWarner Losh 		return;
1457592ffb21SWarner Losh 	if (refcount_release(&obj->refcount))
1458592ffb21SWarner Losh 		drm_gem_object_free(obj);
1459592ffb21SWarner Losh }
1460592ffb21SWarner Losh 
1461592ffb21SWarner Losh static inline void
drm_gem_object_unreference_unlocked(struct drm_gem_object * obj)1462592ffb21SWarner Losh drm_gem_object_unreference_unlocked(struct drm_gem_object *obj)
1463592ffb21SWarner Losh {
1464592ffb21SWarner Losh 	if (obj != NULL) {
1465592ffb21SWarner Losh 		struct drm_device *dev = obj->dev;
1466592ffb21SWarner Losh 		DRM_LOCK(dev);
1467592ffb21SWarner Losh 		drm_gem_object_unreference(obj);
1468592ffb21SWarner Losh 		DRM_UNLOCK(dev);
1469592ffb21SWarner Losh 	}
1470592ffb21SWarner Losh }
1471592ffb21SWarner Losh 
1472592ffb21SWarner Losh int drm_gem_handle_create(struct drm_file *file_priv,
1473592ffb21SWarner Losh 			  struct drm_gem_object *obj,
1474592ffb21SWarner Losh 			  u32 *handlep);
1475592ffb21SWarner Losh int drm_gem_handle_delete(struct drm_file *filp, u32 handle);
1476592ffb21SWarner Losh 
1477592ffb21SWarner Losh static inline void
drm_gem_object_handle_reference(struct drm_gem_object * obj)1478592ffb21SWarner Losh drm_gem_object_handle_reference(struct drm_gem_object *obj)
1479592ffb21SWarner Losh {
1480592ffb21SWarner Losh 	drm_gem_object_reference(obj);
1481592ffb21SWarner Losh 	atomic_inc(&obj->handle_count);
1482592ffb21SWarner Losh }
1483592ffb21SWarner Losh 
1484592ffb21SWarner Losh static inline void
drm_gem_object_handle_unreference(struct drm_gem_object * obj)1485592ffb21SWarner Losh drm_gem_object_handle_unreference(struct drm_gem_object *obj)
1486592ffb21SWarner Losh {
1487592ffb21SWarner Losh 	if (obj == NULL)
1488592ffb21SWarner Losh 		return;
1489592ffb21SWarner Losh 
1490592ffb21SWarner Losh 	if (atomic_read(&obj->handle_count) == 0)
1491592ffb21SWarner Losh 		return;
1492592ffb21SWarner Losh 	/*
1493592ffb21SWarner Losh 	 * Must bump handle count first as this may be the last
1494592ffb21SWarner Losh 	 * ref, in which case the object would disappear before we
1495592ffb21SWarner Losh 	 * checked for a name
1496592ffb21SWarner Losh 	 */
1497592ffb21SWarner Losh 	if (atomic_dec_and_test(&obj->handle_count))
1498592ffb21SWarner Losh 		drm_gem_object_handle_free(obj);
1499592ffb21SWarner Losh 	drm_gem_object_unreference(obj);
1500592ffb21SWarner Losh }
1501592ffb21SWarner Losh 
1502592ffb21SWarner Losh static inline void
drm_gem_object_handle_unreference_unlocked(struct drm_gem_object * obj)1503592ffb21SWarner Losh drm_gem_object_handle_unreference_unlocked(struct drm_gem_object *obj)
1504592ffb21SWarner Losh {
1505592ffb21SWarner Losh 	if (obj == NULL)
1506592ffb21SWarner Losh 		return;
1507592ffb21SWarner Losh 
1508592ffb21SWarner Losh 	if (atomic_read(&obj->handle_count) == 0)
1509592ffb21SWarner Losh 		return;
1510592ffb21SWarner Losh 
1511592ffb21SWarner Losh 	/*
1512592ffb21SWarner Losh 	* Must bump handle count first as this may be the last
1513592ffb21SWarner Losh 	* ref, in which case the object would disappear before we
1514592ffb21SWarner Losh 	* checked for a name
1515592ffb21SWarner Losh 	*/
1516592ffb21SWarner Losh 
1517592ffb21SWarner Losh 	if (atomic_dec_and_test(&obj->handle_count))
1518592ffb21SWarner Losh 		drm_gem_object_handle_free(obj);
1519592ffb21SWarner Losh 	drm_gem_object_unreference_unlocked(obj);
1520592ffb21SWarner Losh }
1521592ffb21SWarner Losh 
1522592ffb21SWarner Losh void drm_gem_free_mmap_offset(struct drm_gem_object *obj);
1523592ffb21SWarner Losh int drm_gem_create_mmap_offset(struct drm_gem_object *obj);
1524592ffb21SWarner Losh 
1525592ffb21SWarner Losh struct drm_gem_object *drm_gem_object_lookup(struct drm_device *dev,
1526592ffb21SWarner Losh 					     struct drm_file *filp,
1527592ffb21SWarner Losh 					     u32 handle);
1528592ffb21SWarner Losh int drm_gem_close_ioctl(struct drm_device *dev, void *data,
1529592ffb21SWarner Losh 			struct drm_file *file_priv);
1530592ffb21SWarner Losh int drm_gem_flink_ioctl(struct drm_device *dev, void *data,
1531592ffb21SWarner Losh 			struct drm_file *file_priv);
1532592ffb21SWarner Losh int drm_gem_open_ioctl(struct drm_device *dev, void *data,
1533592ffb21SWarner Losh 		       struct drm_file *file_priv);
1534592ffb21SWarner Losh void drm_gem_open(struct drm_device *dev, struct drm_file *file_private);
1535592ffb21SWarner Losh void drm_gem_release(struct drm_device *dev, struct drm_file *file_private);
1536592ffb21SWarner Losh 
1537592ffb21SWarner Losh extern void drm_core_ioremap(struct drm_local_map *map, struct drm_device *dev);
1538592ffb21SWarner Losh extern void drm_core_ioremap_wc(struct drm_local_map *map, struct drm_device *dev);
1539592ffb21SWarner Losh extern void drm_core_ioremapfree(struct drm_local_map *map, struct drm_device *dev);
1540592ffb21SWarner Losh 
drm_core_findmap(struct drm_device * dev,unsigned int token)1541592ffb21SWarner Losh static __inline__ struct drm_local_map *drm_core_findmap(struct drm_device *dev,
1542592ffb21SWarner Losh 							 unsigned int token)
1543592ffb21SWarner Losh {
1544592ffb21SWarner Losh 	struct drm_map_list *_entry;
1545592ffb21SWarner Losh 	list_for_each_entry(_entry, &dev->maplist, head)
1546592ffb21SWarner Losh 	    if (_entry->user_token == token)
1547592ffb21SWarner Losh 		return _entry->map;
1548592ffb21SWarner Losh 	return NULL;
1549592ffb21SWarner Losh }
1550592ffb21SWarner Losh 
drm_core_dropmap(struct drm_local_map * map)1551592ffb21SWarner Losh static __inline__ void drm_core_dropmap(struct drm_local_map *map)
1552592ffb21SWarner Losh {
1553592ffb21SWarner Losh }
1554592ffb21SWarner Losh 
1555592ffb21SWarner Losh #include <dev/drm2/drm_mem_util.h>
1556592ffb21SWarner Losh 
1557592ffb21SWarner Losh extern int drm_fill_in_dev(struct drm_device *dev,
1558592ffb21SWarner Losh 			   struct drm_driver *driver);
1559592ffb21SWarner Losh extern void drm_cancel_fill_in_dev(struct drm_device *dev);
1560592ffb21SWarner Losh int drm_get_minor(struct drm_device *dev, struct drm_minor **minor, int type);
1561592ffb21SWarner Losh /*@}*/
1562592ffb21SWarner Losh 
1563592ffb21SWarner Losh /* PCI section */
1564592ffb21SWarner Losh int drm_pci_device_is_agp(struct drm_device *dev);
1565592ffb21SWarner Losh int drm_pci_device_is_pcie(struct drm_device *dev);
1566592ffb21SWarner Losh 
1567592ffb21SWarner Losh extern int drm_get_pci_dev(device_t kdev, struct drm_device *dev,
1568592ffb21SWarner Losh 			   struct drm_driver *driver);
1569592ffb21SWarner Losh 
1570592ffb21SWarner Losh #define DRM_PCIE_SPEED_25 1
1571592ffb21SWarner Losh #define DRM_PCIE_SPEED_50 2
1572592ffb21SWarner Losh #define DRM_PCIE_SPEED_80 4
1573592ffb21SWarner Losh 
1574592ffb21SWarner Losh extern int drm_pcie_get_speed_cap_mask(struct drm_device *dev, u32 *speed_mask);
1575592ffb21SWarner Losh 
1576592ffb21SWarner Losh #define	drm_can_sleep()	(DRM_HZ & 1)
1577592ffb21SWarner Losh 
1578592ffb21SWarner Losh /* Platform section */
1579592ffb21SWarner Losh int drm_get_platform_dev(device_t kdev, struct drm_device *dev,
1580592ffb21SWarner Losh 			 struct drm_driver *driver);
1581592ffb21SWarner Losh 
1582592ffb21SWarner Losh /* FreeBSD specific -- should be moved to drm_os_freebsd.h */
1583592ffb21SWarner Losh 
1584592ffb21SWarner Losh #define	DRM_GEM_MAPPING_MASK	(3ULL << 62)
1585592ffb21SWarner Losh #define	DRM_GEM_MAPPING_KEY	(2ULL << 62) /* Non-canonical address form */
1586592ffb21SWarner Losh #define	DRM_GEM_MAX_IDX		0x3fffff
1587592ffb21SWarner Losh #define	DRM_GEM_MAPPING_IDX(o)	(((o) >> 40) & DRM_GEM_MAX_IDX)
1588592ffb21SWarner Losh #define	DRM_GEM_MAPPING_OFF(i)	(((uint64_t)(i)) << 40)
1589592ffb21SWarner Losh #define	DRM_GEM_MAPPING_MAPOFF(o) \
1590592ffb21SWarner Losh     ((o) & ~(DRM_GEM_MAPPING_OFF(DRM_GEM_MAX_IDX) | DRM_GEM_MAPPING_KEY))
1591592ffb21SWarner Losh 
1592592ffb21SWarner Losh SYSCTL_DECL(_hw_drm);
1593592ffb21SWarner Losh 
1594592ffb21SWarner Losh #define DRM_DEV_MODE	(S_IRUSR|S_IWUSR|S_IRGRP|S_IWGRP)
1595592ffb21SWarner Losh #define DRM_DEV_UID	UID_ROOT
1596592ffb21SWarner Losh #define DRM_DEV_GID	GID_VIDEO
1597592ffb21SWarner Losh 
1598592ffb21SWarner Losh #define DRM_WAKEUP(w)		wakeup((void *)w)
1599592ffb21SWarner Losh #define DRM_WAKEUP_INT(w)	wakeup(w)
1600592ffb21SWarner Losh #define DRM_INIT_WAITQUEUE(queue) do {(void)(queue);} while (0)
1601592ffb21SWarner Losh 
1602592ffb21SWarner Losh #define DRM_CURPROC		curthread
1603592ffb21SWarner Losh #define DRM_STRUCTPROC		struct thread
1604592ffb21SWarner Losh #define DRM_SPINTYPE		struct mtx
1605592ffb21SWarner Losh #define DRM_SPININIT(l,name)	mtx_init(l, name, NULL, MTX_DEF)
1606592ffb21SWarner Losh #define DRM_SPINUNINIT(l)	mtx_destroy(l)
1607592ffb21SWarner Losh #define DRM_SPINLOCK(l)		mtx_lock(l)
1608592ffb21SWarner Losh #define DRM_SPINUNLOCK(u)	mtx_unlock(u)
1609592ffb21SWarner Losh #define DRM_SPINLOCK_IRQSAVE(l, irqflags) do {		\
1610592ffb21SWarner Losh 	mtx_lock(l);					\
1611592ffb21SWarner Losh 	(void)irqflags;					\
1612592ffb21SWarner Losh } while (0)
1613592ffb21SWarner Losh #define DRM_SPINUNLOCK_IRQRESTORE(u, irqflags) mtx_unlock(u)
1614592ffb21SWarner Losh #define DRM_SPINLOCK_ASSERT(l)	mtx_assert(l, MA_OWNED)
1615592ffb21SWarner Losh #define	DRM_LOCK_SLEEP(dev, chan, flags, msg, timeout)			\
1616592ffb21SWarner Losh     (sx_sleep((chan), &(dev)->dev_struct_lock, (flags), (msg), (timeout)))
1617592ffb21SWarner Losh #if defined(INVARIANTS)
1618592ffb21SWarner Losh #define	DRM_LOCK_ASSERT(dev)	sx_assert(&(dev)->dev_struct_lock, SA_XLOCKED)
1619592ffb21SWarner Losh #define	DRM_UNLOCK_ASSERT(dev)	sx_assert(&(dev)->dev_struct_lock, SA_UNLOCKED)
1620592ffb21SWarner Losh #else
1621592ffb21SWarner Losh #define	DRM_LOCK_ASSERT(d)
1622592ffb21SWarner Losh #define	DRM_UNLOCK_ASSERT(d)
1623592ffb21SWarner Losh #endif
1624592ffb21SWarner Losh 
1625592ffb21SWarner Losh #define DRM_SYSCTL_HANDLER_ARGS	(SYSCTL_HANDLER_ARGS)
1626592ffb21SWarner Losh 
1627592ffb21SWarner Losh enum {
1628592ffb21SWarner Losh 	DRM_IS_NOT_AGP,
1629592ffb21SWarner Losh 	DRM_IS_AGP,
1630592ffb21SWarner Losh 	DRM_MIGHT_BE_AGP
1631592ffb21SWarner Losh };
1632592ffb21SWarner Losh 
1633592ffb21SWarner Losh #define DRM_VERIFYAREA_READ( uaddr, size )		\
1634592ffb21SWarner Losh 	(!useracc(__DECONST(caddr_t, uaddr), size, VM_PROT_READ))
1635592ffb21SWarner Losh 
1636592ffb21SWarner Losh #define DRM_COPY_TO_USER(user, kern, size) \
1637592ffb21SWarner Losh 	copyout(kern, user, size)
1638592ffb21SWarner Losh #define DRM_COPY_FROM_USER(kern, user, size) \
1639592ffb21SWarner Losh 	copyin(user, kern, size)
1640592ffb21SWarner Losh #define DRM_COPY_FROM_USER_UNCHECKED(arg1, arg2, arg3) 	\
1641592ffb21SWarner Losh 	copyin(arg2, arg1, arg3)
1642592ffb21SWarner Losh #define DRM_COPY_TO_USER_UNCHECKED(arg1, arg2, arg3)	\
1643592ffb21SWarner Losh 	copyout(arg2, arg1, arg3)
1644592ffb21SWarner Losh #define DRM_GET_USER_UNCHECKED(val, uaddr)		\
1645592ffb21SWarner Losh 	((val) = fuword32(uaddr), 0)
1646592ffb21SWarner Losh 
1647592ffb21SWarner Losh #define DRM_GET_PRIV_SAREA(_dev, _ctx, _map) do {	\
1648592ffb21SWarner Losh 	(_map) = (_dev)->context_sareas[_ctx];		\
1649592ffb21SWarner Losh } while(0)
1650592ffb21SWarner Losh 
1651592ffb21SWarner Losh /* Returns -errno to shared code */
1652592ffb21SWarner Losh #define DRM_WAIT_ON( ret, queue, timeout, condition )		\
1653592ffb21SWarner Losh for ( ret = 0 ; !ret && !(condition) ; ) {			\
1654592ffb21SWarner Losh 	DRM_UNLOCK(dev);					\
1655592ffb21SWarner Losh 	mtx_lock(&dev->irq_lock);				\
1656592ffb21SWarner Losh 	if (!(condition))					\
1657592ffb21SWarner Losh 	    ret = -mtx_sleep(&(queue), &dev->irq_lock, 		\
1658592ffb21SWarner Losh 		PCATCH, "drmwtq", (timeout));			\
1659592ffb21SWarner Losh 	    if (ret == -ERESTART)				\
1660592ffb21SWarner Losh 	        ret = -ERESTARTSYS;				\
1661592ffb21SWarner Losh 	mtx_unlock(&dev->irq_lock);				\
1662592ffb21SWarner Losh 	DRM_LOCK(dev);						\
1663592ffb21SWarner Losh }
1664592ffb21SWarner Losh 
1665592ffb21SWarner Losh #define	dev_err(dev, fmt, ...)						\
1666592ffb21SWarner Losh 	device_printf((dev), "error: " fmt, ## __VA_ARGS__)
1667592ffb21SWarner Losh #define	dev_warn(dev, fmt, ...)						\
1668592ffb21SWarner Losh 	device_printf((dev), "warning: " fmt, ## __VA_ARGS__)
1669592ffb21SWarner Losh #define	dev_info(dev, fmt, ...)						\
1670592ffb21SWarner Losh 	device_printf((dev), "info: " fmt, ## __VA_ARGS__)
1671592ffb21SWarner Losh #define	dev_dbg(dev, fmt, ...) do {					\
1672592ffb21SWarner Losh 	if ((drm_debug& DRM_DEBUGBITS_KMS) != 0) {			\
1673592ffb21SWarner Losh 		device_printf((dev), "debug: " fmt, ## __VA_ARGS__);	\
1674592ffb21SWarner Losh 	}								\
1675592ffb21SWarner Losh } while (0)
1676592ffb21SWarner Losh 
1677592ffb21SWarner Losh struct drm_msi_blacklist_entry
1678592ffb21SWarner Losh {
1679592ffb21SWarner Losh 	int vendor;
1680592ffb21SWarner Losh 	int device;
1681592ffb21SWarner Losh };
1682592ffb21SWarner Losh 
1683592ffb21SWarner Losh struct drm_vblank_info {
1684592ffb21SWarner Losh 	wait_queue_head_t queue;	/* vblank wait queue */
1685592ffb21SWarner Losh 	atomic_t count;			/* number of VBLANK interrupts */
1686592ffb21SWarner Losh 					/* (driver must alloc the right number of counters) */
1687592ffb21SWarner Losh 	atomic_t refcount;		/* number of users of vblank interrupts */
1688592ffb21SWarner Losh 	u32 last;			/* protected by dev->vbl_lock, used */
1689592ffb21SWarner Losh 					/* for wraparound handling */
1690592ffb21SWarner Losh 	int enabled;			/* so we don't call enable more than */
1691592ffb21SWarner Losh 					/* once per disable */
1692592ffb21SWarner Losh 	int inmodeset;			/* Display driver is setting mode */
1693592ffb21SWarner Losh };
1694592ffb21SWarner Losh 
1695592ffb21SWarner Losh #ifndef DMA_BIT_MASK
1696592ffb21SWarner Losh #define DMA_BIT_MASK(n) (((n) == 64) ? ~0ULL : (1ULL<<(n)) - 1)
1697592ffb21SWarner Losh #endif
1698592ffb21SWarner Losh 
1699592ffb21SWarner Losh #define upper_32_bits(n) ((u32)(((n) >> 16) >> 16))
1700592ffb21SWarner Losh 
1701592ffb21SWarner Losh enum dmi_field {
1702592ffb21SWarner Losh         DMI_NONE,
1703592ffb21SWarner Losh         DMI_BIOS_VENDOR,
1704592ffb21SWarner Losh         DMI_BIOS_VERSION,
1705592ffb21SWarner Losh         DMI_BIOS_DATE,
1706592ffb21SWarner Losh         DMI_SYS_VENDOR,
1707592ffb21SWarner Losh         DMI_PRODUCT_NAME,
1708592ffb21SWarner Losh         DMI_PRODUCT_VERSION,
1709592ffb21SWarner Losh         DMI_PRODUCT_SERIAL,
1710592ffb21SWarner Losh         DMI_PRODUCT_UUID,
1711592ffb21SWarner Losh         DMI_BOARD_VENDOR,
1712592ffb21SWarner Losh         DMI_BOARD_NAME,
1713592ffb21SWarner Losh         DMI_BOARD_VERSION,
1714592ffb21SWarner Losh         DMI_BOARD_SERIAL,
1715592ffb21SWarner Losh         DMI_BOARD_ASSET_TAG,
1716592ffb21SWarner Losh         DMI_CHASSIS_VENDOR,
1717592ffb21SWarner Losh         DMI_CHASSIS_TYPE,
1718592ffb21SWarner Losh         DMI_CHASSIS_VERSION,
1719592ffb21SWarner Losh         DMI_CHASSIS_SERIAL,
1720592ffb21SWarner Losh         DMI_CHASSIS_ASSET_TAG,
1721592ffb21SWarner Losh         DMI_STRING_MAX,
1722592ffb21SWarner Losh };
1723592ffb21SWarner Losh 
1724592ffb21SWarner Losh struct dmi_strmatch {
1725592ffb21SWarner Losh 	unsigned char slot;
1726592ffb21SWarner Losh 	char substr[79];
1727592ffb21SWarner Losh };
1728592ffb21SWarner Losh 
1729592ffb21SWarner Losh struct dmi_system_id {
1730592ffb21SWarner Losh         int (*callback)(const struct dmi_system_id *);
1731592ffb21SWarner Losh         const char *ident;
1732592ffb21SWarner Losh         struct dmi_strmatch matches[4];
1733592ffb21SWarner Losh };
1734592ffb21SWarner Losh #define	DMI_MATCH(a, b) {(a), (b)}
1735592ffb21SWarner Losh bool dmi_check_system(const struct dmi_system_id *);
1736592ffb21SWarner Losh 
1737592ffb21SWarner Losh /* Device setup support (drm_drv.c) */
1738592ffb21SWarner Losh int	drm_probe_helper(device_t kdev, const drm_pci_id_list_t *idlist);
1739592ffb21SWarner Losh int	drm_attach_helper(device_t kdev, const drm_pci_id_list_t *idlist,
1740592ffb21SWarner Losh 	    struct drm_driver *driver);
1741592ffb21SWarner Losh int	drm_generic_suspend(device_t kdev);
1742592ffb21SWarner Losh int	drm_generic_resume(device_t kdev);
1743592ffb21SWarner Losh int	drm_generic_detach(device_t kdev);
1744592ffb21SWarner Losh 
1745592ffb21SWarner Losh void drm_event_wakeup(struct drm_pending_event *e);
1746592ffb21SWarner Losh 
1747592ffb21SWarner Losh int drm_add_busid_modesetting(struct drm_device *dev,
1748592ffb21SWarner Losh     struct sysctl_ctx_list *ctx, struct sysctl_oid *top);
1749592ffb21SWarner Losh 
1750592ffb21SWarner Losh /* Buffer management support (drm_bufs.c) */
1751592ffb21SWarner Losh unsigned long drm_get_resource_start(struct drm_device *dev,
1752592ffb21SWarner Losh 				     unsigned int resource);
1753592ffb21SWarner Losh unsigned long drm_get_resource_len(struct drm_device *dev,
1754592ffb21SWarner Losh 				   unsigned int resource);
1755592ffb21SWarner Losh 
1756592ffb21SWarner Losh /* IRQ support (drm_irq.c) */
1757592ffb21SWarner Losh irqreturn_t drm_irq_handler(DRM_IRQ_ARGS);
1758592ffb21SWarner Losh void	drm_driver_irq_preinstall(struct drm_device *dev);
1759592ffb21SWarner Losh void	drm_driver_irq_postinstall(struct drm_device *dev);
1760592ffb21SWarner Losh void	drm_driver_irq_uninstall(struct drm_device *dev);
1761592ffb21SWarner Losh 
1762592ffb21SWarner Losh /* sysctl support (drm_sysctl.h) */
1763592ffb21SWarner Losh extern int		drm_sysctl_init(struct drm_device *dev);
1764592ffb21SWarner Losh extern int		drm_sysctl_cleanup(struct drm_device *dev);
1765592ffb21SWarner Losh 
1766592ffb21SWarner Losh int	drm_version(struct drm_device *dev, void *data,
1767592ffb21SWarner Losh 		    struct drm_file *file_priv);
1768592ffb21SWarner Losh 
1769592ffb21SWarner Losh /* consistent PCI memory functions (drm_pci.c) */
1770592ffb21SWarner Losh int	drm_pci_set_busid(struct drm_device *dev, struct drm_master *master);
1771592ffb21SWarner Losh int	drm_pci_set_unique(struct drm_device *dev, struct drm_master *master,
1772592ffb21SWarner Losh 	    struct drm_unique *u);
1773592ffb21SWarner Losh int	drm_pci_agp_init(struct drm_device *dev);
1774592ffb21SWarner Losh int	drm_pci_enable_msi(struct drm_device *dev);
1775592ffb21SWarner Losh void	drm_pci_disable_msi(struct drm_device *dev);
1776592ffb21SWarner Losh 
1777592ffb21SWarner Losh struct ttm_bo_device;
1778592ffb21SWarner Losh int ttm_bo_mmap_single(struct ttm_bo_device *bdev, vm_ooffset_t *offset,
1779592ffb21SWarner Losh     vm_size_t size, struct vm_object **obj_res, int nprot);
1780592ffb21SWarner Losh struct ttm_buffer_object;
1781592ffb21SWarner Losh void ttm_bo_release_mmap(struct ttm_buffer_object *bo);
1782592ffb21SWarner Losh 
1783592ffb21SWarner Losh #if  __OS_HAS_AGP
1784592ffb21SWarner Losh 				/* Memory management support (drm_memory.h) */
1785592ffb21SWarner Losh extern void drm_free_agp(DRM_AGP_MEM * handle, int pages);
1786592ffb21SWarner Losh extern int drm_bind_agp(DRM_AGP_MEM * handle, unsigned int start);
1787592ffb21SWarner Losh #ifdef FREEBSD_NOTYET
1788592ffb21SWarner Losh extern DRM_AGP_MEM *drm_agp_bind_pages(struct drm_device *dev,
1789592ffb21SWarner Losh 				       struct page **pages,
1790592ffb21SWarner Losh 				       unsigned long num_pages,
1791592ffb21SWarner Losh 				       uint32_t gtt_offset,
1792592ffb21SWarner Losh 				       uint32_t type);
1793592ffb21SWarner Losh #endif /* FREEBSD_NOTYET */
1794592ffb21SWarner Losh extern int drm_unbind_agp(DRM_AGP_MEM * handle);
1795592ffb21SWarner Losh 
1796592ffb21SWarner Losh 				/* AGP/GART support (drm_agpsupport.h) */
1797592ffb21SWarner Losh extern struct drm_agp_head *drm_agp_init(struct drm_device *dev);
1798592ffb21SWarner Losh extern int drm_agp_acquire(struct drm_device *dev);
1799592ffb21SWarner Losh extern int drm_agp_acquire_ioctl(struct drm_device *dev, void *data,
1800592ffb21SWarner Losh 				 struct drm_file *file_priv);
1801592ffb21SWarner Losh extern int drm_agp_release(struct drm_device *dev);
1802592ffb21SWarner Losh extern int drm_agp_release_ioctl(struct drm_device *dev, void *data,
1803592ffb21SWarner Losh 				 struct drm_file *file_priv);
1804592ffb21SWarner Losh extern int drm_agp_enable(struct drm_device *dev, struct drm_agp_mode mode);
1805592ffb21SWarner Losh extern int drm_agp_enable_ioctl(struct drm_device *dev, void *data,
1806592ffb21SWarner Losh 				struct drm_file *file_priv);
1807592ffb21SWarner Losh extern int drm_agp_info(struct drm_device *dev, struct drm_agp_info *info);
1808592ffb21SWarner Losh extern int drm_agp_info_ioctl(struct drm_device *dev, void *data,
1809592ffb21SWarner Losh 			struct drm_file *file_priv);
1810592ffb21SWarner Losh extern int drm_agp_alloc(struct drm_device *dev, struct drm_agp_buffer *request);
1811592ffb21SWarner Losh extern int drm_agp_alloc_ioctl(struct drm_device *dev, void *data,
1812592ffb21SWarner Losh 			 struct drm_file *file_priv);
1813592ffb21SWarner Losh extern int drm_agp_free(struct drm_device *dev, struct drm_agp_buffer *request);
1814592ffb21SWarner Losh extern int drm_agp_free_ioctl(struct drm_device *dev, void *data,
1815592ffb21SWarner Losh 			struct drm_file *file_priv);
1816592ffb21SWarner Losh extern int drm_agp_unbind(struct drm_device *dev, struct drm_agp_binding *request);
1817592ffb21SWarner Losh extern int drm_agp_unbind_ioctl(struct drm_device *dev, void *data,
1818592ffb21SWarner Losh 			  struct drm_file *file_priv);
1819592ffb21SWarner Losh extern int drm_agp_bind(struct drm_device *dev, struct drm_agp_binding *request);
1820592ffb21SWarner Losh extern int drm_agp_bind_ioctl(struct drm_device *dev, void *data,
1821592ffb21SWarner Losh 			struct drm_file *file_priv);
1822592ffb21SWarner Losh 
1823592ffb21SWarner Losh #else
1824592ffb21SWarner Losh 
drm_free_agp(DRM_AGP_MEM * handle,int pages)1825592ffb21SWarner Losh static inline void drm_free_agp(DRM_AGP_MEM * handle, int pages)
1826592ffb21SWarner Losh {
1827592ffb21SWarner Losh }
1828592ffb21SWarner Losh 
drm_bind_agp(DRM_AGP_MEM * handle,unsigned int start)1829592ffb21SWarner Losh static inline int drm_bind_agp(DRM_AGP_MEM * handle, unsigned int start)
1830592ffb21SWarner Losh {
1831592ffb21SWarner Losh 	return -ENODEV;
1832592ffb21SWarner Losh }
1833592ffb21SWarner Losh 
drm_unbind_agp(DRM_AGP_MEM * handle)1834592ffb21SWarner Losh static inline int drm_unbind_agp(DRM_AGP_MEM * handle)
1835592ffb21SWarner Losh {
1836592ffb21SWarner Losh 	return -ENODEV;
1837592ffb21SWarner Losh }
1838592ffb21SWarner Losh #ifdef FREEBSD_NOTYET
drm_agp_bind_pages(struct drm_device * dev,struct page ** pages,unsigned long num_pages,uint32_t gtt_offset,uint32_t type)1839592ffb21SWarner Losh static inline struct agp_memory *drm_agp_bind_pages(struct drm_device *dev,
1840592ffb21SWarner Losh 					      struct page **pages,
1841592ffb21SWarner Losh 					      unsigned long num_pages,
1842592ffb21SWarner Losh 					      uint32_t gtt_offset,
1843592ffb21SWarner Losh 					      uint32_t type)
1844592ffb21SWarner Losh {
1845592ffb21SWarner Losh 	return NULL;
1846592ffb21SWarner Losh }
1847592ffb21SWarner Losh #endif
drm_agp_init(struct drm_device * dev)1848592ffb21SWarner Losh static inline struct drm_agp_head *drm_agp_init(struct drm_device *dev)
1849592ffb21SWarner Losh {
1850592ffb21SWarner Losh 	return NULL;
1851592ffb21SWarner Losh }
1852592ffb21SWarner Losh 
drm_agp_clear(struct drm_device * dev)1853592ffb21SWarner Losh static inline void drm_agp_clear(struct drm_device *dev)
1854592ffb21SWarner Losh {
1855592ffb21SWarner Losh }
1856592ffb21SWarner Losh 
drm_agp_acquire(struct drm_device * dev)1857592ffb21SWarner Losh static inline int drm_agp_acquire(struct drm_device *dev)
1858592ffb21SWarner Losh {
1859592ffb21SWarner Losh 	return -ENODEV;
1860592ffb21SWarner Losh }
1861592ffb21SWarner Losh 
drm_agp_acquire_ioctl(struct drm_device * dev,void * data,struct drm_file * file_priv)1862592ffb21SWarner Losh static inline int drm_agp_acquire_ioctl(struct drm_device *dev, void *data,
1863592ffb21SWarner Losh 					struct drm_file *file_priv)
1864592ffb21SWarner Losh {
1865592ffb21SWarner Losh 	return -ENODEV;
1866592ffb21SWarner Losh }
1867592ffb21SWarner Losh 
drm_agp_release(struct drm_device * dev)1868592ffb21SWarner Losh static inline int drm_agp_release(struct drm_device *dev)
1869592ffb21SWarner Losh {
1870592ffb21SWarner Losh 	return -ENODEV;
1871592ffb21SWarner Losh }
1872592ffb21SWarner Losh 
drm_agp_release_ioctl(struct drm_device * dev,void * data,struct drm_file * file_priv)1873592ffb21SWarner Losh static inline int drm_agp_release_ioctl(struct drm_device *dev, void *data,
1874592ffb21SWarner Losh 					struct drm_file *file_priv)
1875592ffb21SWarner Losh {
1876592ffb21SWarner Losh 	return -ENODEV;
1877592ffb21SWarner Losh }
1878592ffb21SWarner Losh 
drm_agp_enable(struct drm_device * dev,struct drm_agp_mode mode)1879592ffb21SWarner Losh static inline int drm_agp_enable(struct drm_device *dev,
1880592ffb21SWarner Losh 				 struct drm_agp_mode mode)
1881592ffb21SWarner Losh {
1882592ffb21SWarner Losh 	return -ENODEV;
1883592ffb21SWarner Losh }
1884592ffb21SWarner Losh 
drm_agp_enable_ioctl(struct drm_device * dev,void * data,struct drm_file * file_priv)1885592ffb21SWarner Losh static inline int drm_agp_enable_ioctl(struct drm_device *dev, void *data,
1886592ffb21SWarner Losh 				       struct drm_file *file_priv)
1887592ffb21SWarner Losh {
1888592ffb21SWarner Losh 	return -ENODEV;
1889592ffb21SWarner Losh }
1890592ffb21SWarner Losh 
drm_agp_info(struct drm_device * dev,struct drm_agp_info * info)1891592ffb21SWarner Losh static inline int drm_agp_info(struct drm_device *dev,
1892592ffb21SWarner Losh 			       struct drm_agp_info *info)
1893592ffb21SWarner Losh {
1894592ffb21SWarner Losh 	return -ENODEV;
1895592ffb21SWarner Losh }
1896592ffb21SWarner Losh 
drm_agp_info_ioctl(struct drm_device * dev,void * data,struct drm_file * file_priv)1897592ffb21SWarner Losh static inline int drm_agp_info_ioctl(struct drm_device *dev, void *data,
1898592ffb21SWarner Losh 				     struct drm_file *file_priv)
1899592ffb21SWarner Losh {
1900592ffb21SWarner Losh 	return -ENODEV;
1901592ffb21SWarner Losh }
1902592ffb21SWarner Losh 
drm_agp_alloc(struct drm_device * dev,struct drm_agp_buffer * request)1903592ffb21SWarner Losh static inline int drm_agp_alloc(struct drm_device *dev,
1904592ffb21SWarner Losh 				struct drm_agp_buffer *request)
1905592ffb21SWarner Losh {
1906592ffb21SWarner Losh 	return -ENODEV;
1907592ffb21SWarner Losh }
1908592ffb21SWarner Losh 
drm_agp_alloc_ioctl(struct drm_device * dev,void * data,struct drm_file * file_priv)1909592ffb21SWarner Losh static inline int drm_agp_alloc_ioctl(struct drm_device *dev, void *data,
1910592ffb21SWarner Losh 				      struct drm_file *file_priv)
1911592ffb21SWarner Losh {
1912592ffb21SWarner Losh 	return -ENODEV;
1913592ffb21SWarner Losh }
1914592ffb21SWarner Losh 
drm_agp_free(struct drm_device * dev,struct drm_agp_buffer * request)1915592ffb21SWarner Losh static inline int drm_agp_free(struct drm_device *dev,
1916592ffb21SWarner Losh 			       struct drm_agp_buffer *request)
1917592ffb21SWarner Losh {
1918592ffb21SWarner Losh 	return -ENODEV;
1919592ffb21SWarner Losh }
1920592ffb21SWarner Losh 
drm_agp_free_ioctl(struct drm_device * dev,void * data,struct drm_file * file_priv)1921592ffb21SWarner Losh static inline int drm_agp_free_ioctl(struct drm_device *dev, void *data,
1922592ffb21SWarner Losh 				     struct drm_file *file_priv)
1923592ffb21SWarner Losh {
1924592ffb21SWarner Losh 	return -ENODEV;
1925592ffb21SWarner Losh }
1926592ffb21SWarner Losh 
drm_agp_unbind(struct drm_device * dev,struct drm_agp_binding * request)1927592ffb21SWarner Losh static inline int drm_agp_unbind(struct drm_device *dev,
1928592ffb21SWarner Losh 				 struct drm_agp_binding *request)
1929592ffb21SWarner Losh {
1930592ffb21SWarner Losh 	return -ENODEV;
1931592ffb21SWarner Losh }
1932592ffb21SWarner Losh 
drm_agp_unbind_ioctl(struct drm_device * dev,void * data,struct drm_file * file_priv)1933592ffb21SWarner Losh static inline int drm_agp_unbind_ioctl(struct drm_device *dev, void *data,
1934592ffb21SWarner Losh 				       struct drm_file *file_priv)
1935592ffb21SWarner Losh {
1936592ffb21SWarner Losh 	return -ENODEV;
1937592ffb21SWarner Losh }
1938592ffb21SWarner Losh 
drm_agp_bind(struct drm_device * dev,struct drm_agp_binding * request)1939592ffb21SWarner Losh static inline int drm_agp_bind(struct drm_device *dev,
1940592ffb21SWarner Losh 			       struct drm_agp_binding *request)
1941592ffb21SWarner Losh {
1942592ffb21SWarner Losh 	return -ENODEV;
1943592ffb21SWarner Losh }
1944592ffb21SWarner Losh 
drm_agp_bind_ioctl(struct drm_device * dev,void * data,struct drm_file * file_priv)1945592ffb21SWarner Losh static inline int drm_agp_bind_ioctl(struct drm_device *dev, void *data,
1946592ffb21SWarner Losh 				     struct drm_file *file_priv)
1947592ffb21SWarner Losh {
1948592ffb21SWarner Losh 	return -ENODEV;
1949592ffb21SWarner Losh }
1950592ffb21SWarner Losh 
1951592ffb21SWarner Losh #endif /* __OS_HAS_AGP */
1952592ffb21SWarner Losh 
1953592ffb21SWarner Losh #endif				/* __KERNEL__ */
1954592ffb21SWarner Losh #endif
1955