act200l-sir.c 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250
  1. /*********************************************************************
  2. *
  3. * Filename: act200l.c
  4. * Version: 0.8
  5. * Description: Implementation for the ACTiSYS ACT-IR200L dongle
  6. * Status: Experimental.
  7. * Author: SHIMIZU Takuya <tshimizu@ga2.so-net.ne.jp>
  8. * Created at: Fri Aug 3 17:35:42 2001
  9. * Modified at: Fri Aug 17 10:22:40 2001
  10. * Modified by: SHIMIZU Takuya <tshimizu@ga2.so-net.ne.jp>
  11. *
  12. * Copyright (c) 2001 SHIMIZU Takuya, 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. ********************************************************************/
  20. #include <linux/module.h>
  21. #include <linux/delay.h>
  22. #include <linux/init.h>
  23. #include <net/irda/irda.h>
  24. #include "sir-dev.h"
  25. static int act200l_reset(struct sir_dev *dev);
  26. static int act200l_open(struct sir_dev *dev);
  27. static int act200l_close(struct sir_dev *dev);
  28. static int act200l_change_speed(struct sir_dev *dev, unsigned speed);
  29. /* Regsiter 0: Control register #1 */
  30. #define ACT200L_REG0 0x00
  31. #define ACT200L_TXEN 0x01 /* Enable transmitter */
  32. #define ACT200L_RXEN 0x02 /* Enable receiver */
  33. /* Register 1: Control register #2 */
  34. #define ACT200L_REG1 0x10
  35. #define ACT200L_LODB 0x01 /* Load new baud rate count value */
  36. #define ACT200L_WIDE 0x04 /* Expand the maximum allowable pulse */
  37. /* Register 4: Output Power register */
  38. #define ACT200L_REG4 0x40
  39. #define ACT200L_OP0 0x01 /* Enable LED1C output */
  40. #define ACT200L_OP1 0x02 /* Enable LED2C output */
  41. #define ACT200L_BLKR 0x04
  42. /* Register 5: Receive Mode register */
  43. #define ACT200L_REG5 0x50
  44. #define ACT200L_RWIDL 0x01 /* fixed 1.6us pulse mode */
  45. /* Register 6: Receive Sensitivity register #1 */
  46. #define ACT200L_REG6 0x60
  47. #define ACT200L_RS0 0x01 /* receive threshold bit 0 */
  48. #define ACT200L_RS1 0x02 /* receive threshold bit 1 */
  49. /* Register 7: Receive Sensitivity register #2 */
  50. #define ACT200L_REG7 0x70
  51. #define ACT200L_ENPOS 0x04 /* Ignore the falling edge */
  52. /* Register 8,9: Baud Rate Dvider register #1,#2 */
  53. #define ACT200L_REG8 0x80
  54. #define ACT200L_REG9 0x90
  55. #define ACT200L_2400 0x5f
  56. #define ACT200L_9600 0x17
  57. #define ACT200L_19200 0x0b
  58. #define ACT200L_38400 0x05
  59. #define ACT200L_57600 0x03
  60. #define ACT200L_115200 0x01
  61. /* Register 13: Control register #3 */
  62. #define ACT200L_REG13 0xd0
  63. #define ACT200L_SHDW 0x01 /* Enable access to shadow registers */
  64. /* Register 15: Status register */
  65. #define ACT200L_REG15 0xf0
  66. /* Register 21: Control register #4 */
  67. #define ACT200L_REG21 0x50
  68. #define ACT200L_EXCK 0x02 /* Disable clock output driver */
  69. #define ACT200L_OSCL 0x04 /* oscillator in low power, medium accuracy mode */
  70. static struct dongle_driver act200l = {
  71. .owner = THIS_MODULE,
  72. .driver_name = "ACTiSYS ACT-IR200L",
  73. .type = IRDA_ACT200L_DONGLE,
  74. .open = act200l_open,
  75. .close = act200l_close,
  76. .reset = act200l_reset,
  77. .set_speed = act200l_change_speed,
  78. };
  79. static int __init act200l_sir_init(void)
  80. {
  81. return irda_register_dongle(&act200l);
  82. }
  83. static void __exit act200l_sir_cleanup(void)
  84. {
  85. irda_unregister_dongle(&act200l);
  86. }
  87. static int act200l_open(struct sir_dev *dev)
  88. {
  89. struct qos_info *qos = &dev->qos;
  90. /* Power on the dongle */
  91. sirdev_set_dtr_rts(dev, TRUE, TRUE);
  92. /* Set the speeds we can accept */
  93. qos->baud_rate.bits &= IR_9600|IR_19200|IR_38400|IR_57600|IR_115200;
  94. qos->min_turn_time.bits = 0x03;
  95. irda_qos_bits_to_value(qos);
  96. /* irda thread waits 50 msec for power settling */
  97. return 0;
  98. }
  99. static int act200l_close(struct sir_dev *dev)
  100. {
  101. /* Power off the dongle */
  102. sirdev_set_dtr_rts(dev, FALSE, FALSE);
  103. return 0;
  104. }
  105. /*
  106. * Function act200l_change_speed (dev, speed)
  107. *
  108. * Set the speed for the ACTiSYS ACT-IR200L type dongle.
  109. *
  110. */
  111. static int act200l_change_speed(struct sir_dev *dev, unsigned speed)
  112. {
  113. u8 control[3];
  114. int ret = 0;
  115. /* Clear DTR and set RTS to enter command mode */
  116. sirdev_set_dtr_rts(dev, FALSE, TRUE);
  117. switch (speed) {
  118. default:
  119. ret = -EINVAL;
  120. /* fall through */
  121. case 9600:
  122. control[0] = ACT200L_REG8 | (ACT200L_9600 & 0x0f);
  123. control[1] = ACT200L_REG9 | ((ACT200L_9600 >> 4) & 0x0f);
  124. break;
  125. case 19200:
  126. control[0] = ACT200L_REG8 | (ACT200L_19200 & 0x0f);
  127. control[1] = ACT200L_REG9 | ((ACT200L_19200 >> 4) & 0x0f);
  128. break;
  129. case 38400:
  130. control[0] = ACT200L_REG8 | (ACT200L_38400 & 0x0f);
  131. control[1] = ACT200L_REG9 | ((ACT200L_38400 >> 4) & 0x0f);
  132. break;
  133. case 57600:
  134. control[0] = ACT200L_REG8 | (ACT200L_57600 & 0x0f);
  135. control[1] = ACT200L_REG9 | ((ACT200L_57600 >> 4) & 0x0f);
  136. break;
  137. case 115200:
  138. control[0] = ACT200L_REG8 | (ACT200L_115200 & 0x0f);
  139. control[1] = ACT200L_REG9 | ((ACT200L_115200 >> 4) & 0x0f);
  140. break;
  141. }
  142. control[2] = ACT200L_REG1 | ACT200L_LODB | ACT200L_WIDE;
  143. /* Write control bytes */
  144. sirdev_raw_write(dev, control, 3);
  145. msleep(5);
  146. /* Go back to normal mode */
  147. sirdev_set_dtr_rts(dev, TRUE, TRUE);
  148. dev->speed = speed;
  149. return ret;
  150. }
  151. /*
  152. * Function act200l_reset (driver)
  153. *
  154. * Reset the ACTiSYS ACT-IR200L type dongle.
  155. */
  156. #define ACT200L_STATE_WAIT1_RESET (SIRDEV_STATE_DONGLE_RESET+1)
  157. #define ACT200L_STATE_WAIT2_RESET (SIRDEV_STATE_DONGLE_RESET+2)
  158. static int act200l_reset(struct sir_dev *dev)
  159. {
  160. unsigned state = dev->fsm.substate;
  161. unsigned delay = 0;
  162. static const u8 control[9] = {
  163. ACT200L_REG15,
  164. ACT200L_REG13 | ACT200L_SHDW,
  165. ACT200L_REG21 | ACT200L_EXCK | ACT200L_OSCL,
  166. ACT200L_REG13,
  167. ACT200L_REG7 | ACT200L_ENPOS,
  168. ACT200L_REG6 | ACT200L_RS0 | ACT200L_RS1,
  169. ACT200L_REG5 | ACT200L_RWIDL,
  170. ACT200L_REG4 | ACT200L_OP0 | ACT200L_OP1 | ACT200L_BLKR,
  171. ACT200L_REG0 | ACT200L_TXEN | ACT200L_RXEN
  172. };
  173. int ret = 0;
  174. switch (state) {
  175. case SIRDEV_STATE_DONGLE_RESET:
  176. /* Reset the dongle : set RTS low for 25 ms */
  177. sirdev_set_dtr_rts(dev, TRUE, FALSE);
  178. state = ACT200L_STATE_WAIT1_RESET;
  179. delay = 50;
  180. break;
  181. case ACT200L_STATE_WAIT1_RESET:
  182. /* Clear DTR and set RTS to enter command mode */
  183. sirdev_set_dtr_rts(dev, FALSE, TRUE);
  184. udelay(25); /* better wait for some short while */
  185. /* Write control bytes */
  186. sirdev_raw_write(dev, control, sizeof(control));
  187. state = ACT200L_STATE_WAIT2_RESET;
  188. delay = 15;
  189. break;
  190. case ACT200L_STATE_WAIT2_RESET:
  191. /* Go back to normal mode */
  192. sirdev_set_dtr_rts(dev, TRUE, TRUE);
  193. dev->speed = 9600;
  194. break;
  195. default:
  196. net_err_ratelimited("%s(), unknown state %d\n",
  197. __func__, state);
  198. ret = -1;
  199. break;
  200. }
  201. dev->fsm.substate = state;
  202. return (delay > 0) ? delay : ret;
  203. }
  204. MODULE_AUTHOR("SHIMIZU Takuya <tshimizu@ga2.so-net.ne.jp>");
  205. MODULE_DESCRIPTION("ACTiSYS ACT-IR200L dongle driver");
  206. MODULE_LICENSE("GPL");
  207. MODULE_ALIAS("irda-dongle-10"); /* IRDA_ACT200L_DONGLE */
  208. module_init(act200l_sir_init);
  209. module_exit(act200l_sir_cleanup);