act200l.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:8k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

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