Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v3.8-rc2 637 lines 17 kB view raw
1/** 2 * \file drm_fops.c 3 * File operations for DRM 4 * 5 * \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 <drm/drmP.h> 38#include <linux/poll.h> 39#include <linux/slab.h> 40#include <linux/module.h> 41 42/* from BKL pushdown: note that nothing else serializes idr_find() */ 43DEFINE_MUTEX(drm_global_mutex); 44EXPORT_SYMBOL(drm_global_mutex); 45 46static int drm_open_helper(struct inode *inode, struct file *filp, 47 struct drm_device * dev); 48 49static int drm_setup(struct drm_device * dev) 50{ 51 int i; 52 int ret; 53 54 if (dev->driver->firstopen) { 55 ret = dev->driver->firstopen(dev); 56 if (ret != 0) 57 return ret; 58 } 59 60 atomic_set(&dev->ioctl_count, 0); 61 atomic_set(&dev->vma_count, 0); 62 63 if (drm_core_check_feature(dev, DRIVER_HAVE_DMA) && 64 !drm_core_check_feature(dev, DRIVER_MODESET)) { 65 dev->buf_use = 0; 66 atomic_set(&dev->buf_alloc, 0); 67 68 i = drm_dma_setup(dev); 69 if (i < 0) 70 return i; 71 } 72 73 for (i = 0; i < ARRAY_SIZE(dev->counts); i++) 74 atomic_set(&dev->counts[i], 0); 75 76 dev->sigdata.lock = NULL; 77 78 dev->context_flag = 0; 79 dev->interrupt_flag = 0; 80 dev->dma_flag = 0; 81 dev->last_context = 0; 82 dev->last_switch = 0; 83 dev->last_checked = 0; 84 init_waitqueue_head(&dev->context_wait); 85 dev->if_version = 0; 86 87 dev->ctx_start = 0; 88 dev->lck_start = 0; 89 90 dev->buf_async = NULL; 91 init_waitqueue_head(&dev->buf_readers); 92 init_waitqueue_head(&dev->buf_writers); 93 94 DRM_DEBUG("\n"); 95 96 /* 97 * The kernel's context could be created here, but is now created 98 * in drm_dma_enqueue. This is more resource-efficient for 99 * hardware that does not do DMA, but may mean that 100 * drm_select_queue fails between the time the interrupt is 101 * initialized and the time the queues are initialized. 102 */ 103 104 return 0; 105} 106 107/** 108 * Open file. 109 * 110 * \param inode device inode 111 * \param filp file pointer. 112 * \return zero on success or a negative number on failure. 113 * 114 * Searches the DRM device with the same minor number, calls open_helper(), and 115 * increments the device open count. If the open count was previous at zero, 116 * i.e., it's the first that the device is open, then calls setup(). 117 */ 118int drm_open(struct inode *inode, struct file *filp) 119{ 120 struct drm_device *dev = NULL; 121 int minor_id = iminor(inode); 122 struct drm_minor *minor; 123 int retcode = 0; 124 int need_setup = 0; 125 struct address_space *old_mapping; 126 127 minor = idr_find(&drm_minors_idr, minor_id); 128 if (!minor) 129 return -ENODEV; 130 131 if (!(dev = minor->dev)) 132 return -ENODEV; 133 134 if (drm_device_is_unplugged(dev)) 135 return -ENODEV; 136 137 if (!dev->open_count++) 138 need_setup = 1; 139 mutex_lock(&dev->struct_mutex); 140 old_mapping = dev->dev_mapping; 141 if (old_mapping == NULL) 142 dev->dev_mapping = &inode->i_data; 143 /* ihold ensures nobody can remove inode with our i_data */ 144 ihold(container_of(dev->dev_mapping, struct inode, i_data)); 145 inode->i_mapping = dev->dev_mapping; 146 filp->f_mapping = dev->dev_mapping; 147 mutex_unlock(&dev->struct_mutex); 148 149 retcode = drm_open_helper(inode, filp, dev); 150 if (retcode) 151 goto err_undo; 152 atomic_inc(&dev->counts[_DRM_STAT_OPENS]); 153 if (need_setup) { 154 retcode = drm_setup(dev); 155 if (retcode) 156 goto err_undo; 157 } 158 return 0; 159 160err_undo: 161 mutex_lock(&dev->struct_mutex); 162 filp->f_mapping = old_mapping; 163 inode->i_mapping = old_mapping; 164 iput(container_of(dev->dev_mapping, struct inode, i_data)); 165 dev->dev_mapping = old_mapping; 166 mutex_unlock(&dev->struct_mutex); 167 dev->open_count--; 168 return retcode; 169} 170EXPORT_SYMBOL(drm_open); 171 172/** 173 * File \c open operation. 174 * 175 * \param inode device inode. 176 * \param filp file pointer. 177 * 178 * Puts the dev->fops corresponding to the device minor number into 179 * \p filp, call the \c open method, and restore the file operations. 180 */ 181int drm_stub_open(struct inode *inode, struct file *filp) 182{ 183 struct drm_device *dev = NULL; 184 struct drm_minor *minor; 185 int minor_id = iminor(inode); 186 int err = -ENODEV; 187 const struct file_operations *old_fops; 188 189 DRM_DEBUG("\n"); 190 191 mutex_lock(&drm_global_mutex); 192 minor = idr_find(&drm_minors_idr, minor_id); 193 if (!minor) 194 goto out; 195 196 if (!(dev = minor->dev)) 197 goto out; 198 199 if (drm_device_is_unplugged(dev)) 200 goto out; 201 202 old_fops = filp->f_op; 203 filp->f_op = fops_get(dev->driver->fops); 204 if (filp->f_op == NULL) { 205 filp->f_op = old_fops; 206 goto out; 207 } 208 if (filp->f_op->open && (err = filp->f_op->open(inode, filp))) { 209 fops_put(filp->f_op); 210 filp->f_op = fops_get(old_fops); 211 } 212 fops_put(old_fops); 213 214out: 215 mutex_unlock(&drm_global_mutex); 216 return err; 217} 218 219/** 220 * Check whether DRI will run on this CPU. 221 * 222 * \return non-zero if the DRI will run on this CPU, or zero otherwise. 223 */ 224static int drm_cpu_valid(void) 225{ 226#if defined(__i386__) 227 if (boot_cpu_data.x86 == 3) 228 return 0; /* No cmpxchg on a 386 */ 229#endif 230#if defined(__sparc__) && !defined(__sparc_v9__) 231 return 0; /* No cmpxchg before v9 sparc. */ 232#endif 233 return 1; 234} 235 236/** 237 * Called whenever a process opens /dev/drm. 238 * 239 * \param inode device inode. 240 * \param filp file pointer. 241 * \param dev device. 242 * \return zero on success or a negative number on failure. 243 * 244 * Creates and initializes a drm_file structure for the file private data in \p 245 * filp and add it into the double linked list in \p dev. 246 */ 247static int drm_open_helper(struct inode *inode, struct file *filp, 248 struct drm_device * dev) 249{ 250 int minor_id = iminor(inode); 251 struct drm_file *priv; 252 int ret; 253 254 if (filp->f_flags & O_EXCL) 255 return -EBUSY; /* No exclusive opens */ 256 if (!drm_cpu_valid()) 257 return -EINVAL; 258 if (dev->switch_power_state != DRM_SWITCH_POWER_ON) 259 return -EINVAL; 260 261 DRM_DEBUG("pid = %d, minor = %d\n", task_pid_nr(current), minor_id); 262 263 priv = kzalloc(sizeof(*priv), GFP_KERNEL); 264 if (!priv) 265 return -ENOMEM; 266 267 filp->private_data = priv; 268 priv->filp = filp; 269 priv->uid = current_euid(); 270 priv->pid = get_pid(task_pid(current)); 271 priv->minor = idr_find(&drm_minors_idr, minor_id); 272 priv->ioctl_count = 0; 273 /* for compatibility root is always authenticated */ 274 priv->authenticated = capable(CAP_SYS_ADMIN); 275 priv->lock_count = 0; 276 277 INIT_LIST_HEAD(&priv->lhead); 278 INIT_LIST_HEAD(&priv->fbs); 279 INIT_LIST_HEAD(&priv->event_list); 280 init_waitqueue_head(&priv->event_wait); 281 priv->event_space = 4096; /* set aside 4k for event buffer */ 282 283 if (dev->driver->driver_features & DRIVER_GEM) 284 drm_gem_open(dev, priv); 285 286 if (drm_core_check_feature(dev, DRIVER_PRIME)) 287 drm_prime_init_file_private(&priv->prime); 288 289 if (dev->driver->open) { 290 ret = dev->driver->open(dev, priv); 291 if (ret < 0) 292 goto out_free; 293 } 294 295 296 /* if there is no current master make this fd it */ 297 mutex_lock(&dev->struct_mutex); 298 if (!priv->minor->master) { 299 /* create a new master */ 300 priv->minor->master = drm_master_create(priv->minor); 301 if (!priv->minor->master) { 302 mutex_unlock(&dev->struct_mutex); 303 ret = -ENOMEM; 304 goto out_free; 305 } 306 307 priv->is_master = 1; 308 /* take another reference for the copy in the local file priv */ 309 priv->master = drm_master_get(priv->minor->master); 310 311 priv->authenticated = 1; 312 313 mutex_unlock(&dev->struct_mutex); 314 if (dev->driver->master_create) { 315 ret = dev->driver->master_create(dev, priv->master); 316 if (ret) { 317 mutex_lock(&dev->struct_mutex); 318 /* drop both references if this fails */ 319 drm_master_put(&priv->minor->master); 320 drm_master_put(&priv->master); 321 mutex_unlock(&dev->struct_mutex); 322 goto out_free; 323 } 324 } 325 mutex_lock(&dev->struct_mutex); 326 if (dev->driver->master_set) { 327 ret = dev->driver->master_set(dev, priv, true); 328 if (ret) { 329 /* drop both references if this fails */ 330 drm_master_put(&priv->minor->master); 331 drm_master_put(&priv->master); 332 mutex_unlock(&dev->struct_mutex); 333 goto out_free; 334 } 335 } 336 mutex_unlock(&dev->struct_mutex); 337 } else { 338 /* get a reference to the master */ 339 priv->master = drm_master_get(priv->minor->master); 340 mutex_unlock(&dev->struct_mutex); 341 } 342 343 mutex_lock(&dev->struct_mutex); 344 list_add(&priv->lhead, &dev->filelist); 345 mutex_unlock(&dev->struct_mutex); 346 347#ifdef __alpha__ 348 /* 349 * Default the hose 350 */ 351 if (!dev->hose) { 352 struct pci_dev *pci_dev; 353 pci_dev = pci_get_class(PCI_CLASS_DISPLAY_VGA << 8, NULL); 354 if (pci_dev) { 355 dev->hose = pci_dev->sysdata; 356 pci_dev_put(pci_dev); 357 } 358 if (!dev->hose) { 359 struct pci_bus *b = pci_bus_b(pci_root_buses.next); 360 if (b) 361 dev->hose = b->sysdata; 362 } 363 } 364#endif 365 366 return 0; 367 out_free: 368 kfree(priv); 369 filp->private_data = NULL; 370 return ret; 371} 372 373/** No-op. */ 374int drm_fasync(int fd, struct file *filp, int on) 375{ 376 struct drm_file *priv = filp->private_data; 377 struct drm_device *dev = priv->minor->dev; 378 379 DRM_DEBUG("fd = %d, device = 0x%lx\n", fd, 380 (long)old_encode_dev(priv->minor->device)); 381 return fasync_helper(fd, filp, on, &dev->buf_async); 382} 383EXPORT_SYMBOL(drm_fasync); 384 385static void drm_master_release(struct drm_device *dev, struct file *filp) 386{ 387 struct drm_file *file_priv = filp->private_data; 388 389 if (drm_i_have_hw_lock(dev, file_priv)) { 390 DRM_DEBUG("File %p released, freeing lock for context %d\n", 391 filp, _DRM_LOCKING_CONTEXT(file_priv->master->lock.hw_lock->lock)); 392 drm_lock_free(&file_priv->master->lock, 393 _DRM_LOCKING_CONTEXT(file_priv->master->lock.hw_lock->lock)); 394 } 395} 396 397static void drm_events_release(struct drm_file *file_priv) 398{ 399 struct drm_device *dev = file_priv->minor->dev; 400 struct drm_pending_event *e, *et; 401 struct drm_pending_vblank_event *v, *vt; 402 unsigned long flags; 403 404 spin_lock_irqsave(&dev->event_lock, flags); 405 406 /* Remove pending flips */ 407 list_for_each_entry_safe(v, vt, &dev->vblank_event_list, base.link) 408 if (v->base.file_priv == file_priv) { 409 list_del(&v->base.link); 410 drm_vblank_put(dev, v->pipe); 411 v->base.destroy(&v->base); 412 } 413 414 /* Remove unconsumed events */ 415 list_for_each_entry_safe(e, et, &file_priv->event_list, link) 416 e->destroy(e); 417 418 spin_unlock_irqrestore(&dev->event_lock, flags); 419} 420 421/** 422 * Release file. 423 * 424 * \param inode device inode 425 * \param file_priv DRM file private. 426 * \return zero on success or a negative number on failure. 427 * 428 * If the hardware lock is held then free it, and take it again for the kernel 429 * context since it's necessary to reclaim buffers. Unlink the file private 430 * data from its list and free it. Decreases the open count and if it reaches 431 * zero calls drm_lastclose(). 432 */ 433int drm_release(struct inode *inode, struct file *filp) 434{ 435 struct drm_file *file_priv = filp->private_data; 436 struct drm_device *dev = file_priv->minor->dev; 437 int retcode = 0; 438 439 mutex_lock(&drm_global_mutex); 440 441 DRM_DEBUG("open_count = %d\n", dev->open_count); 442 443 if (dev->driver->preclose) 444 dev->driver->preclose(dev, file_priv); 445 446 /* ======================================================== 447 * Begin inline drm_release 448 */ 449 450 DRM_DEBUG("pid = %d, device = 0x%lx, open_count = %d\n", 451 task_pid_nr(current), 452 (long)old_encode_dev(file_priv->minor->device), 453 dev->open_count); 454 455 /* Release any auth tokens that might point to this file_priv, 456 (do that under the drm_global_mutex) */ 457 if (file_priv->magic) 458 (void) drm_remove_magic(file_priv->master, file_priv->magic); 459 460 /* if the master has gone away we can't do anything with the lock */ 461 if (file_priv->minor->master) 462 drm_master_release(dev, filp); 463 464 if (drm_core_check_feature(dev, DRIVER_HAVE_DMA)) 465 drm_core_reclaim_buffers(dev, file_priv); 466 467 drm_events_release(file_priv); 468 469 if (dev->driver->driver_features & DRIVER_MODESET) 470 drm_fb_release(file_priv); 471 472 if (dev->driver->driver_features & DRIVER_GEM) 473 drm_gem_release(dev, file_priv); 474 475 mutex_lock(&dev->ctxlist_mutex); 476 if (!list_empty(&dev->ctxlist)) { 477 struct drm_ctx_list *pos, *n; 478 479 list_for_each_entry_safe(pos, n, &dev->ctxlist, head) { 480 if (pos->tag == file_priv && 481 pos->handle != DRM_KERNEL_CONTEXT) { 482 if (dev->driver->context_dtor) 483 dev->driver->context_dtor(dev, 484 pos->handle); 485 486 drm_ctxbitmap_free(dev, pos->handle); 487 488 list_del(&pos->head); 489 kfree(pos); 490 --dev->ctx_count; 491 } 492 } 493 } 494 mutex_unlock(&dev->ctxlist_mutex); 495 496 mutex_lock(&dev->struct_mutex); 497 498 if (file_priv->is_master) { 499 struct drm_master *master = file_priv->master; 500 struct drm_file *temp; 501 list_for_each_entry(temp, &dev->filelist, lhead) { 502 if ((temp->master == file_priv->master) && 503 (temp != file_priv)) 504 temp->authenticated = 0; 505 } 506 507 /** 508 * Since the master is disappearing, so is the 509 * possibility to lock. 510 */ 511 512 if (master->lock.hw_lock) { 513 if (dev->sigdata.lock == master->lock.hw_lock) 514 dev->sigdata.lock = NULL; 515 master->lock.hw_lock = NULL; 516 master->lock.file_priv = NULL; 517 wake_up_interruptible_all(&master->lock.lock_queue); 518 } 519 520 if (file_priv->minor->master == file_priv->master) { 521 /* drop the reference held my the minor */ 522 if (dev->driver->master_drop) 523 dev->driver->master_drop(dev, file_priv, true); 524 drm_master_put(&file_priv->minor->master); 525 } 526 } 527 528 BUG_ON(dev->dev_mapping == NULL); 529 iput(container_of(dev->dev_mapping, struct inode, i_data)); 530 531 /* drop the reference held my the file priv */ 532 drm_master_put(&file_priv->master); 533 file_priv->is_master = 0; 534 list_del(&file_priv->lhead); 535 mutex_unlock(&dev->struct_mutex); 536 537 if (dev->driver->postclose) 538 dev->driver->postclose(dev, file_priv); 539 540 if (drm_core_check_feature(dev, DRIVER_PRIME)) 541 drm_prime_destroy_file_private(&file_priv->prime); 542 543 put_pid(file_priv->pid); 544 kfree(file_priv); 545 546 /* ======================================================== 547 * End inline drm_release 548 */ 549 550 atomic_inc(&dev->counts[_DRM_STAT_CLOSES]); 551 if (!--dev->open_count) { 552 if (atomic_read(&dev->ioctl_count)) { 553 DRM_ERROR("Device busy: %d\n", 554 atomic_read(&dev->ioctl_count)); 555 retcode = -EBUSY; 556 } else 557 retcode = drm_lastclose(dev); 558 if (drm_device_is_unplugged(dev)) 559 drm_put_dev(dev); 560 } 561 mutex_unlock(&drm_global_mutex); 562 563 return retcode; 564} 565EXPORT_SYMBOL(drm_release); 566 567static bool 568drm_dequeue_event(struct drm_file *file_priv, 569 size_t total, size_t max, struct drm_pending_event **out) 570{ 571 struct drm_device *dev = file_priv->minor->dev; 572 struct drm_pending_event *e; 573 unsigned long flags; 574 bool ret = false; 575 576 spin_lock_irqsave(&dev->event_lock, flags); 577 578 *out = NULL; 579 if (list_empty(&file_priv->event_list)) 580 goto out; 581 e = list_first_entry(&file_priv->event_list, 582 struct drm_pending_event, link); 583 if (e->event->length + total > max) 584 goto out; 585 586 file_priv->event_space += e->event->length; 587 list_del(&e->link); 588 *out = e; 589 ret = true; 590 591out: 592 spin_unlock_irqrestore(&dev->event_lock, flags); 593 return ret; 594} 595 596ssize_t drm_read(struct file *filp, char __user *buffer, 597 size_t count, loff_t *offset) 598{ 599 struct drm_file *file_priv = filp->private_data; 600 struct drm_pending_event *e; 601 size_t total; 602 ssize_t ret; 603 604 ret = wait_event_interruptible(file_priv->event_wait, 605 !list_empty(&file_priv->event_list)); 606 if (ret < 0) 607 return ret; 608 609 total = 0; 610 while (drm_dequeue_event(file_priv, total, count, &e)) { 611 if (copy_to_user(buffer + total, 612 e->event, e->event->length)) { 613 total = -EFAULT; 614 break; 615 } 616 617 total += e->event->length; 618 e->destroy(e); 619 } 620 621 return total; 622} 623EXPORT_SYMBOL(drm_read); 624 625unsigned int drm_poll(struct file *filp, struct poll_table_struct *wait) 626{ 627 struct drm_file *file_priv = filp->private_data; 628 unsigned int mask = 0; 629 630 poll_wait(filp, &file_priv->event_wait, wait); 631 632 if (!list_empty(&file_priv->event_list)) 633 mask |= POLLIN | POLLRDNORM; 634 635 return mask; 636} 637EXPORT_SYMBOL(drm_poll);