blob: e0124a9ba14a41457b4f4f382880876ec19c990a [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/**
Dave Airlieb5e89ed2005-09-25 14:28:13 +10002 * \file drm_fops.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 * File operations for DRM
Dave Airlieb5e89ed2005-09-25 14:28:13 +10004 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 * \author Rickard E. (Rik) Faith <faith@valinux.com>
6 * \author Daryll Strauss <daryll@valinux.com>
7 * \author Gareth Hughes <gareth@valinux.com>
8 */
9
10/*
11 * Created: Mon Jan 4 08:58:31 1999 by faith@valinux.com
12 *
13 * Copyright 1999 Precision Insight, Inc., Cedar Park, Texas.
14 * Copyright 2000 VA Linux Systems, Inc., Sunnyvale, California.
15 * All Rights Reserved.
16 *
17 * Permission is hereby granted, free of charge, to any person obtaining a
18 * copy of this software and associated documentation files (the "Software"),
19 * to deal in the Software without restriction, including without limitation
20 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
21 * and/or sell copies of the Software, and to permit persons to whom the
22 * Software is furnished to do so, subject to the following conditions:
23 *
24 * The above copyright notice and this permission notice (including the next
25 * paragraph) shall be included in all copies or substantial portions of the
26 * Software.
27 *
28 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
29 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
30 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
31 * VA LINUX SYSTEMS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
32 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
33 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
34 * OTHER DEALINGS IN THE SOFTWARE.
35 */
36
37#include "drmP.h"
38#include <linux/poll.h>
39
Dave Airlieb5e89ed2005-09-25 14:28:13 +100040static int drm_open_helper(struct inode *inode, struct file *filp,
41 drm_device_t * dev);
Dave Airliec94f7022005-07-07 21:03:38 +100042
Dave Airlieb5e89ed2005-09-25 14:28:13 +100043static int drm_setup(drm_device_t * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -070044{
45 int i;
46 int ret;
47
Dave Airlieb5e89ed2005-09-25 14:28:13 +100048 if (dev->driver->presetup) {
49 ret = dev->driver->presetup(dev);
50 if (ret != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070051 return ret;
52 }
53
Dave Airlieb5e89ed2005-09-25 14:28:13 +100054 atomic_set(&dev->ioctl_count, 0);
55 atomic_set(&dev->vma_count, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070056 dev->buf_use = 0;
Dave Airlieb5e89ed2005-09-25 14:28:13 +100057 atomic_set(&dev->buf_alloc, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070058
Dave Airlieb5e89ed2005-09-25 14:28:13 +100059 if (drm_core_check_feature(dev, DRIVER_HAVE_DMA)) {
60 i = drm_dma_setup(dev);
61 if (i < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070062 return i;
63 }
64
Dave Airlieb5e89ed2005-09-25 14:28:13 +100065 for (i = 0; i < DRM_ARRAY_SIZE(dev->counts); i++)
66 atomic_set(&dev->counts[i], 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070067
Dave Airlieb5e89ed2005-09-25 14:28:13 +100068 for (i = 0; i < DRM_HASH_SIZE; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070069 dev->magiclist[i].head = NULL;
70 dev->magiclist[i].tail = NULL;
71 }
72
Dave Airlieb5e89ed2005-09-25 14:28:13 +100073 dev->ctxlist = drm_alloc(sizeof(*dev->ctxlist), DRM_MEM_CTXLIST);
74 if (dev->ctxlist == NULL)
75 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -070076 memset(dev->ctxlist, 0, sizeof(*dev->ctxlist));
77 INIT_LIST_HEAD(&dev->ctxlist->head);
78
79 dev->vmalist = NULL;
80 dev->sigdata.lock = dev->lock.hw_lock = NULL;
Dave Airlieb5e89ed2005-09-25 14:28:13 +100081 init_waitqueue_head(&dev->lock.lock_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 dev->queue_count = 0;
83 dev->queue_reserved = 0;
84 dev->queue_slots = 0;
85 dev->queuelist = NULL;
86 dev->irq_enabled = 0;
87 dev->context_flag = 0;
88 dev->interrupt_flag = 0;
89 dev->dma_flag = 0;
90 dev->last_context = 0;
91 dev->last_switch = 0;
92 dev->last_checked = 0;
Dave Airlieb5e89ed2005-09-25 14:28:13 +100093 init_waitqueue_head(&dev->context_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 dev->if_version = 0;
95
96 dev->ctx_start = 0;
97 dev->lck_start = 0;
98
99 dev->buf_rp = dev->buf;
100 dev->buf_wp = dev->buf;
101 dev->buf_end = dev->buf + DRM_BSZ;
102 dev->buf_async = NULL;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000103 init_waitqueue_head(&dev->buf_readers);
104 init_waitqueue_head(&dev->buf_writers);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000106 DRM_DEBUG("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107
108 /*
109 * The kernel's context could be created here, but is now created
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000110 * in drm_dma_enqueue. This is more resource-efficient for
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 * hardware that does not do DMA, but may mean that
112 * drm_select_queue fails between the time the interrupt is
113 * initialized and the time the queues are initialized.
114 */
115 if (dev->driver->postsetup)
116 dev->driver->postsetup(dev);
117
118 return 0;
119}
120
121/**
122 * Open file.
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000123 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 * \param inode device inode
125 * \param filp file pointer.
126 * \return zero on success or a negative number on failure.
127 *
128 * Searches the DRM device with the same minor number, calls open_helper(), and
129 * increments the device open count. If the open count was previous at zero,
130 * i.e., it's the first that the device is open, then calls setup().
131 */
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000132int drm_open(struct inode *inode, struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133{
134 drm_device_t *dev = NULL;
135 int minor = iminor(inode);
136 int retcode = 0;
137
138 if (!((minor >= 0) && (minor < drm_cards_limit)))
139 return -ENODEV;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000140
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 if (!drm_heads[minor])
142 return -ENODEV;
143
144 if (!(dev = drm_heads[minor]->dev))
145 return -ENODEV;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000146
147 retcode = drm_open_helper(inode, filp, dev);
148 if (!retcode) {
149 atomic_inc(&dev->counts[_DRM_STAT_OPENS]);
150 spin_lock(&dev->count_lock);
151 if (!dev->open_count++) {
152 spin_unlock(&dev->count_lock);
153 return drm_setup(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 }
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000155 spin_unlock(&dev->count_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 }
157
158 return retcode;
159}
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000160
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161EXPORT_SYMBOL(drm_open);
162
163/**
164 * Release file.
165 *
166 * \param inode device inode
167 * \param filp file pointer.
168 * \return zero on success or a negative number on failure.
169 *
170 * If the hardware lock is held then free it, and take it again for the kernel
171 * context since it's necessary to reclaim buffers. Unlink the file private
172 * data from its list and free it. Decreases the open count and if it reaches
173 * zero calls takedown().
174 */
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000175int drm_release(struct inode *inode, struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176{
177 drm_file_t *priv = filp->private_data;
178 drm_device_t *dev;
179 int retcode = 0;
180
181 lock_kernel();
182 dev = priv->head->dev;
183
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000184 DRM_DEBUG("open_count = %d\n", dev->open_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185
186 if (dev->driver->prerelease)
187 dev->driver->prerelease(dev, filp);
188
189 /* ========================================================
190 * Begin inline drm_release
191 */
192
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000193 DRM_DEBUG("pid = %d, device = 0x%lx, open_count = %d\n",
194 current->pid, (long)old_encode_dev(priv->head->device),
195 dev->open_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000197 if (priv->lock_count && dev->lock.hw_lock &&
198 _DRM_LOCK_IS_HELD(dev->lock.hw_lock->lock) &&
199 dev->lock.filp == filp) {
200 DRM_DEBUG("File %p released, freeing lock for context %d\n",
201 filp, _DRM_LOCKING_CONTEXT(dev->lock.hw_lock->lock));
202
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 if (dev->driver->release)
204 dev->driver->release(dev, filp);
205
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000206 drm_lock_free(dev, &dev->lock.hw_lock->lock,
207 _DRM_LOCKING_CONTEXT(dev->lock.hw_lock->lock));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000209 /* FIXME: may require heavy-handed reset of
210 hardware at this point, possibly
211 processed via a callback to the X
212 server. */
213 } else if (dev->driver->release && priv->lock_count
214 && dev->lock.hw_lock) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 /* The lock is required to reclaim buffers */
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000216 DECLARE_WAITQUEUE(entry, current);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000218 add_wait_queue(&dev->lock.lock_queue, &entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 for (;;) {
220 __set_current_state(TASK_INTERRUPTIBLE);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000221 if (!dev->lock.hw_lock) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 /* Device has been unregistered */
223 retcode = -EINTR;
224 break;
225 }
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000226 if (drm_lock_take(&dev->lock.hw_lock->lock,
227 DRM_KERNEL_CONTEXT)) {
228 dev->lock.filp = filp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 dev->lock.lock_time = jiffies;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000230 atomic_inc(&dev->counts[_DRM_STAT_LOCKS]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 break; /* Got lock */
232 }
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000233 /* Contention */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 schedule();
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000235 if (signal_pending(current)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 retcode = -ERESTARTSYS;
237 break;
238 }
239 }
240 __set_current_state(TASK_RUNNING);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000241 remove_wait_queue(&dev->lock.lock_queue, &entry);
242 if (!retcode) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 if (dev->driver->release)
244 dev->driver->release(dev, filp);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000245 drm_lock_free(dev, &dev->lock.hw_lock->lock,
246 DRM_KERNEL_CONTEXT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 }
248 }
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000249
250 if (drm_core_check_feature(dev, DRIVER_HAVE_DMA)
251 && !dev->driver->release) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 dev->driver->reclaim_buffers(dev, filp);
253 }
254
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000255 drm_fasync(-1, filp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000257 down(&dev->ctxlist_sem);
258 if (dev->ctxlist && (!list_empty(&dev->ctxlist->head))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 drm_ctx_list_t *pos, *n;
260
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000261 list_for_each_entry_safe(pos, n, &dev->ctxlist->head, head) {
262 if (pos->tag == priv &&
263 pos->handle != DRM_KERNEL_CONTEXT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 if (dev->driver->context_dtor)
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000265 dev->driver->context_dtor(dev,
266 pos->handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000268 drm_ctxbitmap_free(dev, pos->handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000270 list_del(&pos->head);
271 drm_free(pos, sizeof(*pos), DRM_MEM_CTXLIST);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 --dev->ctx_count;
273 }
274 }
275 }
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000276 up(&dev->ctxlist_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000278 down(&dev->struct_sem);
279 if (priv->remove_auth_on_close == 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 drm_file_t *temp = dev->file_first;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000281 while (temp) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 temp->authenticated = 0;
283 temp = temp->next;
284 }
285 }
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000286 if (priv->prev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 priv->prev->next = priv->next;
288 } else {
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000289 dev->file_first = priv->next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 }
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000291 if (priv->next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 priv->next->prev = priv->prev;
293 } else {
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000294 dev->file_last = priv->prev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 }
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000296 up(&dev->struct_sem);
297
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 if (dev->driver->free_filp_priv)
299 dev->driver->free_filp_priv(dev, priv);
300
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000301 drm_free(priv, sizeof(*priv), DRM_MEM_FILES);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302
303 /* ========================================================
304 * End inline drm_release
305 */
306
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000307 atomic_inc(&dev->counts[_DRM_STAT_CLOSES]);
308 spin_lock(&dev->count_lock);
309 if (!--dev->open_count) {
310 if (atomic_read(&dev->ioctl_count) || dev->blocked) {
311 DRM_ERROR("Device busy: %d %d\n",
312 atomic_read(&dev->ioctl_count), dev->blocked);
313 spin_unlock(&dev->count_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 unlock_kernel();
315 return -EBUSY;
316 }
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000317 spin_unlock(&dev->count_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 unlock_kernel();
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000319 return drm_takedown(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 }
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000321 spin_unlock(&dev->count_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322
323 unlock_kernel();
324
325 return retcode;
326}
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000327
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328EXPORT_SYMBOL(drm_release);
329
330/**
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000331 * Called whenever a process opens /dev/drm.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 *
333 * \param inode device inode.
334 * \param filp file pointer.
335 * \param dev device.
336 * \return zero on success or a negative number on failure.
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000337 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 * Creates and initializes a drm_file structure for the file private data in \p
339 * filp and add it into the double linked list in \p dev.
340 */
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000341static int drm_open_helper(struct inode *inode, struct file *filp,
342 drm_device_t * dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343{
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000344 int minor = iminor(inode);
345 drm_file_t *priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 int ret;
347
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000348 if (filp->f_flags & O_EXCL)
349 return -EBUSY; /* No exclusive opens */
350 if (!drm_cpu_valid())
351 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352
353 DRM_DEBUG("pid = %d, minor = %d\n", current->pid, minor);
354
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000355 priv = drm_alloc(sizeof(*priv), DRM_MEM_FILES);
356 if (!priv)
357 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358
359 memset(priv, 0, sizeof(*priv));
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000360 filp->private_data = priv;
361 priv->uid = current->euid;
362 priv->pid = current->pid;
363 priv->minor = minor;
364 priv->head = drm_heads[minor];
365 priv->ioctl_count = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 priv->authenticated = capable(CAP_SYS_ADMIN);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000367 priv->lock_count = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368
369 if (dev->driver->open_helper) {
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000370 ret = dev->driver->open_helper(dev, priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 if (ret < 0)
372 goto out_free;
373 }
374
375 down(&dev->struct_sem);
376 if (!dev->file_last) {
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000377 priv->next = NULL;
378 priv->prev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 dev->file_first = priv;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000380 dev->file_last = priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 } else {
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000382 priv->next = NULL;
383 priv->prev = dev->file_last;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 dev->file_last->next = priv;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000385 dev->file_last = priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 }
387 up(&dev->struct_sem);
388
389#ifdef __alpha__
390 /*
391 * Default the hose
392 */
393 if (!dev->hose) {
394 struct pci_dev *pci_dev;
395 pci_dev = pci_get_class(PCI_CLASS_DISPLAY_VGA << 8, NULL);
396 if (pci_dev) {
397 dev->hose = pci_dev->sysdata;
398 pci_dev_put(pci_dev);
399 }
400 if (!dev->hose) {
401 struct pci_bus *b = pci_bus_b(pci_root_buses.next);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000402 if (b)
403 dev->hose = b->sysdata;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 }
405 }
406#endif
407
408 return 0;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000409 out_free:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 drm_free(priv, sizeof(*priv), DRM_MEM_FILES);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000411 filp->private_data = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 return ret;
413}
414
415/** No-op. */
416int drm_flush(struct file *filp)
417{
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000418 drm_file_t *priv = filp->private_data;
419 drm_device_t *dev = priv->head->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420
421 DRM_DEBUG("pid = %d, device = 0x%lx, open_count = %d\n",
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000422 current->pid, (long)old_encode_dev(priv->head->device),
423 dev->open_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 return 0;
425}
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000426
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427EXPORT_SYMBOL(drm_flush);
428
429/** No-op. */
430int drm_fasync(int fd, struct file *filp, int on)
431{
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000432 drm_file_t *priv = filp->private_data;
433 drm_device_t *dev = priv->head->dev;
434 int retcode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000436 DRM_DEBUG("fd = %d, device = 0x%lx\n", fd,
437 (long)old_encode_dev(priv->head->device));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 retcode = fasync_helper(fd, filp, on, &dev->buf_async);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000439 if (retcode < 0)
440 return retcode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 return 0;
442}
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000443
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444EXPORT_SYMBOL(drm_fasync);
445
446/** No-op. */
447unsigned int drm_poll(struct file *filp, struct poll_table_struct *wait)
448{
449 return 0;
450}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000452EXPORT_SYMBOL(drm_poll);