act200l-sir.c 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258
  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. IRDA_DEBUG(2, "%s()\n", __func__ );
  91. /* Power on the dongle */
  92. sirdev_set_dtr_rts(dev, TRUE, TRUE);
  93. /* Set the speeds we can accept */
  94. qos->baud_rate.bits &= IR_9600|IR_19200|IR_38400|IR_57600|IR_115200;
  95. qos->min_turn_time.bits = 0x03;
  96. irda_qos_bits_to_value(qos);
  97. /* irda thread waits 50 msec for power settling */
  98. return 0;
  99. }
  100. static int act200l_close(struct sir_dev *dev)
  101. {
  102. IRDA_DEBUG(2, "%s()\n", __func__ );
  103. /* Power off the dongle */
  104. sirdev_set_dtr_rts(dev, FALSE, FALSE);
  105. return 0;
  106. }
  107. /*
  108. * Function act200l_change_speed (dev, speed)
  109. *
  110. * Set the speed for the ACTiSYS ACT-IR200L type dongle.
  111. *
  112. */
  113. static int act200l_change_speed(struct sir_dev *dev, unsigned speed)
  114. {
  115. u8 control[3];
  116. int ret = 0;
  117. IRDA_DEBUG(2, "%s()\n", __func__ );
  118. /* Clear DTR and set RTS to enter command mode */
  119. sirdev_set_dtr_rts(dev, FALSE, TRUE);
  120. switch (speed) {
  121. default:
  122. ret = -EINVAL;
  123. /* fall through */
  124. case 9600:
  125. control[0] = ACT200L_REG8 | (ACT200L_9600 & 0x0f);
  126. control[1] = ACT200L_REG9 | ((ACT200L_9600 >> 4) & 0x0f);
  127. break;
  128. case 19200:
  129. control[0] = ACT200L_REG8 | (ACT200L_19200 & 0x0f);
  130. control[1] = ACT200L_REG9 | ((ACT200L_19200 >> 4) & 0x0f);
  131. break;
  132. case 38400:
  133. control[0] = ACT200L_REG8 | (ACT200L_38400 & 0x0f);
  134. control[1] = ACT200L_REG9 | ((ACT200L_38400 >> 4) & 0x0f);
  135. break;
  136. case 57600:
  137. control[0] = ACT200L_REG8 | (ACT200L_57600 & 0x0f);
  138. control[1] = ACT200L_REG9 | ((ACT200L_57600 >> 4) & 0x0f);
  139. break;
  140. case 115200:
  141. control[0] = ACT200L_REG8 | (ACT200L_115200 & 0x0f);
  142. control[1] = ACT200L_REG9 | ((ACT200L_115200 >> 4) & 0x0f);
  143. break;
  144. }
  145. control[2] = ACT200L_REG1 | ACT200L_LODB | ACT200L_WIDE;
  146. /* Write control bytes */
  147. sirdev_raw_write(dev, control, 3);
  148. msleep(5);
  149. /* Go back to normal mode */
  150. sirdev_set_dtr_rts(dev, TRUE, TRUE);
  151. dev->speed = speed;
  152. return ret;
  153. }
  154. /*
  155. * Function act200l_reset (driver)
  156. *
  157. * Reset the ACTiSYS ACT-IR200L type dongle.
  158. */
  159. #define ACT200L_STATE_WAIT1_RESET (SIRDEV_STATE_DONGLE_RESET+1)
  160. #define ACT200L_STATE_WAIT2_RESET (SIRDEV_STATE_DONGLE_RESET+2)
  161. static int act200l_reset(struct sir_dev *dev)
  162. {
  163. unsigned state = dev->fsm.substate;
  164. unsigned delay = 0;
  165. static const u8 control[9] = {
  166. ACT200L_REG15,
  167. ACT200L_REG13 | ACT200L_SHDW,
  168. ACT200L_REG21 | ACT200L_EXCK | ACT200L_OSCL,
  169. ACT200L_REG13,
  170. ACT200L_REG7 | ACT200L_ENPOS,
  171. ACT200L_REG6 | ACT200L_RS0 | ACT200L_RS1,
  172. ACT200L_REG5 | ACT200L_RWIDL,
  173. ACT200L_REG4 | ACT200L_OP0 | ACT200L_OP1 | ACT200L_BLKR,
  174. ACT200L_REG0 | ACT200L_TXEN | ACT200L_RXEN
  175. };
  176. int ret = 0;
  177. IRDA_DEBUG(2, "%s()\n", __func__ );
  178. switch (state) {
  179. case SIRDEV_STATE_DONGLE_RESET:
  180. /* Reset the dongle : set RTS low for 25 ms */
  181. sirdev_set_dtr_rts(dev, TRUE, FALSE);
  182. state = ACT200L_STATE_WAIT1_RESET;
  183. delay = 50;
  184. break;
  185. case ACT200L_STATE_WAIT1_RESET:
  186. /* Clear DTR and set RTS to enter command mode */
  187. sirdev_set_dtr_rts(dev, FALSE, TRUE);
  188. udelay(25); /* better wait for some short while */
  189. /* Write control bytes */
  190. sirdev_raw_write(dev, control, sizeof(control));
  191. state = ACT200L_STATE_WAIT2_RESET;
  192. delay = 15;
  193. break;
  194. case ACT200L_STATE_WAIT2_RESET:
  195. /* Go back to normal mode */
  196. sirdev_set_dtr_rts(dev, TRUE, TRUE);
  197. dev->speed = 9600;
  198. break;
  199. default:
  200. IRDA_ERROR("%s(), unknown state %d\n", __func__, state);
  201. ret = -1;
  202. break;
  203. }
  204. dev->fsm.substate = state;
  205. return (delay > 0) ? delay : ret;
  206. }
  207. MODULE_AUTHOR("SHIMIZU Takuya <tshimizu@ga2.so-net.ne.jp>");
  208. MODULE_DESCRIPTION("ACTiSYS ACT-IR200L dongle driver");
  209. MODULE_LICENSE("GPL");
  210. MODULE_ALIAS("irda-dongle-10"); /* IRDA_ACT200L_DONGLE */
  211. module_init(act200l_sir_init);
  212. module_exit(act200l_sir_cleanup);