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

嵌入式Linux

开发平台:

Unix_Linux

  1. /* drm_stub.h -- -*- linux-c -*-
  2.  * Created: Fri Jan 19 10:48:35 2001 by faith@acm.org
  3.  *
  4.  * Copyright 2001 VA Linux Systems, Inc., Sunnyvale, California.
  5.  * All Rights Reserved.
  6.  *
  7.  * Permission is hereby granted, free of charge, to any person obtaining a
  8.  * copy of this software and associated documentation files (the "Software"),
  9.  * to deal in the Software without restriction, including without limitation
  10.  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
  11.  * and/or sell copies of the Software, and to permit persons to whom the
  12.  * Software is furnished to do so, subject to the following conditions:
  13.  *
  14.  * The above copyright notice and this permission notice (including the next
  15.  * paragraph) shall be included in all copies or substantial portions of the
  16.  * Software.
  17.  *
  18.  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  19.  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  20.  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
  21.  * PRECISION INSIGHT AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
  22.  * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
  23.  * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
  24.  * DEALINGS IN THE SOFTWARE.
  25.  *
  26.  * Authors:
  27.  *    Rickard E. (Rik) Faith <faith@valinux.com>
  28.  *
  29.  */
  30. #define __NO_VERSION__
  31. #include "drmP.h"
  32. #if LINUX_VERSION_CODE < 0x020400
  33. #include "stubsupport-pre24.h"
  34. #endif
  35. #define DRM_STUB_MAXCARDS 16 /* Enough for one machine */
  36. static struct drm_stub_list {
  37. const char             *name;
  38. struct file_operations *fops;
  39. struct proc_dir_entry  *dev_root;
  40. } *DRM(stub_list);
  41. static struct proc_dir_entry *DRM(stub_root);
  42. static struct drm_stub_info {
  43. int (*info_register)(const char *name, struct file_operations *fops,
  44.      drm_device_t *dev);
  45. int (*info_unregister)(int minor);
  46. } DRM(stub_info);
  47. static int DRM(stub_open)(struct inode *inode, struct file *filp)
  48. {
  49. int                    minor = MINOR(inode->i_rdev);
  50. int                    err   = -ENODEV;
  51. struct file_operations *old_fops;
  52. if (!DRM(stub_list) || !DRM(stub_list)[minor].fops) return -ENODEV;
  53. old_fops   = filp->f_op;
  54. filp->f_op = fops_get(DRM(stub_list)[minor].fops);
  55. if (filp->f_op->open && (err = filp->f_op->open(inode, filp))) {
  56. fops_put(filp->f_op);
  57. filp->f_op = fops_get(old_fops);
  58. }
  59. fops_put(old_fops);
  60. return err;
  61. }
  62. static struct file_operations DRM(stub_fops) = {
  63. #if LINUX_VERSION_CODE >= 0x020400
  64. owner:   THIS_MODULE,
  65. #endif
  66. open:  DRM(stub_open)
  67. };
  68. static int DRM(stub_getminor)(const char *name, struct file_operations *fops,
  69.       drm_device_t *dev)
  70. {
  71. int i;
  72. if (!DRM(stub_list)) {
  73. DRM(stub_list) = DRM(alloc)(sizeof(*DRM(stub_list))
  74.     * DRM_STUB_MAXCARDS, DRM_MEM_STUB);
  75. if(!DRM(stub_list)) return -1;
  76. for (i = 0; i < DRM_STUB_MAXCARDS; i++) {
  77. DRM(stub_list)[i].name = NULL;
  78. DRM(stub_list)[i].fops = NULL;
  79. }
  80. }
  81. for (i = 0; i < DRM_STUB_MAXCARDS; i++) {
  82. if (!DRM(stub_list)[i].fops) {
  83. DRM(stub_list)[i].name = name;
  84. DRM(stub_list)[i].fops = fops;
  85. DRM(stub_root) = DRM(proc_init)(dev, i, DRM(stub_root),
  86. &DRM(stub_list)[i]
  87. .dev_root);
  88. return i;
  89. }
  90. }
  91. return -1;
  92. }
  93. static int DRM(stub_putminor)(int minor)
  94. {
  95. if (minor < 0 || minor >= DRM_STUB_MAXCARDS) return -1;
  96. DRM(stub_list)[minor].name = NULL;
  97. DRM(stub_list)[minor].fops = NULL;
  98. DRM(proc_cleanup)(minor, DRM(stub_root),
  99.   DRM(stub_list)[minor].dev_root);
  100. if (minor) {
  101. inter_module_put("drm");
  102. } else {
  103. inter_module_unregister("drm");
  104. DRM(free)(DRM(stub_list),
  105.   sizeof(*DRM(stub_list)) * DRM_STUB_MAXCARDS,
  106.   DRM_MEM_STUB);
  107. unregister_chrdev(DRM_MAJOR, "drm");
  108. }
  109. return 0;
  110. }
  111. int DRM(stub_register)(const char *name, struct file_operations *fops,
  112.        drm_device_t *dev)
  113. {
  114. struct drm_stub_info *i = NULL;
  115. DRM_DEBUG("n");
  116. if (register_chrdev(DRM_MAJOR, "drm", &DRM(stub_fops)))
  117. i = (struct drm_stub_info *)inter_module_get("drm");
  118. if (i) {
  119. /* Already registered */
  120. DRM(stub_info).info_register   = i->info_register;
  121. DRM(stub_info).info_unregister = i->info_unregister;
  122. DRM_DEBUG("already registeredn");
  123. } else if (DRM(stub_info).info_register != DRM(stub_getminor)) {
  124. DRM(stub_info).info_register   = DRM(stub_getminor);
  125. DRM(stub_info).info_unregister = DRM(stub_putminor);
  126. DRM_DEBUG("calling inter_module_registern");
  127. inter_module_register("drm", THIS_MODULE, &DRM(stub_info));
  128. }
  129. if (DRM(stub_info).info_register)
  130. return DRM(stub_info).info_register(name, fops, dev);
  131. return -1;
  132. }
  133. int DRM(stub_unregister)(int minor)
  134. {
  135. DRM_DEBUG("%dn", minor);
  136. if (DRM(stub_info).info_unregister)
  137. return DRM(stub_info).info_unregister(minor);
  138. return -1;
  139. }