1 /*********************************************************************
5 * Description: Driver for the Extended Systems JetEye PC dongle
6 * Status: Experimental.
7 * Author: Dag Brattli <dagb@cs.uit.no>
8 * Created at: Sat Feb 21 18:54:38 1998
9 * Modified at: Sun Oct 27 22:01:04 2002
10 * Modified by: Martin Diehl <mad@mdiehl.de>
12 * Copyright (c) 1999 Dag Brattli, <dagb@cs.uit.no>,
13 * Copyright (c) 1998 Thomas Davis, <ratbert@radiks.net>,
14 * Copyright (c) 2002 Martin Diehl, <mad@mdiehl.de>,
15 * All Rights Reserved.
17 * This program is free software; you can redistribute it and/or
18 * modify it under the terms of the GNU General Public License as
19 * published by the Free Software Foundation; either version 2 of
20 * the License, or (at your option) any later version.
22 * This program is distributed in the hope that it will be useful,
23 * but WITHOUT ANY WARRANTY; without even the implied warranty of
24 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
25 * GNU General Public License for more details.
27 * You should have received a copy of the GNU General Public License
28 * along with this program; if not, see <http://www.gnu.org/licenses/>.
30 ********************************************************************/
32 #include <linux/module.h>
33 #include <linux/delay.h>
34 #include <linux/init.h>
36 #include <net/irda/irda.h>
40 static int esi_open(struct sir_dev
*);
41 static int esi_close(struct sir_dev
*);
42 static int esi_change_speed(struct sir_dev
*, unsigned);
43 static int esi_reset(struct sir_dev
*);
45 static struct dongle_driver esi
= {
47 .driver_name
= "JetEye PC ESI-9680 PC",
48 .type
= IRDA_ESI_DONGLE
,
52 .set_speed
= esi_change_speed
,
55 static int __init
esi_sir_init(void)
57 return irda_register_dongle(&esi
);
60 static void __exit
esi_sir_cleanup(void)
62 irda_unregister_dongle(&esi
);
65 static int esi_open(struct sir_dev
*dev
)
67 struct qos_info
*qos
= &dev
->qos
;
69 /* Power up and set dongle to 9600 baud */
70 sirdev_set_dtr_rts(dev
, FALSE
, TRUE
);
72 qos
->baud_rate
.bits
&= IR_9600
|IR_19200
|IR_115200
;
73 qos
->min_turn_time
.bits
= 0x01; /* Needs at least 10 ms */
74 irda_qos_bits_to_value(qos
);
76 /* irda thread waits 50 msec for power settling */
81 static int esi_close(struct sir_dev
*dev
)
83 /* Power off dongle */
84 sirdev_set_dtr_rts(dev
, FALSE
, FALSE
);
90 * Function esi_change_speed (task)
92 * Set the speed for the Extended Systems JetEye PC ESI-9680 type dongle
93 * Apparently (see old esi-driver) no delays are needed here...
96 static int esi_change_speed(struct sir_dev
*dev
, unsigned speed
)
119 /* Change speed of dongle */
120 sirdev_set_dtr_rts(dev
, dtr
, rts
);
127 * Function esi_reset (task)
132 static int esi_reset(struct sir_dev
*dev
)
134 sirdev_set_dtr_rts(dev
, FALSE
, FALSE
);
136 /* Hm, the old esi-driver left the dongle unpowered relying on
137 * the following speed change to repower. This might work for
138 * the esi because we only need the modem lines. However, now the
139 * general rule is reset must bring the dongle to some working
140 * well-known state because speed change might write to registers.
141 * The old esi-driver didn't any delay here - let's hope it' fine.
144 sirdev_set_dtr_rts(dev
, FALSE
, TRUE
);
150 MODULE_AUTHOR("Dag Brattli <dagb@cs.uit.no>");
151 MODULE_DESCRIPTION("Extended Systems JetEye PC dongle driver");
152 MODULE_LICENSE("GPL");
153 MODULE_ALIAS("irda-dongle-1"); /* IRDA_ESI_DONGLE */
155 module_init(esi_sir_init
);
156 module_exit(esi_sir_cleanup
);