act200l.c 8.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297
  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/tty.h>
  23. #include <linux/init.h>
  24. #include <net/irda/irda.h>
  25. #include <net/irda/irda_device.h>
  26. static int act200l_reset(struct irda_task *task);
  27. static void act200l_open(dongle_t *self, struct qos_info *qos);
  28. static void act200l_close(dongle_t *self);
  29. static int act200l_change_speed(struct irda_task *task);
  30. /* Regsiter 0: Control register #1 */
  31. #define ACT200L_REG0 0x00
  32. #define ACT200L_TXEN 0x01 /* Enable transmitter */
  33. #define ACT200L_RXEN 0x02 /* Enable receiver */
  34. /* Register 1: Control register #2 */
  35. #define ACT200L_REG1 0x10
  36. #define ACT200L_LODB 0x01 /* Load new baud rate count value */
  37. #define ACT200L_WIDE 0x04 /* Expand the maximum allowable pulse */
  38. /* Register 4: Output Power register */
  39. #define ACT200L_REG4 0x40
  40. #define ACT200L_OP0 0x01 /* Enable LED1C output */
  41. #define ACT200L_OP1 0x02 /* Enable LED2C output */
  42. #define ACT200L_BLKR 0x04
  43. /* Register 5: Receive Mode register */
  44. #define ACT200L_REG5 0x50
  45. #define ACT200L_RWIDL 0x01 /* fixed 1.6us pulse mode */
  46. /* Register 6: Receive Sensitivity register #1 */
  47. #define ACT200L_REG6 0x60
  48. #define ACT200L_RS0 0x01 /* receive threshold bit 0 */
  49. #define ACT200L_RS1 0x02 /* receive threshold bit 1 */
  50. /* Register 7: Receive Sensitivity register #2 */
  51. #define ACT200L_REG7 0x70
  52. #define ACT200L_ENPOS 0x04 /* Ignore the falling edge */
  53. /* Register 8,9: Baud Rate Dvider register #1,#2 */
  54. #define ACT200L_REG8 0x80
  55. #define ACT200L_REG9 0x90
  56. #define ACT200L_2400 0x5f
  57. #define ACT200L_9600 0x17
  58. #define ACT200L_19200 0x0b
  59. #define ACT200L_38400 0x05
  60. #define ACT200L_57600 0x03
  61. #define ACT200L_115200 0x01
  62. /* Register 13: Control register #3 */
  63. #define ACT200L_REG13 0xd0
  64. #define ACT200L_SHDW 0x01 /* Enable access to shadow registers */
  65. /* Register 15: Status register */
  66. #define ACT200L_REG15 0xf0
  67. /* Register 21: Control register #4 */
  68. #define ACT200L_REG21 0x50
  69. #define ACT200L_EXCK 0x02 /* Disable clock output driver */
  70. #define ACT200L_OSCL 0x04 /* oscillator in low power, medium accuracy mode */
  71. static struct dongle_reg dongle = {
  72. .type = IRDA_ACT200L_DONGLE,
  73. .open = act200l_open,
  74. .close = act200l_close,
  75. .reset = act200l_reset,
  76. .change_speed = act200l_change_speed,
  77. .owner = THIS_MODULE,
  78. };
  79. static int __init act200l_init(void)
  80. {
  81. return irda_device_register_dongle(&dongle);
  82. }
  83. static void __exit act200l_cleanup(void)
  84. {
  85. irda_device_unregister_dongle(&dongle);
  86. }
  87. static void act200l_open(dongle_t *self, struct qos_info *qos)
  88. {
  89. IRDA_DEBUG(2, "%s()\n", __FUNCTION__ );
  90. /* Power on the dongle */
  91. self->set_dtr_rts(self->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. }
  96. static void act200l_close(dongle_t *self)
  97. {
  98. IRDA_DEBUG(2, "%s()\n", __FUNCTION__ );
  99. /* Power off the dongle */
  100. self->set_dtr_rts(self->dev, FALSE, FALSE);
  101. }
  102. /*
  103. * Function act200l_change_speed (dev, speed)
  104. *
  105. * Set the speed for the ACTiSYS ACT-IR200L type dongle.
  106. *
  107. */
  108. static int act200l_change_speed(struct irda_task *task)
  109. {
  110. dongle_t *self = (dongle_t *) task->instance;
  111. __u32 speed = (__u32) task->param;
  112. __u8 control[3];
  113. int ret = 0;
  114. IRDA_DEBUG(2, "%s()\n", __FUNCTION__ );
  115. self->speed_task = task;
  116. switch (task->state) {
  117. case IRDA_TASK_INIT:
  118. if (irda_task_execute(self, act200l_reset, NULL, task,
  119. (void *) speed))
  120. {
  121. /* Dongle need more time to reset */
  122. irda_task_next_state(task, IRDA_TASK_CHILD_WAIT);
  123. /* Give reset 1 sec to finish */
  124. ret = msecs_to_jiffies(1000);
  125. }
  126. break;
  127. case IRDA_TASK_CHILD_WAIT:
  128. IRDA_WARNING("%s(), resetting dongle timed out!\n",
  129. __FUNCTION__);
  130. ret = -1;
  131. break;
  132. case IRDA_TASK_CHILD_DONE:
  133. /* Clear DTR and set RTS to enter command mode */
  134. self->set_dtr_rts(self->dev, FALSE, TRUE);
  135. switch (speed) {
  136. case 9600:
  137. default:
  138. control[0] = ACT200L_REG8 | (ACT200L_9600 & 0x0f);
  139. control[1] = ACT200L_REG9 | ((ACT200L_9600 >> 4) & 0x0f);
  140. break;
  141. case 19200:
  142. control[0] = ACT200L_REG8 | (ACT200L_19200 & 0x0f);
  143. control[1] = ACT200L_REG9 | ((ACT200L_19200 >> 4) & 0x0f);
  144. break;
  145. case 38400:
  146. control[0] = ACT200L_REG8 | (ACT200L_38400 & 0x0f);
  147. control[1] = ACT200L_REG9 | ((ACT200L_38400 >> 4) & 0x0f);
  148. break;
  149. case 57600:
  150. control[0] = ACT200L_REG8 | (ACT200L_57600 & 0x0f);
  151. control[1] = ACT200L_REG9 | ((ACT200L_57600 >> 4) & 0x0f);
  152. break;
  153. case 115200:
  154. control[0] = ACT200L_REG8 | (ACT200L_115200 & 0x0f);
  155. control[1] = ACT200L_REG9 | ((ACT200L_115200 >> 4) & 0x0f);
  156. break;
  157. }
  158. control[2] = ACT200L_REG1 | ACT200L_LODB | ACT200L_WIDE;
  159. /* Write control bytes */
  160. self->write(self->dev, control, 3);
  161. irda_task_next_state(task, IRDA_TASK_WAIT);
  162. ret = msecs_to_jiffies(5);
  163. break;
  164. case IRDA_TASK_WAIT:
  165. /* Go back to normal mode */
  166. self->set_dtr_rts(self->dev, TRUE, TRUE);
  167. irda_task_next_state(task, IRDA_TASK_DONE);
  168. self->speed_task = NULL;
  169. break;
  170. default:
  171. IRDA_ERROR("%s(), unknown state %d\n",
  172. __FUNCTION__, task->state);
  173. irda_task_next_state(task, IRDA_TASK_DONE);
  174. self->speed_task = NULL;
  175. ret = -1;
  176. break;
  177. }
  178. return ret;
  179. }
  180. /*
  181. * Function act200l_reset (driver)
  182. *
  183. * Reset the ACTiSYS ACT-IR200L type dongle.
  184. */
  185. static int act200l_reset(struct irda_task *task)
  186. {
  187. dongle_t *self = (dongle_t *) task->instance;
  188. __u8 control[9] = {
  189. ACT200L_REG15,
  190. ACT200L_REG13 | ACT200L_SHDW,
  191. ACT200L_REG21 | ACT200L_EXCK | ACT200L_OSCL,
  192. ACT200L_REG13,
  193. ACT200L_REG7 | ACT200L_ENPOS,
  194. ACT200L_REG6 | ACT200L_RS0 | ACT200L_RS1,
  195. ACT200L_REG5 | ACT200L_RWIDL,
  196. ACT200L_REG4 | ACT200L_OP0 | ACT200L_OP1 | ACT200L_BLKR,
  197. ACT200L_REG0 | ACT200L_TXEN | ACT200L_RXEN
  198. };
  199. int ret = 0;
  200. IRDA_DEBUG(2, "%s()\n", __FUNCTION__ );
  201. self->reset_task = task;
  202. switch (task->state) {
  203. case IRDA_TASK_INIT:
  204. /* Power on the dongle */
  205. self->set_dtr_rts(self->dev, TRUE, TRUE);
  206. irda_task_next_state(task, IRDA_TASK_WAIT1);
  207. ret = msecs_to_jiffies(50);
  208. break;
  209. case IRDA_TASK_WAIT1:
  210. /* Reset the dongle : set RTS low for 25 ms */
  211. self->set_dtr_rts(self->dev, TRUE, FALSE);
  212. irda_task_next_state(task, IRDA_TASK_WAIT2);
  213. ret = msecs_to_jiffies(50);
  214. break;
  215. case IRDA_TASK_WAIT2:
  216. /* Clear DTR and set RTS to enter command mode */
  217. self->set_dtr_rts(self->dev, FALSE, TRUE);
  218. /* Write control bytes */
  219. self->write(self->dev, control, 9);
  220. irda_task_next_state(task, IRDA_TASK_WAIT3);
  221. ret = msecs_to_jiffies(15);
  222. break;
  223. case IRDA_TASK_WAIT3:
  224. /* Go back to normal mode */
  225. self->set_dtr_rts(self->dev, TRUE, TRUE);
  226. irda_task_next_state(task, IRDA_TASK_DONE);
  227. self->reset_task = NULL;
  228. break;
  229. default:
  230. IRDA_ERROR("%s(), unknown state %d\n",
  231. __FUNCTION__, task->state);
  232. irda_task_next_state(task, IRDA_TASK_DONE);
  233. self->reset_task = NULL;
  234. ret = -1;
  235. break;
  236. }
  237. return ret;
  238. }
  239. MODULE_AUTHOR("SHIMIZU Takuya <tshimizu@ga2.so-net.ne.jp>");
  240. MODULE_DESCRIPTION("ACTiSYS ACT-IR200L dongle driver");
  241. MODULE_LICENSE("GPL");
  242. MODULE_ALIAS("irda-dongle-10"); /* IRDA_ACT200L_DONGLE */
  243. /*
  244. * Function init_module (void)
  245. *
  246. * Initialize ACTiSYS ACT-IR200L module
  247. *
  248. */
  249. module_init(act200l_init);
  250. /*
  251. * Function cleanup_module (void)
  252. *
  253. * Cleanup ACTiSYS ACT-IR200L module
  254. *
  255. */
  256. module_exit(act200l_cleanup);