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