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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * $Id: serport.c,v 1.7 2001/05/25 19:00:27 jdeneux Exp $
  3.  *
  4.  *  Copyright (c) 1999-2001 Vojtech Pavlik
  5.  *
  6.  *  Sponsored by SuSE
  7.  */
  8. /*
  9.  * This is a module that converts a tty line into a much simpler
  10.  * 'serial io port' abstraction that the input device drivers use.
  11.  */
  12. /*
  13.  * This program is free software; you can redistribute it and/or modify
  14.  * it under the terms of the GNU General Public License as published by
  15.  * the Free Software Foundation; either version 2 of the License, or 
  16.  * (at your option) any later version.
  17.  * 
  18.  * This program is distributed in the hope that it will be useful,
  19.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  20.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  21.  * GNU General Public License for more details.
  22.  * 
  23.  * You should have received a copy of the GNU General Public License
  24.  * along with this program; if not, write to the Free Software
  25.  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  26.  * 
  27.  *  Should you need to contact me, the author, you can do so either by
  28.  * e-mail - mail your message to <vojtech@ucw.cz>, or by paper mail:
  29.  * Vojtech Pavlik, Ucitelska 1576, Prague 8, 182 00 Czech Republic
  30.  */
  31. #include <asm/uaccess.h>
  32. #include <linux/kernel.h>
  33. #include <linux/slab.h>
  34. #include <linux/module.h>
  35. #include <linux/init.h>
  36. #include <linux/serio.h>
  37. #include <linux/tty.h>
  38. struct serport {
  39. struct tty_struct *tty;
  40. wait_queue_head_t wait;
  41. struct serio serio;
  42. };
  43. /*
  44.  * Callback functions from the serio code.
  45.  */
  46. static int serport_serio_write(struct serio *serio, unsigned char data)
  47. {
  48. struct serport *serport = serio->driver;
  49. return -(serport->tty->driver.write(serport->tty, 0, &data, 1) != 1);
  50. }
  51. static int serport_serio_open(struct serio *serio)
  52. {
  53.         return 0;
  54. }
  55. static void serport_serio_close(struct serio *serio)
  56. {
  57. struct serport *serport = serio->driver;
  58. wake_up_interruptible(&serport->wait);
  59. }
  60. /*
  61.  * serport_ldisc_open() is the routine that is called upon setting our line
  62.  * discipline on a tty. It looks for the Mag, and if found, registers
  63.  * it as a joystick device.
  64.  */
  65. static int serport_ldisc_open(struct tty_struct *tty)
  66. {
  67. struct serport *serport;
  68. MOD_INC_USE_COUNT;
  69. if (!(serport = kmalloc(sizeof(struct serport), GFP_KERNEL))) {
  70. MOD_DEC_USE_COUNT;
  71. return -ENOMEM;
  72. }
  73. memset(serport, 0, sizeof(struct serport));
  74. serport->tty = tty;
  75. tty->disc_data = serport;
  76. serport->serio.type = SERIO_RS232;
  77. serport->serio.write = serport_serio_write;
  78. serport->serio.open = serport_serio_open;
  79. serport->serio.close = serport_serio_close;
  80. serport->serio.driver = serport;
  81. init_waitqueue_head(&serport->wait);
  82. return 0;
  83. }
  84. /*
  85.  * serport_ldisc_close() is the opposite of serport_ldisc_open()
  86.  */
  87. static void serport_ldisc_close(struct tty_struct *tty)
  88. {
  89. struct serport *serport = (struct serport*) tty->disc_data;
  90. kfree(serport);
  91. MOD_DEC_USE_COUNT;
  92. }
  93. /*
  94.  * serport_ldisc_receive() is called by the low level tty driver when characters
  95.  * are ready for us. We forward the characters, one by one to the 'interrupt'
  96.  * routine.
  97.  */
  98. static void serport_ldisc_receive(struct tty_struct *tty, const unsigned char *cp, char *fp, int count)
  99. {
  100. struct serport *serport = (struct serport*) tty->disc_data;
  101. int i;
  102. for (i = 0; i < count; i++)
  103. if (serport->serio.dev)
  104. serport->serio.dev->interrupt(&serport->serio, cp[i], 0);
  105. }
  106. /*
  107.  * serport_ldisc_room() reports how much room we do have for receiving data.
  108.  * Although we in fact have infinite room, we need to specify some value
  109.  * here, and 256 seems to be reasonable.
  110.  */
  111. static int serport_ldisc_room(struct tty_struct *tty)
  112. {
  113. return 256;
  114. }
  115. /*
  116.  * serport_ldisc_read() just waits indefinitely if everything goes well. 
  117.  * However, when the serio driver closes the serio port, it finishes,
  118.  * returning 0 characters.
  119.  */
  120. static ssize_t serport_ldisc_read(struct tty_struct * tty, struct file * file, unsigned char * buf, size_t nr)
  121. {
  122. struct serport *serport = (struct serport*) tty->disc_data;
  123. DECLARE_WAITQUEUE(wait, current);
  124. char name[32];
  125. #ifdef CONFIG_DEVFS_FS
  126. sprintf(name, tty->driver.name, MINOR(tty->device) - tty->driver.minor_start);
  127. #else
  128. sprintf(name, "%s%d", tty->driver.name, MINOR(tty->device) - tty->driver.minor_start);
  129. #endif
  130. serio_register_port(&serport->serio);
  131. printk(KERN_INFO "serio%d: Serial port %sn", serport->serio.number, name);
  132. add_wait_queue(&serport->wait, &wait);
  133. current->state = TASK_INTERRUPTIBLE;
  134. while(serport->serio.type && !signal_pending(current)) schedule();
  135. current->state = TASK_RUNNING;
  136. remove_wait_queue(&serport->wait, &wait);
  137. serio_unregister_port(&serport->serio);
  138. return 0;
  139. }
  140. /*
  141.  * serport_ldisc_ioctl() allows to set the port protocol, and device ID
  142.  */
  143. static int serport_ldisc_ioctl(struct tty_struct * tty, struct file * file, unsigned int cmd, unsigned long arg)
  144. {
  145. struct serport *serport = (struct serport*) tty->disc_data;
  146. switch (cmd) {
  147. case SPIOCSTYPE:
  148. return get_user(serport->serio.type, (unsigned long *) arg);
  149. }
  150. return -EINVAL;
  151. }
  152. /*
  153.  * The line discipline structure.
  154.  */
  155. static struct tty_ldisc serport_ldisc = {
  156. name: "input",
  157. open: serport_ldisc_open,
  158. close: serport_ldisc_close,
  159. read: serport_ldisc_read,
  160. ioctl: serport_ldisc_ioctl,
  161. receive_buf: serport_ldisc_receive,
  162. receive_room: serport_ldisc_room,
  163. };
  164. /*
  165.  * The functions for insering/removing us as a module.
  166.  */
  167. int __init serport_init(void)
  168. {
  169.         if (tty_register_ldisc(N_MOUSE, &serport_ldisc)) {
  170.                 printk(KERN_ERR "serport.c: Error registering line discipline.n");
  171. return -ENODEV;
  172. }
  173. return  0;
  174. }
  175. void __exit serport_exit(void)
  176. {
  177. tty_register_ldisc(N_MOUSE, NULL);
  178. }
  179. module_init(serport_init);
  180. module_exit(serport_exit);
  181. MODULE_LICENSE("GPL");