phonedev.c
上传用户:weyjxb
上传日期:2020-05-18
资源大小:52k
文件大小:5k
源码类别:

多显示器编程

开发平台:

Unix_Linux

  1. /*
  2.  *            Telephony registration for Linux
  3.  *
  4.  *              (c) Copyright 1999 Red Hat Software Inc.
  5.  *
  6.  *              This program is free software; you can redistribute it and/or
  7.  *              modify it under the terms of the GNU General Public License
  8.  *              as published by the Free Software Foundation; either version
  9.  *              2 of the License, or (at your option) any later version.
  10.  *
  11.  * Author:      Alan Cox, <alan@redhat.com>
  12.  *
  13.  * Fixes:       Mar 01 2000 Thomas Sparr, <thomas.l.sparr@telia.com>
  14.  *              phone_register_device now works with unit!=PHONE_UNIT_ANY
  15.  */
  16. #if LINUX_VERSION_CODE < 0x020400
  17. #include <linux/config.h>
  18. #endif
  19. #include <linux/version.h>
  20. #include <linux/module.h>
  21. #include <linux/types.h>
  22. #include <linux/kernel.h>
  23. #include <linux/sched.h>
  24. #include <linux/mm.h>
  25. #include <linux/string.h>
  26. #include <linux/errno.h>
  27. #include "phonedev.h"
  28. #if LINUX_VERSION_CODE >= 0x020400
  29. #include <linux/init.h>
  30. #endif
  31. #include <asm/uaccess.h>
  32. #include <asm/system.h>
  33. #include <linux/kmod.h>
  34. #if LINUX_VERSION_CODE >= 0x020400
  35. #include <linux/sem.h>
  36. #endif
  37. #define PHONE_NUM_DEVICES 256
  38. /*
  39.  *    Active devices 
  40.  */
  41. static struct phone_device *phone_device[PHONE_NUM_DEVICES];
  42. #if LINUX_VERSION_CODE >= 0x020400
  43. static DECLARE_MUTEX(phone_lock);
  44. #endif
  45. /*
  46.  *    Open a phone device.
  47.  */
  48. static int phone_open(struct inode *inode, struct file *file)
  49. {
  50. unsigned int minor = MINOR(inode->i_rdev);
  51. int err = 0;
  52. struct phone_device *p;
  53. #if LINUX_VERSION_CODE >= 0x020400
  54. struct file_operations *old_fops, *new_fops = NULL;
  55. #endif
  56. if (minor >= PHONE_NUM_DEVICES)
  57. return -ENODEV;
  58. #if LINUX_VERSION_CODE >= 0x020400
  59. down(&phone_lock);
  60. #endif
  61. p = phone_device[minor];
  62. #if LINUX_VERSION_CODE < 0x020400
  63. if (p == NULL) {
  64. #else
  65. if (p)
  66. new_fops = fops_get(p->f_op);
  67. if (!new_fops) {
  68. #endif
  69. char modname[32];
  70. #if LINUX_VERSION_CODE >= 0x020400
  71. up(&phone_lock);
  72. #endif
  73. sprintf(modname, "char-major-%d-%d", PHONE_MAJOR, minor);
  74. request_module(modname);
  75. #if LINUX_VERSION_CODE >= 0x020400
  76. down(&phone_lock);
  77. #endif
  78. p = phone_device[minor];
  79. #if LINUX_VERSION_CODE < 0x020400
  80. if (p == NULL)
  81. return -ENODEV;
  82. }
  83. if (p->open) {
  84. err = p->open(p, file); /* Tell the device it is open */
  85. if (err)
  86. return err;
  87. }
  88. file->f_op = p->f_op;
  89. return 0;
  90. #else
  91. if (p == NULL || (new_fops = fops_get(p->f_op)) == NULL) {
  92. err = -ENODEV;
  93. goto end;
  94. }
  95. }
  96. old_fops = file->f_op;
  97. file->f_op = new_fops;
  98. if (p->open)
  99. err = p->open(p, file); /* Tell the device it is open */
  100. if (err) {
  101. fops_put(file->f_op);
  102. file->f_op = fops_get(old_fops);
  103. }
  104. fops_put(old_fops);
  105.       end:
  106. up(&phone_lock);
  107. return err;
  108. #endif
  109. }
  110. /*
  111.  *    Telephony For Linux device drivers request registration here.
  112.  */
  113. int phone_register_device(struct phone_device *p, int unit)
  114. {
  115. int base;
  116. int end;
  117. int i;
  118. base = 0;
  119. end = PHONE_NUM_DEVICES - 1;
  120. if (unit != PHONE_UNIT_ANY) {
  121. base = unit;
  122. end = unit;
  123. }
  124. #if LINUX_VERSION_CODE >= 0x020400
  125. down(&phone_lock);
  126. #endif
  127. for (i = base; i < end; i++) {
  128. if (phone_device[i] == NULL) {
  129. phone_device[i] = p;
  130. p->minor = i;
  131. MOD_INC_USE_COUNT;
  132. #if LINUX_VERSION_CODE >= 0x020400
  133. up(&phone_lock);
  134. #endif
  135. return 0;
  136. }
  137. }
  138. #if LINUX_VERSION_CODE >= 0x020400
  139. up(&phone_lock);
  140. #endif
  141. return -ENFILE;
  142. }
  143. /*
  144.  *    Unregister an unused Telephony for linux device
  145.  */
  146. void phone_unregister_device(struct phone_device *pfd)
  147. {
  148. #if LINUX_VERSION_CODE >= 0x020400
  149. down(&phone_lock);
  150. #endif
  151. if (phone_device[pfd->minor] != pfd)
  152. panic("phone: bad unregister");
  153. phone_device[pfd->minor] = NULL;
  154. #if LINUX_VERSION_CODE >= 0x020400
  155. up(&phone_lock);
  156. #endif
  157. MOD_DEC_USE_COUNT;
  158. }
  159. static struct file_operations phone_fops = {
  160. #if LINUX_VERSION_CODE >= 0x020400
  161. owner:THIS_MODULE,
  162. open:phone_open,
  163. #else
  164. NULL,
  165. NULL,
  166. NULL,
  167. NULL, /* readdir */
  168. NULL,
  169. NULL,
  170. NULL,
  171. phone_open,
  172. NULL, /* flush */
  173. NULL
  174. #endif
  175. };
  176. /*
  177.  *    Board init functions
  178.  */
  179. #if LINUX_VERSION_CODE < 0x020400
  180. extern int ixj_init(void);
  181. /*
  182.  *    Initialise Telephony for linux
  183.  */
  184. int telephony_init(void)
  185. #else
  186. static int __init telephony_init(void)
  187. #endif
  188. {
  189. printk(KERN_INFO "Linux telephony interface: v1.00n");
  190. if (register_chrdev(PHONE_MAJOR, "telephony", &phone_fops)) {
  191. printk("phonedev: unable to get major %dn", PHONE_MAJOR);
  192. return -EIO;
  193. }
  194. #if LINUX_VERSION_CODE < 0x020400
  195. /*
  196.  *    Init kernel installed drivers
  197.  */
  198. #ifdef CONFIG_PHONE_IXJ
  199. ixj_init();
  200. #endif
  201. #endif
  202. return 0;
  203. }
  204. #ifdef MODULE
  205. #if LINUX_VERSION_CODE < 0x020400
  206. int init_module(void)
  207. {
  208. return telephony_init();
  209. }
  210. void cleanup_module(void)
  211. #else
  212. static void __exit telephony_exit(void)
  213. #endif
  214. {
  215. unregister_chrdev(PHONE_MAJOR, "telephony");
  216. }
  217. #endif
  218. #if LINUX_VERSION_CODE >= 0x020400
  219. module_init(telephony_init);
  220. module_exit(telephony_exit);
  221. #endif
  222. EXPORT_SYMBOL(phone_register_device);
  223. EXPORT_SYMBOL(phone_unregister_device);