ioctl.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:3k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /* ioctl.c -- IOCTL processing for DRM -*- linux-c -*-
  2.  * Created: Fri Jan  8 09:01:26 1999 by faith@precisioninsight.com
  3.  *
  4.  * Copyright 1999 Precision Insight, Inc., Cedar Park, Texas.
  5.  * Copyright 2000 VA Linux Systems, Inc., Sunnyvale, California.
  6.  * All Rights Reserved.
  7.  *
  8.  * Permission is hereby granted, free of charge, to any person obtaining a
  9.  * copy of this software and associated documentation files (the "Software"),
  10.  * to deal in the Software without restriction, including without limitation
  11.  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
  12.  * and/or sell copies of the Software, and to permit persons to whom the
  13.  * Software is furnished to do so, subject to the following conditions:
  14.  * 
  15.  * The above copyright notice and this permission notice (including the next
  16.  * paragraph) shall be included in all copies or substantial portions of the
  17.  * Software.
  18.  * 
  19.  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  20.  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  21.  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
  22.  * PRECISION INSIGHT AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
  23.  * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
  24.  * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
  25.  * DEALINGS IN THE SOFTWARE.
  26.  * 
  27.  * Authors:
  28.  *    Rickard E. (Rik) Faith <faith@valinux.com>
  29.  *
  30.  */
  31. #define __NO_VERSION__
  32. #include "drmP.h"
  33. int drm_irq_busid(struct inode *inode, struct file *filp, unsigned int cmd,
  34.   unsigned long arg)
  35. {
  36. drm_irq_busid_t p;
  37. struct pci_dev *dev;
  38. if (copy_from_user(&p, (drm_irq_busid_t *)arg, sizeof(p)))
  39. return -EFAULT;
  40. dev = pci_find_slot(p.busnum, PCI_DEVFN(p.devnum, p.funcnum));
  41. if (dev) p.irq = dev->irq;
  42. else  p.irq = 0;
  43. DRM_DEBUG("%d:%d:%d => IRQ %dn",
  44.   p.busnum, p.devnum, p.funcnum, p.irq);
  45. if (copy_to_user((drm_irq_busid_t *)arg, &p, sizeof(p)))
  46. return -EFAULT;
  47. return 0;
  48. }
  49. int drm_getunique(struct inode *inode, struct file *filp, unsigned int cmd,
  50.   unsigned long arg)
  51. {
  52. drm_file_t  *priv  = filp->private_data;
  53. drm_device_t  *dev  = priv->dev;
  54. drm_unique_t  u;
  55. if (copy_from_user(&u, (drm_unique_t *)arg, sizeof(u)))
  56. return -EFAULT;
  57. if (u.unique_len >= dev->unique_len) {
  58. if (copy_to_user(u.unique, dev->unique, dev->unique_len))
  59. return -EFAULT;
  60. }
  61. u.unique_len = dev->unique_len;
  62. if (copy_to_user((drm_unique_t *)arg, &u, sizeof(u)))
  63. return -EFAULT;
  64. return 0;
  65. }
  66. int drm_setunique(struct inode *inode, struct file *filp, unsigned int cmd,
  67.   unsigned long arg)
  68. {
  69. drm_file_t  *priv  = filp->private_data;
  70. drm_device_t  *dev  = priv->dev;
  71. drm_unique_t  u;
  72. if (dev->unique_len || dev->unique)
  73. return -EBUSY;
  74. if (copy_from_user(&u, (drm_unique_t *)arg, sizeof(u)))
  75. return -EFAULT;
  76. if (!u.unique_len || u.unique_len > 1024)
  77. return -EINVAL;
  78. dev->unique_len = u.unique_len;
  79. dev->unique = drm_alloc(u.unique_len + 1, DRM_MEM_DRIVER);
  80. if (copy_from_user(dev->unique, u.unique, dev->unique_len))
  81. return -EFAULT;
  82. dev->unique[dev->unique_len] = '';
  83. dev->devname = drm_alloc(strlen(dev->name) + strlen(dev->unique) + 2,
  84.  DRM_MEM_DRIVER);
  85. sprintf(dev->devname, "%s@%s", dev->name, dev->unique);
  86. return 0;
  87. }