fops.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:8k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /* fops.c -- File operations for DRM -*- linux-c -*-
  2.  * Created: Mon Jan  4 08:58:31 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.  *    Daryll Strauss <daryll@valinux.com>
  30.  *
  31.  */
  32. #define __NO_VERSION__
  33. #include "drmP.h"
  34. #include <linux/poll.h>
  35. /* drm_open is called whenever a process opens /dev/drm. */
  36. int drm_open_helper(struct inode *inode, struct file *filp, drm_device_t *dev)
  37. {
  38. kdev_t      minor = MINOR(inode->i_rdev);
  39. drm_file_t   *priv;
  40. if (filp->f_flags & O_EXCL)   return -EBUSY; /* No exclusive opens */
  41. if (!drm_cpu_valid())         return -EINVAL;
  42. DRM_DEBUG("pid = %d, minor = %dn", current->pid, minor);
  43. priv     = drm_alloc(sizeof(*priv), DRM_MEM_FILES);
  44. if(priv == NULL)
  45. return -ENOMEM;
  46. memset(priv, 0, sizeof(*priv));
  47. filp->private_data  = priv;
  48. priv->uid     = current->euid;
  49. priv->pid     = current->pid;
  50. priv->minor     = minor;
  51. priv->dev     = dev;
  52. priv->ioctl_count   = 0;
  53. priv->authenticated = capable(CAP_SYS_ADMIN);
  54. down(&dev->struct_sem);
  55. if (!dev->file_last) {
  56. priv->next = NULL;
  57. priv->prev = NULL;
  58. dev->file_first = priv;
  59. dev->file_last = priv;
  60. } else {
  61. priv->next      = NULL;
  62. priv->prev      = dev->file_last;
  63. dev->file_last->next = priv;
  64. dev->file_last      = priv;
  65. }
  66. up(&dev->struct_sem);
  67. return 0;
  68. }
  69. int drm_flush(struct file *filp)
  70. {
  71. drm_file_t    *priv   = filp->private_data;
  72. drm_device_t  *dev    = priv->dev;
  73. DRM_DEBUG("pid = %d, device = 0x%x, open_count = %dn",
  74.   current->pid, dev->device, dev->open_count);
  75. return 0;
  76. }
  77. /* drm_release is called whenever a process closes /dev/drm*.  Linux calls
  78.    this only if any mappings have been closed. */
  79. int drm_release(struct inode *inode, struct file *filp)
  80. {
  81. drm_file_t    *priv   = filp->private_data;
  82. drm_device_t  *dev    = priv->dev;
  83. DRM_DEBUG("pid = %d, device = 0x%x, open_count = %dn",
  84.   current->pid, dev->device, dev->open_count);
  85. if (dev->lock.hw_lock
  86.     && _DRM_LOCK_IS_HELD(dev->lock.hw_lock->lock)
  87.     && dev->lock.pid == current->pid) {
  88. DRM_ERROR("Process %d dead, freeing lock for context %dn",
  89.   current->pid,
  90.   _DRM_LOCKING_CONTEXT(dev->lock.hw_lock->lock));
  91. drm_lock_free(dev,
  92.       &dev->lock.hw_lock->lock,
  93.       _DRM_LOCKING_CONTEXT(dev->lock.hw_lock->lock));
  94. /* FIXME: may require heavy-handed reset of
  95.                                    hardware at this point, possibly
  96.                                    processed via a callback to the X
  97.                                    server. */
  98. }
  99. drm_reclaim_buffers(dev, priv->pid);
  100. drm_fasync(-1, filp, 0);
  101. down(&dev->struct_sem);
  102. if (priv->prev) priv->prev->next = priv->next;
  103. else dev->file_first  = priv->next;
  104. if (priv->next) priv->next->prev = priv->prev;
  105. else dev->file_last  = priv->prev;
  106. up(&dev->struct_sem);
  107. drm_free(priv, sizeof(*priv), DRM_MEM_FILES);
  108. return 0;
  109. }
  110. int drm_fasync(int fd, struct file *filp, int on)
  111. {
  112. drm_file_t    *priv   = filp->private_data;
  113. drm_device_t  *dev    = priv->dev;
  114. int       retcode;
  115. DRM_DEBUG("fd = %d, device = 0x%xn", fd, dev->device);
  116. retcode = fasync_helper(fd, filp, on, &dev->buf_async);
  117. if (retcode < 0) return retcode;
  118. return 0;
  119. }
  120. /* The drm_read and drm_write_string code (especially that which manages
  121.    the circular buffer), is based on Alessandro Rubini's LINUX DEVICE
  122.    DRIVERS (Cambridge: O'Reilly, 1998), pages 111-113. */
  123. ssize_t drm_read(struct file *filp, char *buf, size_t count, loff_t *off)
  124. {
  125. drm_file_t    *priv   = filp->private_data;
  126. drm_device_t  *dev    = priv->dev;
  127. int       left;
  128. int       avail;
  129. int       send;
  130. int       cur;
  131. DRM_DEBUG("%p, %pn", dev->buf_rp, dev->buf_wp);
  132. while (dev->buf_rp == dev->buf_wp) {
  133. DRM_DEBUG("  sleepingn");
  134. if (filp->f_flags & O_NONBLOCK) {
  135. return -EAGAIN;
  136. }
  137. interruptible_sleep_on(&dev->buf_readers);
  138. if (signal_pending(current)) {
  139. DRM_DEBUG("  interruptedn");
  140. return -ERESTARTSYS;
  141. }
  142. DRM_DEBUG("  awaken");
  143. }
  144. left  = (dev->buf_rp + DRM_BSZ - dev->buf_wp) % DRM_BSZ;
  145. avail = DRM_BSZ - left;
  146. send  = DRM_MIN(avail, count);
  147. while (send) {
  148. if (dev->buf_wp > dev->buf_rp) {
  149. cur = DRM_MIN(send, dev->buf_wp - dev->buf_rp);
  150. } else {
  151. cur = DRM_MIN(send, dev->buf_end - dev->buf_rp);
  152. }
  153. if (copy_to_user(buf, dev->buf_rp, cur))
  154. return -EFAULT;
  155. dev->buf_rp += cur;
  156. if (dev->buf_rp == dev->buf_end) dev->buf_rp = dev->buf;
  157. send -= cur;
  158. }
  159. wake_up_interruptible(&dev->buf_writers);
  160. return DRM_MIN(avail, count);;
  161. }
  162. int drm_write_string(drm_device_t *dev, const char *s)
  163. {
  164. int left   = (dev->buf_rp + DRM_BSZ - dev->buf_wp) % DRM_BSZ;
  165. int send   = strlen(s);
  166. int count;
  167. DRM_DEBUG("%d left, %d to send (%p, %p)n",
  168.   left, send, dev->buf_rp, dev->buf_wp);
  169. if (left == 1 || dev->buf_wp != dev->buf_rp) {
  170. DRM_ERROR("Buffer not empty (%d left, wp = %p, rp = %p)n",
  171.   left,
  172.   dev->buf_wp,
  173.   dev->buf_rp);
  174. }
  175. while (send) {
  176. if (dev->buf_wp >= dev->buf_rp) {
  177. count = DRM_MIN(send, dev->buf_end - dev->buf_wp);
  178. if (count == left) --count; /* Leave a hole */
  179. } else {
  180. count = DRM_MIN(send, dev->buf_rp - dev->buf_wp - 1);
  181. }
  182. strncpy(dev->buf_wp, s, count);
  183. dev->buf_wp += count;
  184. if (dev->buf_wp == dev->buf_end) dev->buf_wp = dev->buf;
  185. send -= count;
  186. }
  187. #if LINUX_VERSION_CODE < 0x020315 && !defined(KILLFASYNCHASTHREEPARAMETERS)
  188. /* The extra parameter to kill_fasync was added in 2.3.21, and is
  189.            _not_ present in _stock_ 2.2.14 and 2.2.15.  However, some
  190.            distributions patch 2.2.x kernels to add this parameter.  The
  191.            Makefile.linux attempts to detect this addition and defines
  192.            KILLFASYNCHASTHREEPARAMETERS if three parameters are found. */
  193. if (dev->buf_async) kill_fasync(dev->buf_async, SIGIO);
  194. #else
  195. /* Parameter added in 2.3.21. */
  196. #if LINUX_VERSION_CODE < 0x020400
  197. if (dev->buf_async) kill_fasync(dev->buf_async, SIGIO, POLL_IN);
  198. #else
  199. /* Type of first parameter changed in
  200.                                    Linux 2.4.0-test2... */
  201. if (dev->buf_async) kill_fasync(&dev->buf_async, SIGIO, POLL_IN);
  202. #endif
  203. #endif
  204. DRM_DEBUG("wakingn");
  205. wake_up_interruptible(&dev->buf_readers);
  206. return 0;
  207. }
  208. unsigned int drm_poll(struct file *filp, struct poll_table_struct *wait)
  209. {
  210. drm_file_t   *priv = filp->private_data;
  211. drm_device_t *dev  = priv->dev;
  212. poll_wait(filp, &dev->buf_readers, wait);
  213. if (dev->buf_wp != dev->buf_rp) return POLLIN | POLLRDNORM;
  214. return 0;
  215. }