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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*********************************************************************
  2.  *                
  3.  * Filename:      esi.c
  4.  * Version:       1.5
  5.  * Description:   Driver for the Extended Systems JetEye PC dongle
  6.  * Status:        Experimental.
  7.  * Author:        Dag Brattli <dagb@cs.uit.no>
  8.  * Created at:    Sat Feb 21 18:54:38 1998
  9.  * Modified at:   Fri Dec 17 09:14:04 1999
  10.  * Modified by:   Dag Brattli <dagb@cs.uit.no>
  11.  * 
  12.  *     Copyright (c) 1999 Dag Brattli, <dagb@cs.uit.no>,
  13.  *     Copyright (c) 1998 Thomas Davis, <ratbert@radiks.net>,
  14.  *     All Rights Reserved.
  15.  *     
  16.  *     This program is free software; you can redistribute it and/or 
  17.  *     modify it under the terms of the GNU General Public License as 
  18.  *     published by the Free Software Foundation; either version 2 of 
  19.  *     the License, or (at your option) any later version.
  20.  * 
  21.  *     This program is distributed in the hope that it will be useful,
  22.  *     but WITHOUT ANY WARRANTY; without even the implied warranty of
  23.  *     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  24.  *     GNU General Public License for more details.
  25.  * 
  26.  *     You should have received a copy of the GNU General Public License 
  27.  *     along with this program; if not, write to the Free Software 
  28.  *     Foundation, Inc., 59 Temple Place, Suite 330, Boston, 
  29.  *     MA 02111-1307 USA
  30.  *     
  31.  ********************************************************************/
  32. #include <linux/module.h>
  33. #include <linux/delay.h>
  34. #include <linux/tty.h>
  35. #include <linux/sched.h>
  36. #include <linux/init.h>
  37. #include <net/irda/irda.h>
  38. #include <net/irda/irmod.h>
  39. #include <net/irda/irda_device.h>
  40. static void esi_open(dongle_t *self, struct qos_info *qos);
  41. static void esi_close(dongle_t *self);
  42. static int  esi_change_speed(struct irda_task *task);
  43. static int  esi_reset(struct irda_task *task);
  44. static struct dongle_reg dongle = {
  45. Q_NULL,
  46. IRDA_ESI_DONGLE,
  47. esi_open,
  48. esi_close,
  49. esi_reset,
  50. esi_change_speed,
  51. };
  52. int __init esi_init(void)
  53. {
  54. return irda_device_register_dongle(&dongle);
  55. }
  56. void esi_cleanup(void)
  57. {
  58. irda_device_unregister_dongle(&dongle);
  59. }
  60. static void esi_open(dongle_t *self, struct qos_info *qos)
  61. {
  62. qos->baud_rate.bits &= IR_9600|IR_19200|IR_115200;
  63. qos->min_turn_time.bits = 0x01; /* Needs at least 10 ms */
  64. MOD_INC_USE_COUNT;
  65. }
  66. static void esi_close(dongle_t *dongle)
  67. {
  68. /* Power off dongle */
  69. dongle->set_dtr_rts(dongle->dev, FALSE, FALSE);
  70. MOD_DEC_USE_COUNT;
  71. }
  72. /*
  73.  * Function esi_change_speed (task)
  74.  *
  75.  *    Set the speed for the Extended Systems JetEye PC ESI-9680 type dongle
  76.  *
  77.  */
  78. static int esi_change_speed(struct irda_task *task)
  79. {
  80. dongle_t *self = (dongle_t *) task->instance;
  81. __u32 speed = (__u32) task->param;
  82. int dtr, rts;
  83. switch (speed) {
  84. case 19200:
  85. dtr = TRUE;
  86. rts = FALSE;
  87. break;
  88. case 115200:
  89. dtr = rts = TRUE;
  90. break;
  91. case 9600:
  92. default:
  93. dtr = FALSE;
  94. rts = TRUE;
  95. break;
  96. }
  97. /* Change speed of dongle */
  98. self->set_dtr_rts(self->dev, dtr, rts);
  99. self->speed = speed;
  100. irda_task_next_state(task, IRDA_TASK_DONE);
  101. return 0;
  102. }
  103. /*
  104.  * Function esi_reset (task)
  105.  *
  106.  *    Reset dongle;
  107.  *
  108.  */
  109. static int esi_reset(struct irda_task *task)
  110. {
  111. dongle_t *self = (dongle_t *) task->instance;
  112. self->set_dtr_rts(self->dev, FALSE, FALSE);
  113. irda_task_next_state(task, IRDA_TASK_DONE);
  114. return 0;
  115. }
  116. #ifdef MODULE
  117. MODULE_AUTHOR("Dag Brattli <dagb@cs.uit.no>");
  118. MODULE_DESCRIPTION("Extended Systems JetEye PC dongle driver");
  119. MODULE_LICENSE("GPL");
  120. /*
  121.  * Function init_module (void)
  122.  *
  123.  *    Initialize ESI module
  124.  *
  125.  */
  126. int init_module(void)
  127. {
  128. return esi_init();
  129. }
  130. /*
  131.  * Function cleanup_module (void)
  132.  *
  133.  *    Cleanup ESI module
  134.  *
  135.  */
  136. void cleanup_module(void)
  137. {
  138.         esi_cleanup();
  139. }
  140. #endif /* MODULE */