old_belkin-sir.c 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157
  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/init.h>
  33. #include <net/irda/irda.h>
  34. // #include <net/irda/irda_device.h>
  35. #include "sir-dev.h"
  36. /*
  37. * Belkin is selling a dongle called the SmartBeam.
  38. * In fact, there is two hardware version of this dongle, of course with
  39. * the same name and looking the exactly same (grrr...).
  40. * I guess that I've got the old one, because inside I don't have
  41. * a jumper for IrDA/ASK...
  42. *
  43. * As far as I can make it from info on their web site, the old dongle
  44. * support only 9600 b/s, which make our life much simpler as far as
  45. * the driver is concerned, but you might not like it very much ;-)
  46. * The new SmartBeam does 115 kb/s, and I've not tested it...
  47. *
  48. * Belkin claim that the correct driver for the old dongle (in Windows)
  49. * is the generic Parallax 9500a driver, but the Linux LiteLink driver
  50. * fails for me (probably because Linux-IrDA doesn't rate fallback),
  51. * so I created this really dumb driver...
  52. *
  53. * In fact, this driver doesn't do much. The only thing it does is to
  54. * prevent Linux-IrDA to use any other speed than 9600 b/s ;-) This
  55. * driver is called "old_belkin" so that when the new SmartBeam is supported
  56. * its driver can be called "belkin" instead of "new_belkin".
  57. *
  58. * Note : this driver was written without any info/help from Belkin,
  59. * so a lot of info here might be totally wrong. Blame me ;-)
  60. */
  61. static int old_belkin_open(struct sir_dev *dev);
  62. static int old_belkin_close(struct sir_dev *dev);
  63. static int old_belkin_change_speed(struct sir_dev *dev, unsigned speed);
  64. static int old_belkin_reset(struct sir_dev *dev);
  65. static struct dongle_driver old_belkin = {
  66. .owner = THIS_MODULE,
  67. .driver_name = "Old Belkin SmartBeam",
  68. .type = IRDA_OLD_BELKIN_DONGLE,
  69. .open = old_belkin_open,
  70. .close = old_belkin_close,
  71. .reset = old_belkin_reset,
  72. .set_speed = old_belkin_change_speed,
  73. };
  74. static int __init old_belkin_sir_init(void)
  75. {
  76. return irda_register_dongle(&old_belkin);
  77. }
  78. static void __exit old_belkin_sir_cleanup(void)
  79. {
  80. irda_unregister_dongle(&old_belkin);
  81. }
  82. static int old_belkin_open(struct sir_dev *dev)
  83. {
  84. struct qos_info *qos = &dev->qos;
  85. IRDA_DEBUG(2, "%s()\n", __func__);
  86. /* Power on dongle */
  87. sirdev_set_dtr_rts(dev, TRUE, TRUE);
  88. /* Not too fast, please... */
  89. qos->baud_rate.bits &= IR_9600;
  90. /* Needs at least 10 ms (totally wild guess, can do probably better) */
  91. qos->min_turn_time.bits = 0x01;
  92. irda_qos_bits_to_value(qos);
  93. /* irda thread waits 50 msec for power settling */
  94. return 0;
  95. }
  96. static int old_belkin_close(struct sir_dev *dev)
  97. {
  98. IRDA_DEBUG(2, "%s()\n", __func__);
  99. /* Power off dongle */
  100. sirdev_set_dtr_rts(dev, FALSE, FALSE);
  101. return 0;
  102. }
  103. /*
  104. * Function old_belkin_change_speed (task)
  105. *
  106. * With only one speed available, not much to do...
  107. */
  108. static int old_belkin_change_speed(struct sir_dev *dev, unsigned speed)
  109. {
  110. IRDA_DEBUG(2, "%s()\n", __func__);
  111. dev->speed = 9600;
  112. return (speed==dev->speed) ? 0 : -EINVAL;
  113. }
  114. /*
  115. * Function old_belkin_reset (task)
  116. *
  117. * Reset the Old-Belkin type dongle.
  118. *
  119. */
  120. static int old_belkin_reset(struct sir_dev *dev)
  121. {
  122. IRDA_DEBUG(2, "%s()\n", __func__);
  123. /* This dongles speed "defaults" to 9600 bps ;-) */
  124. dev->speed = 9600;
  125. return 0;
  126. }
  127. MODULE_AUTHOR("Jean Tourrilhes <jt@hpl.hp.com>");
  128. MODULE_DESCRIPTION("Belkin (old) SmartBeam dongle driver");
  129. MODULE_LICENSE("GPL");
  130. MODULE_ALIAS("irda-dongle-7"); /* IRDA_OLD_BELKIN_DONGLE */
  131. module_init(old_belkin_sir_init);
  132. module_exit(old_belkin_sir_cleanup);