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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*********************************************************************
  2.  *                
  3.  * Filename:      old_belkin.c
  4.  * Version:       1.1
  5.  * Description:   Driver for the Belkin (old) SmartBeam dongle
  6.  * Status:        Experimental...
  7.  * Author:        Jean Tourrilhes <jt@hpl.hp.com>
  8.  * Created at:    22/11/99
  9.  * Modified at:   Fri Dec 17 09:13:32 1999
  10.  * Modified by:   Dag Brattli <dagb@cs.uit.no>
  11.  * 
  12.  *     Copyright (c) 1999 Jean Tourrilhes, All Rights Reserved.
  13.  *     
  14.  *     This program is free software; you can redistribute it and/or 
  15.  *     modify it under the terms of the GNU General Public License as 
  16.  *     published by the Free Software Foundation; either version 2 of 
  17.  *     the License, or (at your option) any later version.
  18.  * 
  19.  *     This program is distributed in the hope that it will be useful,
  20.  *     but WITHOUT ANY WARRANTY; without even the implied warranty of
  21.  *     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  22.  *     GNU General Public License for more details.
  23.  * 
  24.  *     You should have received a copy of the GNU General Public License 
  25.  *     along with this program; if not, write to the Free Software 
  26.  *     Foundation, Inc., 59 Temple Place, Suite 330, Boston, 
  27.  *     MA 02111-1307 USA
  28.  *     
  29.  ********************************************************************/
  30. #include <linux/module.h>
  31. #include <linux/delay.h>
  32. #include <linux/tty.h>
  33. #include <linux/sched.h>
  34. #include <linux/init.h>
  35. #include <linux/irda.h>
  36. #include <net/irda/irda.h>
  37. #include <net/irda/irmod.h>
  38. #include <net/irda/irda_device.h>
  39. /*
  40.  * Belkin is selling a dongle called the SmartBeam.
  41.  * In fact, there is two hardware version of this dongle, of course with
  42.  * the same name and looking the exactly same (grrr...).
  43.  * I guess that I've got the old one, because inside I don't have
  44.  * a jumper for IrDA/ASK...
  45.  *
  46.  * As far as I can make it from info on their web site, the old dongle 
  47.  * support only 9600 b/s, which make our life much simpler as far as
  48.  * the driver is concerned, but you might not like it very much ;-)
  49.  * The new SmartBeam does 115 kb/s, and I've not tested it...
  50.  *
  51.  * Belkin claim that the correct driver for the old dongle (in Windows)
  52.  * is the generic Parallax 9500a driver, but the Linux LiteLink driver
  53.  * fails for me (probably because Linux-IrDA doesn't rate fallback),
  54.  * so I created this really dumb driver...
  55.  *
  56.  * In fact, this driver doesn't do much. The only thing it does is to
  57.  * prevent Linux-IrDA to use any other speed than 9600 b/s ;-) This
  58.  * driver is called "old_belkin" so that when the new SmartBeam is supported
  59.  * its driver can be called "belkin" instead of "new_belkin".
  60.  *
  61.  * Note : this driver was written without any info/help from Belkin,
  62.  * so a lot of info here might be totally wrong. Blame me ;-)
  63.  */
  64. /* Let's guess */
  65. #define MIN_DELAY 25      /* 15 us, but wait a little more to be sure */
  66. static void old_belkin_open(dongle_t *self, struct qos_info *qos);
  67. static void old_belkin_close(dongle_t *self);
  68. static int  old_belkin_change_speed(struct irda_task *task);
  69. static int  old_belkin_reset(struct irda_task *task);
  70. /* These are the baudrates supported */
  71. /* static __u32 baud_rates[] = { 9600 }; */
  72. static struct dongle_reg dongle = {
  73. Q_NULL,
  74. IRDA_OLD_BELKIN_DONGLE,
  75. old_belkin_open,
  76. old_belkin_close,
  77. old_belkin_reset,
  78. old_belkin_change_speed,
  79. };
  80. int __init old_belkin_init(void)
  81. {
  82. return irda_device_register_dongle(&dongle);
  83. }
  84. void old_belkin_cleanup(void)
  85. {
  86. irda_device_unregister_dongle(&dongle);
  87. }
  88. static void old_belkin_open(dongle_t *self, struct qos_info *qos)
  89. {
  90. /* Not too fast, please... */
  91. qos->baud_rate.bits &= IR_9600;
  92. /* Needs at least 10 ms (totally wild guess, can do probably better) */
  93. qos->min_turn_time.bits = 0x01;
  94. MOD_INC_USE_COUNT;
  95. }
  96. static void old_belkin_close(dongle_t *self)
  97. {
  98. /* Power off dongle */
  99. self->set_dtr_rts(self->dev, FALSE, FALSE);
  100. MOD_DEC_USE_COUNT;
  101. }
  102. /*
  103.  * Function old_belkin_change_speed (task)
  104.  *
  105.  *    With only one speed available, not much to do...
  106.  */
  107. static int old_belkin_change_speed(struct irda_task *task)
  108. {
  109. irda_task_next_state(task, IRDA_TASK_DONE);
  110. return 0;
  111. }
  112. /*
  113.  * Function old_belkin_reset (task)
  114.  *
  115.  *      Reset the Old-Belkin type dongle.
  116.  *
  117.  */
  118. static int old_belkin_reset(struct irda_task *task)
  119. {
  120. dongle_t *self = (dongle_t *) task->instance;
  121. /* Power on dongle */
  122. self->set_dtr_rts(self->dev, TRUE, TRUE);
  123. /* Sleep a minimum of 15 us */
  124. udelay(MIN_DELAY);
  125. /* This dongles speed "defaults" to 9600 bps ;-) */
  126. self->speed = 9600;
  127. irda_task_next_state(task, IRDA_TASK_DONE);
  128. return 0;
  129. }
  130. #ifdef MODULE
  131. MODULE_AUTHOR("Jean Tourrilhes <jt@hpl.hp.com>");
  132. MODULE_DESCRIPTION("Belkin (old) SmartBeam dongle driver");
  133. MODULE_LICENSE("GPL");
  134. /*
  135.  * Function init_module (void)
  136.  *
  137.  *    Initialize Old-Belkin module
  138.  *
  139.  */
  140. int init_module(void)
  141. {
  142. return old_belkin_init();
  143. }
  144. /*
  145.  * Function cleanup_module (void)
  146.  *
  147.  *    Cleanup Old-Belkin module
  148.  *
  149.  */
  150. void cleanup_module(void)
  151. {
  152. old_belkin_cleanup();
  153. }
  154. #endif /* MODULE */