irda: Convert IRDA_DEBUG to pr_debug
[deliverable/linux.git] / net / irda / ircomm / ircomm_tty_attach.c
CommitLineData
1da177e4 1/*********************************************************************
6819bc2e 2 *
1da177e4 3 * Filename: ircomm_tty_attach.c
6819bc2e 4 * Version:
1da177e4
LT
5 * Description: Code for attaching the serial driver to IrCOMM
6 * Status: Experimental.
7 * Author: Dag Brattli <dagb@cs.uit.no>
8 * Created at: Sat Jun 5 17:42:00 1999
9 * Modified at: Tue Jan 4 14:20:49 2000
10 * Modified by: Dag Brattli <dagb@cs.uit.no>
6819bc2e 11 *
1da177e4
LT
12 * Copyright (c) 1999-2000 Dag Brattli, All Rights Reserved.
13 * Copyright (c) 2000-2003 Jean Tourrilhes <jt@hpl.hp.com>
6819bc2e
YH
14 *
15 * This program is free software; you can redistribute it and/or
16 * modify it under the terms of the GNU General Public License as
17 * published by the Free Software Foundation; either version 2 of
1da177e4 18 * the License, or (at your option) any later version.
6819bc2e 19 *
1da177e4
LT
20 * This program is distributed in the hope that it will be useful,
21 * but WITHOUT ANY WARRANTY; without even the implied warranty of
22 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23 * GNU General Public License for more details.
6819bc2e
YH
24 *
25 * You should have received a copy of the GNU General Public License
d3770509 26 * along with this program; if not, see <http://www.gnu.org/licenses/>.
6819bc2e 27 *
1da177e4
LT
28 ********************************************************************/
29
1da177e4 30#include <linux/init.h>
d43c36dc 31#include <linux/sched.h>
1da177e4
LT
32
33#include <net/irda/irda.h>
34#include <net/irda/irlmp.h>
35#include <net/irda/iriap.h>
36#include <net/irda/irttp.h>
37#include <net/irda/irias_object.h>
38#include <net/irda/parameters.h>
39
40#include <net/irda/ircomm_core.h>
41#include <net/irda/ircomm_param.h>
42#include <net/irda/ircomm_event.h>
43
44#include <net/irda/ircomm_tty.h>
45#include <net/irda/ircomm_tty_attach.h>
46
47static void ircomm_tty_ias_register(struct ircomm_tty_cb *self);
48static void ircomm_tty_discovery_indication(discinfo_t *discovery,
49 DISCOVERY_MODE mode,
50 void *priv);
6819bc2e 51static void ircomm_tty_getvalue_confirm(int result, __u16 obj_id,
1da177e4
LT
52 struct ias_value *value, void *priv);
53static void ircomm_tty_start_watchdog_timer(struct ircomm_tty_cb *self,
54 int timeout);
55static void ircomm_tty_watchdog_timer_expired(void *data);
56
6819bc2e
YH
57static int ircomm_tty_state_idle(struct ircomm_tty_cb *self,
58 IRCOMM_TTY_EVENT event,
59 struct sk_buff *skb,
1da177e4 60 struct ircomm_tty_info *info);
6819bc2e
YH
61static int ircomm_tty_state_search(struct ircomm_tty_cb *self,
62 IRCOMM_TTY_EVENT event,
63 struct sk_buff *skb,
1da177e4 64 struct ircomm_tty_info *info);
6819bc2e
YH
65static int ircomm_tty_state_query_parameters(struct ircomm_tty_cb *self,
66 IRCOMM_TTY_EVENT event,
67 struct sk_buff *skb,
1da177e4 68 struct ircomm_tty_info *info);
6819bc2e
YH
69static int ircomm_tty_state_query_lsap_sel(struct ircomm_tty_cb *self,
70 IRCOMM_TTY_EVENT event,
71 struct sk_buff *skb,
1da177e4 72 struct ircomm_tty_info *info);
6819bc2e
YH
73static int ircomm_tty_state_setup(struct ircomm_tty_cb *self,
74 IRCOMM_TTY_EVENT event,
75 struct sk_buff *skb,
1da177e4 76 struct ircomm_tty_info *info);
6819bc2e
YH
77static int ircomm_tty_state_ready(struct ircomm_tty_cb *self,
78 IRCOMM_TTY_EVENT event,
79 struct sk_buff *skb,
1da177e4
LT
80 struct ircomm_tty_info *info);
81
36cbd3dc 82const char *const ircomm_tty_state[] = {
1da177e4
LT
83 "IRCOMM_TTY_IDLE",
84 "IRCOMM_TTY_SEARCH",
85 "IRCOMM_TTY_QUERY_PARAMETERS",
86 "IRCOMM_TTY_QUERY_LSAP_SEL",
87 "IRCOMM_TTY_SETUP",
88 "IRCOMM_TTY_READY",
89 "*** ERROR *** ",
90};
91
92#ifdef CONFIG_IRDA_DEBUG
36cbd3dc 93static const char *const ircomm_tty_event[] = {
1da177e4
LT
94 "IRCOMM_TTY_ATTACH_CABLE",
95 "IRCOMM_TTY_DETACH_CABLE",
96 "IRCOMM_TTY_DATA_REQUEST",
97 "IRCOMM_TTY_DATA_INDICATION",
98 "IRCOMM_TTY_DISCOVERY_REQUEST",
99 "IRCOMM_TTY_DISCOVERY_INDICATION",
100 "IRCOMM_TTY_CONNECT_CONFIRM",
101 "IRCOMM_TTY_CONNECT_INDICATION",
102 "IRCOMM_TTY_DISCONNECT_REQUEST",
103 "IRCOMM_TTY_DISCONNECT_INDICATION",
104 "IRCOMM_TTY_WD_TIMER_EXPIRED",
105 "IRCOMM_TTY_GOT_PARAMETERS",
106 "IRCOMM_TTY_GOT_LSAPSEL",
107 "*** ERROR ****",
108};
109#endif /* CONFIG_IRDA_DEBUG */
110
111static int (*state[])(struct ircomm_tty_cb *self, IRCOMM_TTY_EVENT event,
6819bc2e 112 struct sk_buff *skb, struct ircomm_tty_info *info) =
1da177e4
LT
113{
114 ircomm_tty_state_idle,
115 ircomm_tty_state_search,
116 ircomm_tty_state_query_parameters,
117 ircomm_tty_state_query_lsap_sel,
118 ircomm_tty_state_setup,
119 ircomm_tty_state_ready,
120};
121
122/*
123 * Function ircomm_tty_attach_cable (driver)
124 *
125 * Try to attach cable (IrCOMM link). This function will only return
6819bc2e 126 * when the link has been connected, or if an error condition occurs.
1da177e4
LT
127 * If success, the return value is the resulting service type.
128 */
129int ircomm_tty_attach_cable(struct ircomm_tty_cb *self)
130{
62f228ac
JS
131 struct tty_struct *tty;
132
1da177e4
LT
133 IRDA_ASSERT(self != NULL, return -1;);
134 IRDA_ASSERT(self->magic == IRCOMM_TTY_MAGIC, return -1;);
135
6819bc2e 136 /* Check if somebody has already connected to us */
1da177e4 137 if (ircomm_is_connected(self->ircomm)) {
955a9d20 138 pr_debug("%s(), already connected!\n", __func__);
1da177e4
LT
139 return 0;
140 }
141
142 /* Make sure nobody tries to write before the link is up */
62f228ac
JS
143 tty = tty_port_tty_get(&self->port);
144 if (tty) {
145 tty->hw_stopped = 1;
146 tty_kref_put(tty);
147 }
1da177e4
LT
148
149 ircomm_tty_ias_register(self);
150
151 ircomm_tty_do_event(self, IRCOMM_TTY_ATTACH_CABLE, NULL, NULL);
152
153 return 0;
154}
155
156/*
157 * Function ircomm_detach_cable (driver)
158 *
159 * Detach cable, or cable has been detached by peer
160 *
161 */
162void ircomm_tty_detach_cable(struct ircomm_tty_cb *self)
163{
1da177e4
LT
164 IRDA_ASSERT(self != NULL, return;);
165 IRDA_ASSERT(self->magic == IRCOMM_TTY_MAGIC, return;);
166
167 del_timer(&self->watchdog_timer);
168
169 /* Remove discovery handler */
170 if (self->ckey) {
171 irlmp_unregister_client(self->ckey);
172 self->ckey = NULL;
173 }
174 /* Remove IrCOMM hint bits */
175 if (self->skey) {
176 irlmp_unregister_service(self->skey);
177 self->skey = NULL;
178 }
179
6819bc2e 180 if (self->iriap) {
1da177e4
LT
181 iriap_close(self->iriap);
182 self->iriap = NULL;
183 }
184
185 /* Remove LM-IAS object */
186 if (self->obj) {
187 irias_delete_object(self->obj);
188 self->obj = NULL;
189 }
190
191 ircomm_tty_do_event(self, IRCOMM_TTY_DETACH_CABLE, NULL, NULL);
192
193 /* Reset some values */
194 self->daddr = self->saddr = 0;
195 self->dlsap_sel = self->slsap_sel = 0;
196
197 memset(&self->settings, 0, sizeof(struct ircomm_params));
198}
199
200/*
201 * Function ircomm_tty_ias_register (self)
202 *
203 * Register with LM-IAS depending on which service type we are
204 *
205 */
206static void ircomm_tty_ias_register(struct ircomm_tty_cb *self)
207{
208 __u8 oct_seq[6];
209 __u16 hints;
210
1da177e4
LT
211 IRDA_ASSERT(self != NULL, return;);
212 IRDA_ASSERT(self->magic == IRCOMM_TTY_MAGIC, return;);
6819bc2e 213
1da177e4
LT
214 /* Compute hint bits based on service */
215 hints = irlmp_service_to_hint(S_COMM);
216 if (self->service_type & IRCOMM_3_WIRE_RAW)
217 hints |= irlmp_service_to_hint(S_PRINTER);
218
219 /* Advertise IrCOMM hint bit in discovery */
220 if (!self->skey)
221 self->skey = irlmp_register_service(hints);
222 /* Set up a discovery handler */
223 if (!self->ckey)
224 self->ckey = irlmp_register_client(hints,
225 ircomm_tty_discovery_indication,
226 NULL, (void *) self);
227
228 /* If already done, no need to do it again */
229 if (self->obj)
230 return;
231
232 if (self->service_type & IRCOMM_3_WIRE_RAW) {
233 /* Register IrLPT with LM-IAS */
234 self->obj = irias_new_object("IrLPT", IAS_IRLPT_ID);
6819bc2e 235 irias_add_integer_attrib(self->obj, "IrDA:IrLMP:LsapSel",
1da177e4
LT
236 self->slsap_sel, IAS_KERNEL_ATTR);
237 } else {
238 /* Register IrCOMM with LM-IAS */
239 self->obj = irias_new_object("IrDA:IrCOMM", IAS_IRCOMM_ID);
6819bc2e 240 irias_add_integer_attrib(self->obj, "IrDA:TinyTP:LsapSel",
1da177e4 241 self->slsap_sel, IAS_KERNEL_ATTR);
6819bc2e 242
1da177e4 243 /* Code the parameters into the buffer */
6819bc2e 244 irda_param_pack(oct_seq, "bbbbbb",
1da177e4
LT
245 IRCOMM_SERVICE_TYPE, 1, self->service_type,
246 IRCOMM_PORT_TYPE, 1, IRCOMM_SERIAL);
6819bc2e 247
1da177e4
LT
248 /* Register parameters with LM-IAS */
249 irias_add_octseq_attrib(self->obj, "Parameters", oct_seq, 6,
250 IAS_KERNEL_ATTR);
251 }
252 irias_insert_object(self->obj);
253}
254
255/*
256 * Function ircomm_tty_ias_unregister (self)
257 *
258 * Remove our IAS object and client hook while connected.
259 *
260 */
261static void ircomm_tty_ias_unregister(struct ircomm_tty_cb *self)
262{
263 /* Remove LM-IAS object now so it is not reused.
264 * IrCOMM deals very poorly with multiple incoming connections.
265 * It should looks a lot more like IrNET, and "dup" a server TSAP
266 * to the application TSAP (based on various rules).
267 * This is a cheap workaround allowing multiple clients to
268 * connect to us. It will not always work.
269 * Each IrCOMM socket has an IAS entry. Incoming connection will
270 * pick the first one found. So, when we are fully connected,
271 * we remove our IAS entries so that the next IAS entry is used.
272 * We do that for *both* client and server, because a server
273 * can also create client instances.
274 * Jean II */
275 if (self->obj) {
276 irias_delete_object(self->obj);
277 self->obj = NULL;
278 }
279
280#if 0
281 /* Remove discovery handler.
282 * While we are connected, we no longer need to receive
283 * discovery events. This would be the case if there is
284 * multiple IrLAP interfaces. Jean II */
285 if (self->ckey) {
286 irlmp_unregister_client(self->ckey);
287 self->ckey = NULL;
288 }
289#endif
290}
291
292/*
293 * Function ircomm_send_initial_parameters (self)
294 *
295 * Send initial parameters to the remote IrCOMM device. These parameters
296 * must be sent before any data.
297 */
298int ircomm_tty_send_initial_parameters(struct ircomm_tty_cb *self)
299{
300 IRDA_ASSERT(self != NULL, return -1;);
301 IRDA_ASSERT(self->magic == IRCOMM_TTY_MAGIC, return -1;);
302
6819bc2e 303 if (self->service_type & IRCOMM_3_WIRE_RAW)
1da177e4
LT
304 return 0;
305
6819bc2e
YH
306 /*
307 * Set default values, but only if the application for some reason
1da177e4
LT
308 * haven't set them already
309 */
955a9d20
JP
310 pr_debug("%s(), data-rate = %d\n", __func__ ,
311 self->settings.data_rate);
1da177e4
LT
312 if (!self->settings.data_rate)
313 self->settings.data_rate = 9600;
955a9d20
JP
314 pr_debug("%s(), data-format = %d\n", __func__ ,
315 self->settings.data_format);
1da177e4
LT
316 if (!self->settings.data_format)
317 self->settings.data_format = IRCOMM_WSIZE_8; /* 8N1 */
318
955a9d20
JP
319 pr_debug("%s(), flow-control = %d\n", __func__ ,
320 self->settings.flow_control);
1da177e4
LT
321 /*self->settings.flow_control = IRCOMM_RTS_CTS_IN|IRCOMM_RTS_CTS_OUT;*/
322
323 /* Do not set delta values for the initial parameters */
324 self->settings.dte = IRCOMM_DTR | IRCOMM_RTS;
325
326 /* Only send service type parameter when we are the client */
327 if (self->client)
328 ircomm_param_request(self, IRCOMM_SERVICE_TYPE, FALSE);
329 ircomm_param_request(self, IRCOMM_DATA_RATE, FALSE);
330 ircomm_param_request(self, IRCOMM_DATA_FORMAT, FALSE);
6819bc2e 331
1da177e4
LT
332 /* For a 3 wire service, we just flush the last parameter and return */
333 if (self->settings.service_type == IRCOMM_3_WIRE) {
334 ircomm_param_request(self, IRCOMM_FLOW_CONTROL, TRUE);
335 return 0;
336 }
337
338 /* Only 9-wire service types continue here */
339 ircomm_param_request(self, IRCOMM_FLOW_CONTROL, FALSE);
340#if 0
341 ircomm_param_request(self, IRCOMM_XON_XOFF, FALSE);
342 ircomm_param_request(self, IRCOMM_ENQ_ACK, FALSE);
6819bc2e 343#endif
1da177e4
LT
344 /* Notify peer that we are ready to receive data */
345 ircomm_param_request(self, IRCOMM_DTE, TRUE);
6819bc2e 346
1da177e4
LT
347 return 0;
348}
349
350/*
351 * Function ircomm_tty_discovery_indication (discovery)
352 *
353 * Remote device is discovered, try query the remote IAS to see which
354 * device it is, and which services it has.
355 *
356 */
357static void ircomm_tty_discovery_indication(discinfo_t *discovery,
358 DISCOVERY_MODE mode,
359 void *priv)
360{
361 struct ircomm_tty_cb *self;
362 struct ircomm_tty_info info;
363
1da177e4
LT
364 /* Important note :
365 * We need to drop all passive discoveries.
366 * The LSAP management of IrComm is deficient and doesn't deal
367 * with the case of two instance connecting to each other
368 * simultaneously (it will deadlock in LMP).
369 * The proper fix would be to use the same technique as in IrNET,
370 * to have one server socket and separate instances for the
371 * connecting/connected socket.
372 * The workaround is to drop passive discovery, which drastically
373 * reduce the probability of this happening.
374 * Jean II */
375 if(mode == DISCOVERY_PASSIVE)
376 return;
377
378 info.daddr = discovery->daddr;
379 info.saddr = discovery->saddr;
380
ea110733 381 self = priv;
c310f099
RR
382 ircomm_tty_do_event(self, IRCOMM_TTY_DISCOVERY_INDICATION,
383 NULL, &info);
1da177e4
LT
384}
385
386/*
387 * Function ircomm_tty_disconnect_indication (instance, sap, reason, skb)
388 *
389 * Link disconnected
390 *
391 */
6819bc2e 392void ircomm_tty_disconnect_indication(void *instance, void *sap,
1da177e4
LT
393 LM_REASON reason,
394 struct sk_buff *skb)
395{
396 struct ircomm_tty_cb *self = (struct ircomm_tty_cb *) instance;
62f228ac 397 struct tty_struct *tty;
1da177e4 398
1da177e4
LT
399 IRDA_ASSERT(self != NULL, return;);
400 IRDA_ASSERT(self->magic == IRCOMM_TTY_MAGIC, return;);
401
62f228ac
JS
402 tty = tty_port_tty_get(&self->port);
403 if (!tty)
1da177e4
LT
404 return;
405
406 /* This will stop control data transfers */
407 self->flow = FLOW_STOP;
408
409 /* Stop data transfers */
62f228ac 410 tty->hw_stopped = 1;
1da177e4 411
6819bc2e 412 ircomm_tty_do_event(self, IRCOMM_TTY_DISCONNECT_INDICATION, NULL,
1da177e4 413 NULL);
62f228ac 414 tty_kref_put(tty);
1da177e4
LT
415}
416
417/*
418 * Function ircomm_tty_getvalue_confirm (result, obj_id, value, priv)
419 *
420 * Got result from the IAS query we make
421 *
422 */
6819bc2e
YH
423static void ircomm_tty_getvalue_confirm(int result, __u16 obj_id,
424 struct ias_value *value,
1da177e4
LT
425 void *priv)
426{
427 struct ircomm_tty_cb *self = (struct ircomm_tty_cb *) priv;
428
1da177e4
LT
429 IRDA_ASSERT(self != NULL, return;);
430 IRDA_ASSERT(self->magic == IRCOMM_TTY_MAGIC, return;);
431
432 /* We probably don't need to make any more queries */
433 iriap_close(self->iriap);
434 self->iriap = NULL;
435
436 /* Check if request succeeded */
437 if (result != IAS_SUCCESS) {
955a9d20 438 pr_debug("%s(), got NULL value!\n", __func__);
1da177e4
LT
439 return;
440 }
441
442 switch (value->type) {
6819bc2e 443 case IAS_OCT_SEQ:
955a9d20 444 pr_debug("%s(), got octet sequence\n", __func__);
1da177e4
LT
445
446 irda_param_extract_all(self, value->t.oct_seq, value->len,
447 &ircomm_param_info);
448
6819bc2e 449 ircomm_tty_do_event(self, IRCOMM_TTY_GOT_PARAMETERS, NULL,
1da177e4
LT
450 NULL);
451 break;
452 case IAS_INTEGER:
6819bc2e 453 /* Got LSAP selector */
955a9d20
JP
454 pr_debug("%s(), got lsapsel = %d\n", __func__ ,
455 value->t.integer);
1da177e4
LT
456
457 if (value->t.integer == -1) {
955a9d20 458 pr_debug("%s(), invalid value!\n", __func__);
1da177e4
LT
459 } else
460 self->dlsap_sel = value->t.integer;
461
462 ircomm_tty_do_event(self, IRCOMM_TTY_GOT_LSAPSEL, NULL, NULL);
463 break;
464 case IAS_MISSING:
955a9d20 465 pr_debug("%s(), got IAS_MISSING\n", __func__);
1da177e4
LT
466 break;
467 default:
955a9d20 468 pr_debug("%s(), got unknown type!\n", __func__);
1da177e4
LT
469 break;
470 }
471 irias_delete_value(value);
472}
473
474/*
475 * Function ircomm_tty_connect_confirm (instance, sap, qos, max_sdu_size, skb)
476 *
477 * Connection confirmed
478 *
479 */
6819bc2e
YH
480void ircomm_tty_connect_confirm(void *instance, void *sap,
481 struct qos_info *qos,
482 __u32 max_data_size,
483 __u8 max_header_size,
1da177e4
LT
484 struct sk_buff *skb)
485{
486 struct ircomm_tty_cb *self = (struct ircomm_tty_cb *) instance;
487
1da177e4
LT
488 IRDA_ASSERT(self != NULL, return;);
489 IRDA_ASSERT(self->magic == IRCOMM_TTY_MAGIC, return;);
490
491 self->client = TRUE;
492 self->max_data_size = max_data_size;
493 self->max_header_size = max_header_size;
494 self->flow = FLOW_START;
495
496 ircomm_tty_do_event(self, IRCOMM_TTY_CONNECT_CONFIRM, NULL, NULL);
497
498 /* No need to kfree_skb - see ircomm_ttp_connect_confirm() */
499}
500
501/*
6819bc2e 502 * Function ircomm_tty_connect_indication (instance, sap, qos, max_sdu_size,
1da177e4
LT
503 * skb)
504 *
505 * we are discovered and being requested to connect by remote device !
506 *
507 */
6819bc2e
YH
508void ircomm_tty_connect_indication(void *instance, void *sap,
509 struct qos_info *qos,
1da177e4 510 __u32 max_data_size,
6819bc2e 511 __u8 max_header_size,
1da177e4
LT
512 struct sk_buff *skb)
513{
514 struct ircomm_tty_cb *self = (struct ircomm_tty_cb *) instance;
515 int clen;
516
1da177e4
LT
517 IRDA_ASSERT(self != NULL, return;);
518 IRDA_ASSERT(self->magic == IRCOMM_TTY_MAGIC, return;);
519
520 self->client = FALSE;
521 self->max_data_size = max_data_size;
522 self->max_header_size = max_header_size;
523 self->flow = FLOW_START;
524
525 clen = skb->data[0];
526 if (clen)
6819bc2e
YH
527 irda_param_extract_all(self, skb->data+1,
528 IRDA_MIN(skb->len, clen),
1da177e4
LT
529 &ircomm_param_info);
530
531 ircomm_tty_do_event(self, IRCOMM_TTY_CONNECT_INDICATION, NULL, NULL);
532
533 /* No need to kfree_skb - see ircomm_ttp_connect_indication() */
534}
535
536/*
537 * Function ircomm_tty_link_established (self)
538 *
539 * Called when the IrCOMM link is established
540 *
541 */
542void ircomm_tty_link_established(struct ircomm_tty_cb *self)
543{
62f228ac
JS
544 struct tty_struct *tty;
545
1da177e4
LT
546 IRDA_ASSERT(self != NULL, return;);
547 IRDA_ASSERT(self->magic == IRCOMM_TTY_MAGIC, return;);
548
62f228ac
JS
549 tty = tty_port_tty_get(&self->port);
550 if (!tty)
1da177e4 551 return;
6819bc2e 552
1da177e4
LT
553 del_timer(&self->watchdog_timer);
554
6819bc2e 555 /*
1da177e4
LT
556 * IrCOMM link is now up, and if we are not using hardware
557 * flow-control, then declare the hardware as running. Otherwise we
558 * will have to wait for the peer device (DCE) to raise the CTS
6819bc2e 559 * line.
1da177e4 560 */
f21ec3d2 561 if (tty_port_cts_enabled(&self->port) &&
849d5a99 562 ((self->settings.dce & IRCOMM_CTS) == 0)) {
955a9d20 563 pr_debug("%s(), waiting for CTS ...\n", __func__);
62f228ac 564 goto put;
1da177e4 565 } else {
955a9d20 566 pr_debug("%s(), starting hardware!\n", __func__);
1da177e4 567
62f228ac 568 tty->hw_stopped = 0;
6819bc2e 569
1da177e4 570 /* Wake up processes blocked on open */
a3cc9fcf 571 wake_up_interruptible(&self->port.open_wait);
1da177e4
LT
572 }
573
574 schedule_work(&self->tqueue);
62f228ac
JS
575put:
576 tty_kref_put(tty);
1da177e4
LT
577}
578
579/*
580 * Function ircomm_tty_start_watchdog_timer (self, timeout)
581 *
6819bc2e
YH
582 * Start the watchdog timer. This timer is used to make sure that any
583 * connection attempt is successful, and if not, we will retry after
1da177e4
LT
584 * the timeout
585 */
586static void ircomm_tty_start_watchdog_timer(struct ircomm_tty_cb *self,
587 int timeout)
588{
589 IRDA_ASSERT(self != NULL, return;);
590 IRDA_ASSERT(self->magic == IRCOMM_TTY_MAGIC, return;);
591
592 irda_start_timer(&self->watchdog_timer, timeout, (void *) self,
593 ircomm_tty_watchdog_timer_expired);
594}
595
596/*
597 * Function ircomm_tty_watchdog_timer_expired (data)
598 *
599 * Called when the connect procedure have taken to much time.
600 *
601 */
602static void ircomm_tty_watchdog_timer_expired(void *data)
603{
604 struct ircomm_tty_cb *self = (struct ircomm_tty_cb *) data;
6819bc2e 605
1da177e4
LT
606 IRDA_ASSERT(self != NULL, return;);
607 IRDA_ASSERT(self->magic == IRCOMM_TTY_MAGIC, return;);
608
609 ircomm_tty_do_event(self, IRCOMM_TTY_WD_TIMER_EXPIRED, NULL, NULL);
610}
611
612
613/*
614 * Function ircomm_tty_do_event (self, event, skb)
615 *
616 * Process event
617 *
618 */
619int ircomm_tty_do_event(struct ircomm_tty_cb *self, IRCOMM_TTY_EVENT event,
6819bc2e 620 struct sk_buff *skb, struct ircomm_tty_info *info)
1da177e4
LT
621{
622 IRDA_ASSERT(self != NULL, return -1;);
623 IRDA_ASSERT(self->magic == IRCOMM_TTY_MAGIC, return -1;);
624
955a9d20
JP
625 pr_debug("%s: state=%s, event=%s\n", __func__ ,
626 ircomm_tty_state[self->state], ircomm_tty_event[event]);
6819bc2e 627
1da177e4
LT
628 return (*state[self->state])(self, event, skb, info);
629}
630
631/*
632 * Function ircomm_tty_next_state (self, state)
633 *
634 * Switch state
635 *
636 */
637static inline void ircomm_tty_next_state(struct ircomm_tty_cb *self, IRCOMM_TTY_STATE state)
638{
639 /*
640 IRDA_ASSERT(self != NULL, return;);
641 IRDA_ASSERT(self->magic == IRCOMM_TTY_MAGIC, return;);
642
955a9d20
JP
643 pr_debug("%s: next state=%s, service type=%d\n", __func__ ,
644 ircomm_tty_state[self->state], self->service_type);
1da177e4
LT
645 */
646 self->state = state;
647}
648
649/*
650 * Function ircomm_tty_state_idle (self, event, skb, info)
651 *
652 * Just hanging around
653 *
654 */
6819bc2e
YH
655static int ircomm_tty_state_idle(struct ircomm_tty_cb *self,
656 IRCOMM_TTY_EVENT event,
657 struct sk_buff *skb,
1da177e4
LT
658 struct ircomm_tty_info *info)
659{
660 int ret = 0;
661
955a9d20
JP
662 pr_debug("%s: state=%s, event=%s\n", __func__ ,
663 ircomm_tty_state[self->state], ircomm_tty_event[event]);
1da177e4
LT
664 switch (event) {
665 case IRCOMM_TTY_ATTACH_CABLE:
6819bc2e 666 /* Try to discover any remote devices */
1da177e4
LT
667 ircomm_tty_start_watchdog_timer(self, 3*HZ);
668 ircomm_tty_next_state(self, IRCOMM_TTY_SEARCH);
6819bc2e 669
1da177e4
LT
670 irlmp_discovery_request(DISCOVERY_DEFAULT_SLOTS);
671 break;
672 case IRCOMM_TTY_DISCOVERY_INDICATION:
673 self->daddr = info->daddr;
674 self->saddr = info->saddr;
675
676 if (self->iriap) {
6c91023d
JP
677 net_warn_ratelimited("%s(), busy with a previous query\n",
678 __func__);
1da177e4
LT
679 return -EBUSY;
680 }
681
682 self->iriap = iriap_open(LSAP_ANY, IAS_CLIENT, self,
683 ircomm_tty_getvalue_confirm);
684
685 iriap_getvaluebyclass_request(self->iriap,
686 self->saddr, self->daddr,
687 "IrDA:IrCOMM", "Parameters");
6819bc2e 688
1da177e4
LT
689 ircomm_tty_start_watchdog_timer(self, 3*HZ);
690 ircomm_tty_next_state(self, IRCOMM_TTY_QUERY_PARAMETERS);
691 break;
692 case IRCOMM_TTY_CONNECT_INDICATION:
693 del_timer(&self->watchdog_timer);
694
695 /* Accept connection */
696 ircomm_connect_response(self->ircomm, NULL);
697 ircomm_tty_next_state(self, IRCOMM_TTY_READY);
698 break;
699 case IRCOMM_TTY_WD_TIMER_EXPIRED:
700 /* Just stay idle */
701 break;
702 case IRCOMM_TTY_DETACH_CABLE:
703 ircomm_tty_next_state(self, IRCOMM_TTY_IDLE);
704 break;
705 default:
955a9d20
JP
706 pr_debug("%s(), unknown event: %s\n", __func__ ,
707 ircomm_tty_event[event]);
1da177e4
LT
708 ret = -EINVAL;
709 }
710 return ret;
711}
712
713/*
714 * Function ircomm_tty_state_search (self, event, skb, info)
715 *
716 * Trying to discover an IrCOMM device
717 *
718 */
6819bc2e
YH
719static int ircomm_tty_state_search(struct ircomm_tty_cb *self,
720 IRCOMM_TTY_EVENT event,
721 struct sk_buff *skb,
1da177e4
LT
722 struct ircomm_tty_info *info)
723{
724 int ret = 0;
725
955a9d20
JP
726 pr_debug("%s: state=%s, event=%s\n", __func__ ,
727 ircomm_tty_state[self->state], ircomm_tty_event[event]);
1da177e4
LT
728
729 switch (event) {
730 case IRCOMM_TTY_DISCOVERY_INDICATION:
731 self->daddr = info->daddr;
732 self->saddr = info->saddr;
733
734 if (self->iriap) {
6c91023d
JP
735 net_warn_ratelimited("%s(), busy with a previous query\n",
736 __func__);
1da177e4
LT
737 return -EBUSY;
738 }
6819bc2e 739
1da177e4
LT
740 self->iriap = iriap_open(LSAP_ANY, IAS_CLIENT, self,
741 ircomm_tty_getvalue_confirm);
6819bc2e 742
1da177e4
LT
743 if (self->service_type == IRCOMM_3_WIRE_RAW) {
744 iriap_getvaluebyclass_request(self->iriap, self->saddr,
6819bc2e 745 self->daddr, "IrLPT",
1da177e4
LT
746 "IrDA:IrLMP:LsapSel");
747 ircomm_tty_next_state(self, IRCOMM_TTY_QUERY_LSAP_SEL);
748 } else {
749 iriap_getvaluebyclass_request(self->iriap, self->saddr,
6819bc2e
YH
750 self->daddr,
751 "IrDA:IrCOMM",
1da177e4
LT
752 "Parameters");
753
754 ircomm_tty_next_state(self, IRCOMM_TTY_QUERY_PARAMETERS);
755 }
756 ircomm_tty_start_watchdog_timer(self, 3*HZ);
757 break;
758 case IRCOMM_TTY_CONNECT_INDICATION:
759 del_timer(&self->watchdog_timer);
760 ircomm_tty_ias_unregister(self);
761
762 /* Accept connection */
763 ircomm_connect_response(self->ircomm, NULL);
764 ircomm_tty_next_state(self, IRCOMM_TTY_READY);
765 break;
766 case IRCOMM_TTY_WD_TIMER_EXPIRED:
767#if 1
768 /* Give up */
769#else
6819bc2e 770 /* Try to discover any remote devices */
1da177e4
LT
771 ircomm_tty_start_watchdog_timer(self, 3*HZ);
772 irlmp_discovery_request(DISCOVERY_DEFAULT_SLOTS);
773#endif
774 break;
775 case IRCOMM_TTY_DETACH_CABLE:
776 ircomm_tty_next_state(self, IRCOMM_TTY_IDLE);
777 break;
778 default:
955a9d20
JP
779 pr_debug("%s(), unknown event: %s\n", __func__ ,
780 ircomm_tty_event[event]);
1da177e4
LT
781 ret = -EINVAL;
782 }
783 return ret;
784}
785
786/*
787 * Function ircomm_tty_state_query (self, event, skb, info)
788 *
789 * Querying the remote LM-IAS for IrCOMM parameters
790 *
791 */
6819bc2e
YH
792static int ircomm_tty_state_query_parameters(struct ircomm_tty_cb *self,
793 IRCOMM_TTY_EVENT event,
794 struct sk_buff *skb,
1da177e4
LT
795 struct ircomm_tty_info *info)
796{
797 int ret = 0;
798
955a9d20
JP
799 pr_debug("%s: state=%s, event=%s\n", __func__ ,
800 ircomm_tty_state[self->state], ircomm_tty_event[event]);
1da177e4
LT
801
802 switch (event) {
803 case IRCOMM_TTY_GOT_PARAMETERS:
804 if (self->iriap) {
6c91023d
JP
805 net_warn_ratelimited("%s(), busy with a previous query\n",
806 __func__);
1da177e4
LT
807 return -EBUSY;
808 }
6819bc2e 809
1da177e4
LT
810 self->iriap = iriap_open(LSAP_ANY, IAS_CLIENT, self,
811 ircomm_tty_getvalue_confirm);
812
6819bc2e
YH
813 iriap_getvaluebyclass_request(self->iriap, self->saddr,
814 self->daddr, "IrDA:IrCOMM",
1da177e4
LT
815 "IrDA:TinyTP:LsapSel");
816
817 ircomm_tty_start_watchdog_timer(self, 3*HZ);
818 ircomm_tty_next_state(self, IRCOMM_TTY_QUERY_LSAP_SEL);
819 break;
820 case IRCOMM_TTY_WD_TIMER_EXPIRED:
821 /* Go back to search mode */
822 ircomm_tty_next_state(self, IRCOMM_TTY_SEARCH);
6819bc2e 823 ircomm_tty_start_watchdog_timer(self, 3*HZ);
1da177e4
LT
824 break;
825 case IRCOMM_TTY_CONNECT_INDICATION:
826 del_timer(&self->watchdog_timer);
827 ircomm_tty_ias_unregister(self);
828
829 /* Accept connection */
830 ircomm_connect_response(self->ircomm, NULL);
831 ircomm_tty_next_state(self, IRCOMM_TTY_READY);
832 break;
833 case IRCOMM_TTY_DETACH_CABLE:
834 ircomm_tty_next_state(self, IRCOMM_TTY_IDLE);
835 break;
836 default:
955a9d20
JP
837 pr_debug("%s(), unknown event: %s\n", __func__ ,
838 ircomm_tty_event[event]);
1da177e4
LT
839 ret = -EINVAL;
840 }
841 return ret;
842}
843
844/*
845 * Function ircomm_tty_state_query_lsap_sel (self, event, skb, info)
846 *
847 * Query remote LM-IAS for the LSAP selector which we can connect to
848 *
849 */
6819bc2e
YH
850static int ircomm_tty_state_query_lsap_sel(struct ircomm_tty_cb *self,
851 IRCOMM_TTY_EVENT event,
852 struct sk_buff *skb,
1da177e4
LT
853 struct ircomm_tty_info *info)
854{
855 int ret = 0;
856
955a9d20
JP
857 pr_debug("%s: state=%s, event=%s\n", __func__ ,
858 ircomm_tty_state[self->state], ircomm_tty_event[event]);
1da177e4
LT
859
860 switch (event) {
861 case IRCOMM_TTY_GOT_LSAPSEL:
862 /* Connect to remote device */
863 ret = ircomm_connect_request(self->ircomm, self->dlsap_sel,
6819bc2e 864 self->saddr, self->daddr,
1da177e4
LT
865 NULL, self->service_type);
866 ircomm_tty_start_watchdog_timer(self, 3*HZ);
867 ircomm_tty_next_state(self, IRCOMM_TTY_SETUP);
868 break;
869 case IRCOMM_TTY_WD_TIMER_EXPIRED:
870 /* Go back to search mode */
871 ircomm_tty_next_state(self, IRCOMM_TTY_SEARCH);
872 ircomm_tty_start_watchdog_timer(self, 3*HZ);
873 break;
874 case IRCOMM_TTY_CONNECT_INDICATION:
875 del_timer(&self->watchdog_timer);
876 ircomm_tty_ias_unregister(self);
877
878 /* Accept connection */
879 ircomm_connect_response(self->ircomm, NULL);
880 ircomm_tty_next_state(self, IRCOMM_TTY_READY);
881 break;
882 case IRCOMM_TTY_DETACH_CABLE:
883 ircomm_tty_next_state(self, IRCOMM_TTY_IDLE);
884 break;
885 default:
955a9d20
JP
886 pr_debug("%s(), unknown event: %s\n", __func__ ,
887 ircomm_tty_event[event]);
1da177e4
LT
888 ret = -EINVAL;
889 }
890 return ret;
891}
892
893/*
894 * Function ircomm_tty_state_setup (self, event, skb, info)
895 *
896 * Trying to connect
897 *
898 */
6819bc2e
YH
899static int ircomm_tty_state_setup(struct ircomm_tty_cb *self,
900 IRCOMM_TTY_EVENT event,
901 struct sk_buff *skb,
1da177e4
LT
902 struct ircomm_tty_info *info)
903{
904 int ret = 0;
905
955a9d20
JP
906 pr_debug("%s: state=%s, event=%s\n", __func__ ,
907 ircomm_tty_state[self->state], ircomm_tty_event[event]);
1da177e4
LT
908
909 switch (event) {
910 case IRCOMM_TTY_CONNECT_CONFIRM:
911 del_timer(&self->watchdog_timer);
912 ircomm_tty_ias_unregister(self);
6819bc2e
YH
913
914 /*
1da177e4 915 * Send initial parameters. This will also send out queued
6819bc2e 916 * parameters waiting for the connection to come up
1da177e4
LT
917 */
918 ircomm_tty_send_initial_parameters(self);
919 ircomm_tty_link_established(self);
920 ircomm_tty_next_state(self, IRCOMM_TTY_READY);
921 break;
922 case IRCOMM_TTY_CONNECT_INDICATION:
923 del_timer(&self->watchdog_timer);
924 ircomm_tty_ias_unregister(self);
6819bc2e 925
1da177e4
LT
926 /* Accept connection */
927 ircomm_connect_response(self->ircomm, NULL);
928 ircomm_tty_next_state(self, IRCOMM_TTY_READY);
929 break;
930 case IRCOMM_TTY_WD_TIMER_EXPIRED:
931 /* Go back to search mode */
932 ircomm_tty_next_state(self, IRCOMM_TTY_SEARCH);
933 ircomm_tty_start_watchdog_timer(self, 3*HZ);
934 break;
935 case IRCOMM_TTY_DETACH_CABLE:
936 /* ircomm_disconnect_request(self->ircomm, NULL); */
937 ircomm_tty_next_state(self, IRCOMM_TTY_IDLE);
938 break;
939 default:
955a9d20
JP
940 pr_debug("%s(), unknown event: %s\n", __func__ ,
941 ircomm_tty_event[event]);
1da177e4
LT
942 ret = -EINVAL;
943 }
944 return ret;
945}
946
947/*
948 * Function ircomm_tty_state_ready (self, event, skb, info)
949 *
950 * IrCOMM is now connected
951 *
952 */
6819bc2e
YH
953static int ircomm_tty_state_ready(struct ircomm_tty_cb *self,
954 IRCOMM_TTY_EVENT event,
955 struct sk_buff *skb,
1da177e4
LT
956 struct ircomm_tty_info *info)
957{
958 int ret = 0;
959
960 switch (event) {
961 case IRCOMM_TTY_DATA_REQUEST:
962 ret = ircomm_data_request(self->ircomm, skb);
6819bc2e 963 break;
1da177e4
LT
964 case IRCOMM_TTY_DETACH_CABLE:
965 ircomm_disconnect_request(self->ircomm, NULL);
966 ircomm_tty_next_state(self, IRCOMM_TTY_IDLE);
967 break;
968 case IRCOMM_TTY_DISCONNECT_INDICATION:
969 ircomm_tty_ias_register(self);
970 ircomm_tty_next_state(self, IRCOMM_TTY_SEARCH);
971 ircomm_tty_start_watchdog_timer(self, 3*HZ);
972
849d5a99 973 if (self->port.flags & ASYNC_CHECK_CD) {
1da177e4
LT
974 /* Drop carrier */
975 self->settings.dce = IRCOMM_DELTA_CD;
976 ircomm_tty_check_modem_status(self);
977 } else {
955a9d20 978 pr_debug("%s(), hanging up!\n", __func__);
aa27a094 979 tty_port_tty_hangup(&self->port, false);
1da177e4
LT
980 }
981 break;
982 default:
955a9d20
JP
983 pr_debug("%s(), unknown event: %s\n", __func__ ,
984 ircomm_tty_event[event]);
1da177e4
LT
985 ret = -EINVAL;
986 }
987 return ret;
988}
989
This page took 0.686906 seconds and 5 git commands to generate.