2 * Stuff used by all variants of the driver
4 * Copyright (c) 2001 by Stefan Eilers,
5 * Hansjoerg Lipp <hjlipp@web.de>,
6 * Tilman Schmidt <tilman@imap.cc>.
8 * =====================================================================
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License as
11 * published by the Free Software Foundation; either version 2 of
12 * the License, or (at your option) any later version.
13 * =====================================================================
18 /* ========================================================== */
19 /* bit masks for pending commands */
25 #define PC_SHUTDOWN 0x020
26 #define PC_ACCEPT 0x040
28 #define PC_NOCID 0x100
29 #define PC_CIDMODE 0x200
30 #define PC_UMMODE 0x400
32 /* types of modem responses */
40 /* Possible ASCII responses */
48 /* responses with values to store in at_state */
51 #define RSP_ZSAU (RSP_VAR + VAR_ZSAU)
52 #define RSP_ZDLE (RSP_VAR + VAR_ZDLE)
53 #define RSP_ZCTP (RSP_VAR + VAR_ZCTP)
55 #define RSP_STR (RSP_VAR + VAR_NUM)
56 #define RSP_NMBR (RSP_STR + STR_NMBR)
57 #define RSP_ZCPN (RSP_STR + STR_ZCPN)
58 #define RSP_ZCON (RSP_STR + STR_ZCON)
59 #define RSP_ZBC (RSP_STR + STR_ZBC)
60 #define RSP_ZHLC (RSP_STR + STR_ZHLC)
62 #define RSP_WRONG_CID -2 /* unknown cid in cmd */
63 #define RSP_INVAL -6 /* invalid response */
64 #define RSP_NODEV -9 /* device not connected */
67 #define RSP_STRING -20
73 /* actions for process_response */
77 #define ACT_FAILINIT 3
78 #define ACT_HUPMODEM 4
79 #define ACT_CONFIGMODE 5
83 #define ACT_FAILDLE0 9
84 #define ACT_FAILDLE1 10
87 #define ACT_FAILCID 13
89 #define ACT_FAILSDOWN 15
92 #define ACT_DIALING 18
93 #define ACT_ABORTDIAL 19
94 #define ACT_DISCONNECT 20
95 #define ACT_CONNECT 21
96 #define ACT_REMOTEREJECT 22
97 #define ACT_CONNTIMEOUT 23
98 #define ACT_REMOTEHUP 24
99 #define ACT_ABORTHUP 25
101 #define ACT_ACCEPTED 27
102 #define ACT_ABORTACCEPT 28
103 #define ACT_TIMEOUT 29
104 #define ACT_GETSTRING 30
105 #define ACT_SETVER 31
106 #define ACT_FAILVER 32
107 #define ACT_GOTVER 33
110 #define ACT_ABORTCID 36
112 #define ACT_NOTIFY_BC_DOWN 38
113 #define ACT_NOTIFY_BC_UP 39
115 #define ACT_ACCEPT 41
117 #define ACT_IF_LOCK 44
120 #define ACT_FAKEDLE0 47
121 #define ACT_FAKEHUP 48
122 #define ACT_FAKESDOWN 49
123 #define ACT_SHUTDOWN 50
124 #define ACT_PROC_CIDMODE 51
125 #define ACT_UMODESET 52
126 #define ACT_FAILUMODE 53
127 #define ACT_CMODESET 54
128 #define ACT_FAILCMODE 55
129 #define ACT_IF_VER 56
132 /* at command sequences */
138 #define SEQ_NOCID 350
141 #define SEQ_ACCEPT 720
142 #define SEQ_SHUTDOWN 500
143 #define SEQ_CIDMODE 10
144 #define SEQ_UMMODE 11
147 /* 100: init, 200: dle0, 250:dle1, 300: get cid (dial), 350: "hup" (no cid),
148 * 400: hup, 500: reset, 600: dial, 700: ring */
149 struct reply_t gigaset_tab_nocid
[] =
151 /* resp_code, min_ConState, max_ConState, parameter, new_ConState, timeout,
154 /* initialize device, set cid mode if possible */
155 {RSP_INIT
, -1, -1, SEQ_INIT
, 100, 1, {ACT_TIMEOUT
} },
157 {EV_TIMEOUT
, 100, 100, -1, 101, 3, {0}, "Z\r"},
158 {RSP_OK
, 101, 103, -1, 120, 5, {ACT_GETSTRING
},
161 {EV_TIMEOUT
, 101, 101, -1, 102, 5, {0}, "Z\r"},
162 {RSP_ERROR
, 101, 101, -1, 102, 5, {0}, "Z\r"},
164 {EV_TIMEOUT
, 102, 102, -1, 108, 5, {ACT_SETDLE1
},
166 {RSP_OK
, 108, 108, -1, 104, -1},
167 {RSP_ZDLE
, 104, 104, 0, 103, 5, {0}, "Z\r"},
168 {EV_TIMEOUT
, 104, 104, -1, 0, 0, {ACT_FAILINIT
} },
169 {RSP_ERROR
, 108, 108, -1, 0, 0, {ACT_FAILINIT
} },
171 {EV_TIMEOUT
, 108, 108, -1, 105, 2, {ACT_SETDLE0
,
174 {EV_TIMEOUT
, 105, 105, -1, 103, 5, {0}, "Z\r"},
176 {RSP_ERROR
, 102, 102, -1, 107, 5, {0}, "^GETPRE\r"},
177 {RSP_OK
, 107, 107, -1, 0, 0, {ACT_CONFIGMODE
} },
178 {RSP_ERROR
, 107, 107, -1, 0, 0, {ACT_FAILINIT
} },
179 {EV_TIMEOUT
, 107, 107, -1, 0, 0, {ACT_FAILINIT
} },
181 {RSP_ERROR
, 103, 103, -1, 0, 0, {ACT_FAILINIT
} },
182 {EV_TIMEOUT
, 103, 103, -1, 0, 0, {ACT_FAILINIT
} },
184 {RSP_STRING
, 120, 120, -1, 121, -1, {ACT_SETVER
} },
186 {EV_TIMEOUT
, 120, 121, -1, 0, 0, {ACT_FAILVER
,
188 {RSP_ERROR
, 120, 121, -1, 0, 0, {ACT_FAILVER
,
190 {RSP_OK
, 121, 121, -1, 0, 0, {ACT_GOTVER
,
194 {RSP_INIT
, 0, 0, SEQ_DLE0
, 201, 5, {0}, "^SDLE=0\r"},
195 {RSP_OK
, 201, 201, -1, 202, -1},
196 {RSP_ZDLE
, 202, 202, 0, 0, 0, {ACT_DLE0
} },
197 {RSP_NODEV
, 200, 249, -1, 0, 0, {ACT_FAKEDLE0
} },
198 {RSP_ERROR
, 200, 249, -1, 0, 0, {ACT_FAILDLE0
} },
199 {EV_TIMEOUT
, 200, 249, -1, 0, 0, {ACT_FAILDLE0
} },
202 {RSP_INIT
, 0, 0, SEQ_DLE1
, 251, 5, {0}, "^SDLE=1\r"},
203 {RSP_OK
, 251, 251, -1, 252, -1},
204 {RSP_ZDLE
, 252, 252, 1, 0, 0, {ACT_DLE1
} },
205 {RSP_ERROR
, 250, 299, -1, 0, 0, {ACT_FAILDLE1
} },
206 {EV_TIMEOUT
, 250, 299, -1, 0, 0, {ACT_FAILDLE1
} },
209 {RSP_RING
, -1, -1, -1, -1, -1, {ACT_RING
} },
212 {RSP_INIT
, 0, 0, SEQ_CID
, 301, 5, {0}, "^SGCI?\r"},
213 {RSP_OK
, 301, 301, -1, 302, -1},
214 {RSP_ZGCI
, 302, 302, -1, 0, 0, {ACT_CID
} },
215 {RSP_ERROR
, 301, 349, -1, 0, 0, {ACT_FAILCID
} },
216 {EV_TIMEOUT
, 301, 349, -1, 0, 0, {ACT_FAILCID
} },
219 {RSP_INIT
, 0, 0, SEQ_CIDMODE
, 150, 5, {0}, "^SGCI=1\r"},
220 {RSP_OK
, 150, 150, -1, 0, 0, {ACT_CMODESET
} },
221 {RSP_ERROR
, 150, 150, -1, 0, 0, {ACT_FAILCMODE
} },
222 {EV_TIMEOUT
, 150, 150, -1, 0, 0, {ACT_FAILCMODE
} },
225 {RSP_INIT
, 0, 0, SEQ_UMMODE
, 160, 5, {0}, "Z\r"},
226 {RSP_OK
, 160, 160, -1, 0, 0, {ACT_UMODESET
} },
227 {RSP_ERROR
, 160, 160, -1, 0, 0, {ACT_FAILUMODE
} },
228 {EV_TIMEOUT
, 160, 160, -1, 0, 0, {ACT_FAILUMODE
} },
230 /* abort getting cid */
231 {RSP_INIT
, 0, 0, SEQ_NOCID
, 0, 0, {ACT_ABORTCID
} },
234 {RSP_INIT
, 0, 0, SEQ_SHUTDOWN
, 504, 5, {0}, "Z\r"},
235 {RSP_OK
, 504, 504, -1, 0, 0, {ACT_SDOWN
} },
236 {RSP_ERROR
, 501, 599, -1, 0, 0, {ACT_FAILSDOWN
} },
237 {EV_TIMEOUT
, 501, 599, -1, 0, 0, {ACT_FAILSDOWN
} },
238 {RSP_NODEV
, 501, 599, -1, 0, 0, {ACT_FAKESDOWN
} },
240 {EV_PROC_CIDMODE
, -1, -1, -1, -1, -1, {ACT_PROC_CIDMODE
} },
241 {EV_IF_LOCK
, -1, -1, -1, -1, -1, {ACT_IF_LOCK
} },
242 {EV_IF_VER
, -1, -1, -1, -1, -1, {ACT_IF_VER
} },
243 {EV_START
, -1, -1, -1, -1, -1, {ACT_START
} },
244 {EV_STOP
, -1, -1, -1, -1, -1, {ACT_STOP
} },
245 {EV_SHUTDOWN
, -1, -1, -1, -1, -1, {ACT_SHUTDOWN
} },
248 {RSP_ERROR
, -1, -1, -1, -1, -1, {ACT_ERROR
} },
249 {RSP_ZCAU
, -1, -1, -1, -1, -1, {ACT_ZCAU
} },
250 {RSP_NONE
, -1, -1, -1, -1, -1, {ACT_DEBUG
} },
251 {RSP_ANY
, -1, -1, -1, -1, -1, {ACT_WARN
} },
255 /* 600: start dialing, 650: dial in progress, 800: connection is up, 700: ring,
256 * 400: hup, 750: accepted icall */
257 struct reply_t gigaset_tab_cid
[] =
259 /* resp_code, min_ConState, max_ConState, parameter, new_ConState, timeout,
263 {EV_DIAL
, -1, -1, -1, -1, -1, {ACT_DIAL
} },
264 {RSP_INIT
, 0, 0, SEQ_DIAL
, 601, 5, {ACT_CMD
+AT_BC
} },
265 {RSP_OK
, 601, 601, -1, 603, 5, {ACT_CMD
+AT_PROTO
} },
266 {RSP_OK
, 603, 603, -1, 604, 5, {ACT_CMD
+AT_TYPE
} },
267 {RSP_OK
, 604, 604, -1, 605, 5, {ACT_CMD
+AT_MSN
} },
268 {RSP_NULL
, 605, 605, -1, 606, 5, {ACT_CMD
+AT_CLIP
} },
269 {RSP_OK
, 605, 605, -1, 606, 5, {ACT_CMD
+AT_CLIP
} },
270 {RSP_NULL
, 606, 606, -1, 607, 5, {ACT_CMD
+AT_ISO
} },
271 {RSP_OK
, 606, 606, -1, 607, 5, {ACT_CMD
+AT_ISO
} },
272 {RSP_OK
, 607, 607, -1, 608, 5, {0}, "+VLS=17\r"},
273 {RSP_OK
, 608, 608, -1, 609, -1},
274 {RSP_ZSAU
, 609, 609, ZSAU_PROCEEDING
, 610, 5, {ACT_CMD
+AT_DIAL
} },
275 {RSP_OK
, 610, 610, -1, 650, 0, {ACT_DIALING
} },
277 {RSP_ERROR
, 601, 610, -1, 0, 0, {ACT_ABORTDIAL
} },
278 {EV_TIMEOUT
, 601, 610, -1, 0, 0, {ACT_ABORTDIAL
} },
280 /* optional dialing responses */
281 {EV_BC_OPEN
, 650, 650, -1, 651, -1},
282 {RSP_ZVLS
, 609, 651, 17, -1, -1, {ACT_DEBUG
} },
283 {RSP_ZCTP
, 610, 651, -1, -1, -1, {ACT_DEBUG
} },
284 {RSP_ZCPN
, 610, 651, -1, -1, -1, {ACT_DEBUG
} },
285 {RSP_ZSAU
, 650, 651, ZSAU_CALL_DELIVERED
, -1, -1, {ACT_DEBUG
} },
288 {RSP_ZSAU
, 650, 650, ZSAU_ACTIVE
, 800, -1, {ACT_CONNECT
} },
289 {RSP_ZSAU
, 651, 651, ZSAU_ACTIVE
, 800, -1, {ACT_CONNECT
,
291 {RSP_ZSAU
, 750, 750, ZSAU_ACTIVE
, 800, -1, {ACT_CONNECT
} },
292 {RSP_ZSAU
, 751, 751, ZSAU_ACTIVE
, 800, -1, {ACT_CONNECT
,
294 {EV_BC_OPEN
, 800, 800, -1, 800, -1, {ACT_NOTIFY_BC_UP
} },
297 {RSP_ZSAU
, 650, 651, ZSAU_DISCONNECT_IND
, 0, 0, {ACT_REMOTEREJECT
} },
298 {RSP_ZSAU
, 750, 751, ZSAU_DISCONNECT_IND
, 0, 0, {ACT_REMOTEHUP
} },
299 {RSP_ZSAU
, 800, 800, ZSAU_DISCONNECT_IND
, 0, 0, {ACT_REMOTEHUP
} },
302 {EV_HUP
, -1, -1, -1, -1, -1, {ACT_HUP
} },
303 {RSP_INIT
, -1, -1, SEQ_HUP
, 401, 5, {0}, "+VLS=0\r"},
304 {RSP_OK
, 401, 401, -1, 402, 5},
305 {RSP_ZVLS
, 402, 402, 0, 403, 5},
306 {RSP_ZSAU
, 403, 403, ZSAU_DISCONNECT_REQ
, -1, -1, {ACT_DEBUG
} },
307 {RSP_ZSAU
, 403, 403, ZSAU_NULL
, 0, 0, {ACT_DISCONNECT
} },
308 {RSP_NODEV
, 401, 403, -1, 0, 0, {ACT_FAKEHUP
} },
309 {RSP_ERROR
, 401, 401, -1, 0, 0, {ACT_ABORTHUP
} },
310 {EV_TIMEOUT
, 401, 403, -1, 0, 0, {ACT_ABORTHUP
} },
312 {EV_BC_CLOSED
, 0, 0, -1, 0, -1, {ACT_NOTIFY_BC_DOWN
} },
315 {RSP_ZBC
, 700, 700, -1, -1, -1, {0} },
316 {RSP_ZHLC
, 700, 700, -1, -1, -1, {0} },
317 {RSP_NMBR
, 700, 700, -1, -1, -1, {0} },
318 {RSP_ZCPN
, 700, 700, -1, -1, -1, {0} },
319 {RSP_ZCTP
, 700, 700, -1, -1, -1, {0} },
320 {EV_TIMEOUT
, 700, 700, -1, 720, 720, {ACT_ICALL
} },
321 {EV_BC_CLOSED
, 720, 720, -1, 0, -1, {ACT_NOTIFY_BC_DOWN
} },
324 {EV_ACCEPT
, -1, -1, -1, -1, -1, {ACT_ACCEPT
} },
325 {RSP_INIT
, 720, 720, SEQ_ACCEPT
, 721, 5, {ACT_CMD
+AT_PROTO
} },
326 {RSP_OK
, 721, 721, -1, 722, 5, {ACT_CMD
+AT_ISO
} },
327 {RSP_OK
, 722, 722, -1, 723, 5, {0}, "+VLS=17\r"},
328 {RSP_OK
, 723, 723, -1, 724, 5, {0} },
329 {RSP_ZVLS
, 724, 724, 17, 750, 50, {ACT_ACCEPTED
} },
330 {RSP_ERROR
, 721, 729, -1, 0, 0, {ACT_ABORTACCEPT
} },
331 {EV_TIMEOUT
, 721, 729, -1, 0, 0, {ACT_ABORTACCEPT
} },
332 {RSP_ZSAU
, 700, 729, ZSAU_NULL
, 0, 0, {ACT_ABORTACCEPT
} },
333 {RSP_ZSAU
, 700, 729, ZSAU_ACTIVE
, 0, 0, {ACT_ABORTACCEPT
} },
334 {RSP_ZSAU
, 700, 729, ZSAU_DISCONNECT_IND
, 0, 0, {ACT_ABORTACCEPT
} },
336 {EV_BC_OPEN
, 750, 750, -1, 751, -1},
337 {EV_TIMEOUT
, 750, 751, -1, 0, 0, {ACT_CONNTIMEOUT
} },
339 /* B channel closed (general case) */
340 {EV_BC_CLOSED
, -1, -1, -1, -1, -1, {ACT_NOTIFY_BC_DOWN
} },
343 {RSP_ZCON
, -1, -1, -1, -1, -1, {ACT_DEBUG
} },
344 {RSP_ZCAU
, -1, -1, -1, -1, -1, {ACT_ZCAU
} },
345 {RSP_NONE
, -1, -1, -1, -1, -1, {ACT_DEBUG
} },
346 {RSP_ANY
, -1, -1, -1, -1, -1, {ACT_WARN
} },
351 static const struct resp_type_t
{
352 unsigned char *response
;
357 {"OK", RSP_OK
, RT_NOTHING
},
358 {"ERROR", RSP_ERROR
, RT_NOTHING
},
359 {"ZSAU", RSP_ZSAU
, RT_ZSAU
},
360 {"ZCAU", RSP_ZCAU
, RT_ZCAU
},
361 {"RING", RSP_RING
, RT_RING
},
362 {"ZGCI", RSP_ZGCI
, RT_NUMBER
},
363 {"ZVLS", RSP_ZVLS
, RT_NUMBER
},
364 {"ZCTP", RSP_ZCTP
, RT_NUMBER
},
365 {"ZDLE", RSP_ZDLE
, RT_NUMBER
},
366 {"ZHLC", RSP_ZHLC
, RT_STRING
},
367 {"ZBC", RSP_ZBC
, RT_STRING
},
368 {"NMBR", RSP_NMBR
, RT_STRING
},
369 {"ZCPN", RSP_ZCPN
, RT_STRING
},
370 {"ZCON", RSP_ZCON
, RT_STRING
},
374 static const struct zsau_resp_t
{
379 {"OUTGOING_CALL_PROCEEDING", ZSAU_OUTGOING_CALL_PROCEEDING
},
380 {"CALL_DELIVERED", ZSAU_CALL_DELIVERED
},
381 {"ACTIVE", ZSAU_ACTIVE
},
382 {"DISCONNECT_IND", ZSAU_DISCONNECT_IND
},
384 {"DISCONNECT_REQ", ZSAU_DISCONNECT_REQ
},
388 /* retrieve CID from parsed response
389 * returns 0 if no CID, -1 if invalid CID, or CID value 1..65535
391 static int cid_of_response(char *s
)
397 return 0; /* no CID separator */
398 rc
= kstrtoint(s
, 10, &cid
);
400 return 0; /* CID not numeric */
401 if (cid
< 1 || cid
> 65535)
402 return -1; /* CID out of range */
407 * gigaset_handle_modem_response() - process received modem response
408 * @cs: device descriptor structure.
410 * Called by asyncdata/isocdata if a block of data received from the
411 * device must be processed as a modem command response. The data is
412 * already in the cs structure.
414 void gigaset_handle_modem_response(struct cardstate
*cs
)
416 unsigned char *argv
[MAX_REC_PARAMS
+ 1];
419 const struct resp_type_t
*rt
;
420 const struct zsau_resp_t
*zr
;
423 unsigned next
, tail
, head
;
424 struct event_t
*event
;
434 /* ignore additional LFs/CRs (M10x config mode or cx100) */
435 gig_dbg(DEBUG_MCMD
, "skipped EOL [%02X]", cs
->respdata
[len
]);
438 cs
->respdata
[len
] = 0;
439 argv
[0] = cs
->respdata
;
441 if (cs
->at_state
.getstring
) {
442 /* getstring only allowed without cid at the moment */
443 cs
->at_state
.getstring
= 0;
448 for (i
= 0; i
< len
; i
++)
449 switch (cs
->respdata
[i
]) {
453 if (params
> MAX_REC_PARAMS
) {
455 "too many parameters in response\n");
456 /* need last parameter (might be CID) */
459 argv
[params
++] = cs
->respdata
+ i
+ 1;
463 cid
= params
> 1 ? cid_of_response(argv
[params
-1]) : 0;
465 gigaset_add_event(cs
, &cs
->at_state
, RSP_INVAL
,
470 for (j
= 1; j
< params
; ++j
)
473 gig_dbg(DEBUG_EVENT
, "CMD received: %s", argv
[0]);
476 gig_dbg(DEBUG_EVENT
, "CID: %s", argv
[params
]);
478 gig_dbg(DEBUG_EVENT
, "available params: %d", params
- 1);
479 for (j
= 1; j
< params
; j
++)
480 gig_dbg(DEBUG_EVENT
, "param %d: %s", j
, argv
[j
]);
483 spin_lock_irqsave(&cs
->ev_lock
, flags
);
489 while (curarg
< params
) {
490 next
= (tail
+ 1) % MAX_EVENTS
;
491 if (unlikely(next
== head
)) {
492 dev_err(cs
->dev
, "event queue full\n");
496 event
= cs
->events
+ tail
;
497 event
->at_state
= NULL
;
504 resp_code
= RSP_STRING
;
505 param_type
= RT_STRING
;
507 for (rt
= resp_type
; rt
->response
; ++rt
)
508 if (!strcmp(argv
[curarg
], rt
->response
))
512 event
->type
= RSP_NONE
;
514 "unknown modem response: '%s'\n",
519 resp_code
= rt
->resp_code
;
520 param_type
= rt
->type
;
524 event
->type
= resp_code
;
526 switch (param_type
) {
532 "received RING without CID!\n");
533 event
->type
= RSP_INVAL
;
537 event
->parameter
= cid
;
542 if (curarg
>= params
) {
543 event
->parameter
= ZSAU_NONE
;
546 for (zr
= zsau_resp
; zr
->str
; ++zr
)
547 if (!strcmp(argv
[curarg
], zr
->str
))
549 event
->parameter
= zr
->code
;
552 "%s: unknown parameter %s after ZSAU\n",
553 __func__
, argv
[curarg
]);
557 if (curarg
< params
) {
558 event
->ptr
= kstrdup(argv
[curarg
], GFP_ATOMIC
);
560 dev_err(cs
->dev
, "out of memory\n");
563 gig_dbg(DEBUG_EVENT
, "string==%s",
564 event
->ptr
? (char *) event
->ptr
: "NULL");
567 event
->parameter
= -1;
568 if (curarg
+ 1 < params
) {
571 i
= kstrtou8(argv
[curarg
++], 16, &type
);
572 j
= kstrtou8(argv
[curarg
++], 16, &value
);
573 if (i
== 0 && j
== 0)
574 event
->parameter
= (type
<< 8) | value
;
579 if (curarg
>= params
||
580 kstrtoint(argv
[curarg
++], 10, &event
->parameter
))
581 event
->parameter
= -1;
582 gig_dbg(DEBUG_EVENT
, "parameter==%d", event
->parameter
);
586 if (resp_code
== RSP_ZDLE
)
587 cs
->dle
= event
->parameter
;
594 spin_unlock_irqrestore(&cs
->ev_lock
, flags
);
596 if (curarg
!= params
)
598 "invalid number of processed parameters: %d/%d",
601 EXPORT_SYMBOL_GPL(gigaset_handle_modem_response
);
604 * process closing of connection associated with given AT state structure
606 static void disconnect(struct at_state_t
**at_state_p
)
609 struct bc_state
*bcs
= (*at_state_p
)->bcs
;
610 struct cardstate
*cs
= (*at_state_p
)->cs
;
612 spin_lock_irqsave(&cs
->lock
, flags
);
613 ++(*at_state_p
)->seq_index
;
615 /* revert to selected idle mode */
617 cs
->at_state
.pending_commands
|= PC_UMMODE
;
618 gig_dbg(DEBUG_EVENT
, "Scheduling PC_UMMODE");
619 cs
->commands_pending
= 1;
621 spin_unlock_irqrestore(&cs
->lock
, flags
);
624 /* B channel assigned: invoke hardware specific handler */
625 cs
->ops
->close_bchannel(bcs
);
627 if (bcs
->chstate
& (CHS_D_UP
| CHS_NOTIFY_LL
)) {
628 bcs
->chstate
&= ~(CHS_D_UP
| CHS_NOTIFY_LL
);
629 gigaset_isdn_hupD(bcs
);
632 /* no B channel assigned: just deallocate */
633 spin_lock_irqsave(&cs
->lock
, flags
);
634 list_del(&(*at_state_p
)->list
);
637 spin_unlock_irqrestore(&cs
->lock
, flags
);
642 * get a free AT state structure: either one of those associated with the
643 * B channels of the Gigaset device, or if none of those is available,
644 * a newly allocated one with bcs=NULL
645 * The structure should be freed by calling disconnect() after use.
647 static inline struct at_state_t
*get_free_channel(struct cardstate
*cs
,
649 /* cids: >0: siemens-cid
651 -1: no cid assigned yet
656 struct at_state_t
*ret
;
658 for (i
= 0; i
< cs
->channels
; ++i
)
659 if (gigaset_get_channel(cs
->bcs
+ i
)) {
660 ret
= &cs
->bcs
[i
].at_state
;
665 spin_lock_irqsave(&cs
->lock
, flags
);
666 ret
= kmalloc(sizeof(struct at_state_t
), GFP_ATOMIC
);
668 gigaset_at_init(ret
, NULL
, cs
, cid
);
669 list_add(&ret
->list
, &cs
->temp_at_states
);
671 spin_unlock_irqrestore(&cs
->lock
, flags
);
675 static void init_failed(struct cardstate
*cs
, int mode
)
678 struct at_state_t
*at_state
;
680 cs
->at_state
.pending_commands
&= ~PC_INIT
;
682 cs
->mstate
= MS_UNINITIALIZED
;
683 gigaset_free_channels(cs
);
684 for (i
= 0; i
< cs
->channels
; ++i
) {
685 at_state
= &cs
->bcs
[i
].at_state
;
686 if (at_state
->pending_commands
& PC_CID
) {
687 at_state
->pending_commands
&= ~PC_CID
;
688 at_state
->pending_commands
|= PC_NOCID
;
689 cs
->commands_pending
= 1;
694 static void schedule_init(struct cardstate
*cs
, int state
)
696 if (cs
->at_state
.pending_commands
& PC_INIT
) {
697 gig_dbg(DEBUG_EVENT
, "not scheduling PC_INIT again");
701 cs
->mode
= M_UNKNOWN
;
702 gigaset_block_channels(cs
);
703 cs
->at_state
.pending_commands
|= PC_INIT
;
704 gig_dbg(DEBUG_EVENT
, "Scheduling PC_INIT");
705 cs
->commands_pending
= 1;
708 /* Add "AT" to a command, add the cid, dle encode it, send the result to the
710 static void send_command(struct cardstate
*cs
, const char *cmd
, int cid
,
711 int dle
, gfp_t kmallocflags
)
716 buflen
= strlen(cmd
) + 12; /* DLE ( A T 1 2 3 4 5 <cmd> DLE ) \0 */
717 cb
= kmalloc(sizeof(struct cmdbuf_t
) + buflen
, kmallocflags
);
719 dev_err(cs
->dev
, "%s: out of memory\n", __func__
);
722 if (cid
> 0 && cid
<= 65535)
723 cb
->len
= snprintf(cb
->buf
, buflen
,
724 dle
? "\020(AT%d%s\020)" : "AT%d%s",
727 cb
->len
= snprintf(cb
->buf
, buflen
,
728 dle
? "\020(AT%s\020)" : "AT%s",
732 cb
->wake_tasklet
= NULL
;
733 cs
->ops
->write_cmd(cs
, cb
);
736 static struct at_state_t
*at_state_from_cid(struct cardstate
*cs
, int cid
)
738 struct at_state_t
*at_state
;
743 return &cs
->at_state
;
745 for (i
= 0; i
< cs
->channels
; ++i
)
746 if (cid
== cs
->bcs
[i
].at_state
.cid
)
747 return &cs
->bcs
[i
].at_state
;
749 spin_lock_irqsave(&cs
->lock
, flags
);
751 list_for_each_entry(at_state
, &cs
->temp_at_states
, list
)
752 if (cid
== at_state
->cid
) {
753 spin_unlock_irqrestore(&cs
->lock
, flags
);
757 spin_unlock_irqrestore(&cs
->lock
, flags
);
762 static void bchannel_down(struct bc_state
*bcs
)
764 if (bcs
->chstate
& CHS_B_UP
) {
765 bcs
->chstate
&= ~CHS_B_UP
;
766 gigaset_isdn_hupB(bcs
);
769 if (bcs
->chstate
& (CHS_D_UP
| CHS_NOTIFY_LL
)) {
770 bcs
->chstate
&= ~(CHS_D_UP
| CHS_NOTIFY_LL
);
771 gigaset_isdn_hupD(bcs
);
774 gigaset_free_channel(bcs
);
776 gigaset_bcs_reinit(bcs
);
779 static void bchannel_up(struct bc_state
*bcs
)
781 if (bcs
->chstate
& CHS_B_UP
) {
782 dev_notice(bcs
->cs
->dev
, "%s: B channel already up\n",
787 bcs
->chstate
|= CHS_B_UP
;
788 gigaset_isdn_connB(bcs
);
791 static void start_dial(struct at_state_t
*at_state
, void *data
,
794 struct bc_state
*bcs
= at_state
->bcs
;
795 struct cardstate
*cs
= at_state
->cs
;
796 char **commands
= data
;
800 bcs
->chstate
|= CHS_NOTIFY_LL
;
802 spin_lock_irqsave(&cs
->lock
, flags
);
803 if (at_state
->seq_index
!= seq_index
) {
804 spin_unlock_irqrestore(&cs
->lock
, flags
);
807 spin_unlock_irqrestore(&cs
->lock
, flags
);
809 for (i
= 0; i
< AT_NUM
; ++i
) {
810 kfree(bcs
->commands
[i
]);
811 bcs
->commands
[i
] = commands
[i
];
814 at_state
->pending_commands
|= PC_CID
;
815 gig_dbg(DEBUG_EVENT
, "Scheduling PC_CID");
816 cs
->commands_pending
= 1;
820 for (i
= 0; i
< AT_NUM
; ++i
) {
824 at_state
->pending_commands
|= PC_NOCID
;
825 gig_dbg(DEBUG_EVENT
, "Scheduling PC_NOCID");
826 cs
->commands_pending
= 1;
830 static void start_accept(struct at_state_t
*at_state
)
832 struct cardstate
*cs
= at_state
->cs
;
833 struct bc_state
*bcs
= at_state
->bcs
;
836 for (i
= 0; i
< AT_NUM
; ++i
) {
837 kfree(bcs
->commands
[i
]);
838 bcs
->commands
[i
] = NULL
;
841 bcs
->commands
[AT_PROTO
] = kmalloc(9, GFP_ATOMIC
);
842 bcs
->commands
[AT_ISO
] = kmalloc(9, GFP_ATOMIC
);
843 if (!bcs
->commands
[AT_PROTO
] || !bcs
->commands
[AT_ISO
]) {
844 dev_err(at_state
->cs
->dev
, "out of memory\n");
846 at_state
->pending_commands
|= PC_HUP
;
847 gig_dbg(DEBUG_EVENT
, "Scheduling PC_HUP");
848 cs
->commands_pending
= 1;
852 snprintf(bcs
->commands
[AT_PROTO
], 9, "^SBPR=%u\r", bcs
->proto2
);
853 snprintf(bcs
->commands
[AT_ISO
], 9, "^SISO=%u\r", bcs
->channel
+ 1);
855 at_state
->pending_commands
|= PC_ACCEPT
;
856 gig_dbg(DEBUG_EVENT
, "Scheduling PC_ACCEPT");
857 cs
->commands_pending
= 1;
860 static void do_start(struct cardstate
*cs
)
862 gigaset_free_channels(cs
);
864 if (cs
->mstate
!= MS_LOCKED
)
865 schedule_init(cs
, MS_INIT
);
868 gigaset_isdn_start(cs
);
871 wake_up(&cs
->waitqueue
);
874 static void finish_shutdown(struct cardstate
*cs
)
876 if (cs
->mstate
!= MS_LOCKED
) {
877 cs
->mstate
= MS_UNINITIALIZED
;
878 cs
->mode
= M_UNKNOWN
;
881 /* Tell the LL that the device is not available .. */
884 gigaset_isdn_stop(cs
);
887 /* The rest is done by cleanup_cs () in user mode. */
889 cs
->cmd_result
= -ENODEV
;
891 wake_up(&cs
->waitqueue
);
894 static void do_shutdown(struct cardstate
*cs
)
896 gigaset_block_channels(cs
);
898 if (cs
->mstate
== MS_READY
) {
899 cs
->mstate
= MS_SHUTDOWN
;
900 cs
->at_state
.pending_commands
|= PC_SHUTDOWN
;
901 gig_dbg(DEBUG_EVENT
, "Scheduling PC_SHUTDOWN");
902 cs
->commands_pending
= 1;
907 static void do_stop(struct cardstate
*cs
)
911 spin_lock_irqsave(&cs
->lock
, flags
);
913 spin_unlock_irqrestore(&cs
->lock
, flags
);
918 /* Entering cid mode or getting a cid failed:
919 * try to initialize the device and try again.
921 * channel >= 0: getting cid for the channel failed
922 * channel < 0: entering cid mode failed
924 * returns 0 on failure
926 static int reinit_and_retry(struct cardstate
*cs
, int channel
)
930 if (--cs
->retry_count
<= 0)
933 for (i
= 0; i
< cs
->channels
; ++i
)
934 if (cs
->bcs
[i
].at_state
.cid
> 0)
939 "Could not enter cid mode. Reinit device and try again.\n");
942 "Could not get a call id. Reinit device and try again.\n");
943 cs
->bcs
[channel
].at_state
.pending_commands
|= PC_CID
;
945 schedule_init(cs
, MS_INIT
);
949 static int at_state_invalid(struct cardstate
*cs
,
950 struct at_state_t
*test_ptr
)
954 struct at_state_t
*at_state
;
957 spin_lock_irqsave(&cs
->lock
, flags
);
959 if (test_ptr
== &cs
->at_state
)
962 list_for_each_entry(at_state
, &cs
->temp_at_states
, list
)
963 if (at_state
== test_ptr
)
966 for (channel
= 0; channel
< cs
->channels
; ++channel
)
967 if (&cs
->bcs
[channel
].at_state
== test_ptr
)
972 spin_unlock_irqrestore(&cs
->lock
, flags
);
976 static void handle_icall(struct cardstate
*cs
, struct bc_state
*bcs
,
977 struct at_state_t
**p_at_state
)
980 struct at_state_t
*at_state
= *p_at_state
;
982 retval
= gigaset_isdn_icall(at_state
);
987 dev_err(cs
->dev
, "internal error: disposition=%d\n", retval
);
988 /* --v-- fall through --v-- */
992 * Device doc says that would reject the call.
993 * In fact it doesn't.
995 at_state
->pending_commands
|= PC_HUP
;
996 cs
->commands_pending
= 1;
1001 static int do_lock(struct cardstate
*cs
)
1006 switch (cs
->mstate
) {
1007 case MS_UNINITIALIZED
:
1009 if (cs
->cur_at_seq
|| !list_empty(&cs
->temp_at_states
) ||
1010 cs
->at_state
.pending_commands
)
1013 for (i
= 0; i
< cs
->channels
; ++i
)
1014 if (cs
->bcs
[i
].at_state
.pending_commands
)
1017 if (!gigaset_get_channels(cs
))
1028 cs
->mstate
= MS_LOCKED
;
1029 cs
->mode
= M_UNKNOWN
;
1034 static int do_unlock(struct cardstate
*cs
)
1036 if (cs
->mstate
!= MS_LOCKED
)
1039 cs
->mstate
= MS_UNINITIALIZED
;
1040 cs
->mode
= M_UNKNOWN
;
1041 gigaset_free_channels(cs
);
1043 schedule_init(cs
, MS_INIT
);
1048 static void do_action(int action
, struct cardstate
*cs
,
1049 struct bc_state
*bcs
,
1050 struct at_state_t
**p_at_state
, char **pp_command
,
1051 int *p_genresp
, int *p_resp_code
,
1054 struct at_state_t
*at_state
= *p_at_state
;
1055 struct at_state_t
*at_state2
;
1056 unsigned long flags
;
1060 unsigned char *s
, *e
;
1068 at_state
->waiting
= 1;
1071 cs
->at_state
.pending_commands
&= ~PC_INIT
;
1072 cs
->cur_at_seq
= SEQ_NONE
;
1073 cs
->mode
= M_UNIMODEM
;
1074 spin_lock_irqsave(&cs
->lock
, flags
);
1076 spin_unlock_irqrestore(&cs
->lock
, flags
);
1077 gigaset_free_channels(cs
);
1078 cs
->mstate
= MS_READY
;
1081 spin_unlock_irqrestore(&cs
->lock
, flags
);
1082 cs
->at_state
.pending_commands
|= PC_CIDMODE
;
1083 gig_dbg(DEBUG_EVENT
, "Scheduling PC_CIDMODE");
1084 cs
->commands_pending
= 1;
1087 dev_warn(cs
->dev
, "Could not initialize the device.\n");
1089 init_failed(cs
, M_UNKNOWN
);
1090 cs
->cur_at_seq
= SEQ_NONE
;
1092 case ACT_CONFIGMODE
:
1093 init_failed(cs
, M_CONFIG
);
1094 cs
->cur_at_seq
= SEQ_NONE
;
1098 /* cs->inbuf[0].inputstate |= INS_command | INS_DLE_command; */
1099 cs
->inbuf
[0].inputstate
&=
1100 ~(INS_command
| INS_DLE_command
);
1104 cs
->inbuf
[0].inputstate
=
1105 (cs
->inbuf
[0].inputstate
& ~INS_DLE_command
)
1109 if (cs
->mstate
== MS_INIT
|| cs
->mstate
== MS_RECOVER
) {
1110 gigaset_free_channels(cs
);
1111 cs
->mstate
= MS_READY
;
1114 cs
->cur_at_seq
= SEQ_NONE
;
1117 cs
->mode
= M_UNIMODEM
;
1118 cs
->cur_at_seq
= SEQ_NONE
;
1121 cs
->cur_at_seq
= SEQ_NONE
;
1122 if (cs
->mstate
== MS_INIT
|| cs
->mstate
== MS_RECOVER
) {
1123 init_failed(cs
, M_UNKNOWN
);
1126 if (!reinit_and_retry(cs
, -1))
1127 schedule_init(cs
, MS_RECOVER
);
1130 cs
->cur_at_seq
= SEQ_NONE
;
1131 schedule_init(cs
, MS_RECOVER
);
1134 /* send "+++" (hangup in unimodem mode) */
1135 if (cs
->connected
) {
1136 struct cmdbuf_t
*cb
;
1138 cb
= kmalloc(sizeof(struct cmdbuf_t
) + 3, GFP_ATOMIC
);
1140 dev_err(cs
->dev
, "%s: out of memory\n",
1144 memcpy(cb
->buf
, "+++", 3);
1148 cb
->wake_tasklet
= NULL
;
1149 cs
->ops
->write_cmd(cs
, cb
);
1153 /* get fresh AT state structure for new CID */
1154 at_state2
= get_free_channel(cs
, ev
->parameter
);
1157 "RING ignored: could not allocate channel structure\n");
1161 /* initialize AT state structure
1162 * note that bcs may be NULL if no B channel is free
1164 at_state2
->ConState
= 700;
1165 for (i
= 0; i
< STR_NUM
; ++i
) {
1166 kfree(at_state2
->str_var
[i
]);
1167 at_state2
->str_var
[i
] = NULL
;
1169 at_state2
->int_var
[VAR_ZCTP
] = -1;
1171 spin_lock_irqsave(&cs
->lock
, flags
);
1172 at_state2
->timer_expires
= RING_TIMEOUT
;
1173 at_state2
->timer_active
= 1;
1174 spin_unlock_irqrestore(&cs
->lock
, flags
);
1177 handle_icall(cs
, bcs
, p_at_state
);
1180 dev_warn(cs
->dev
, "Could not shut down the device.\n");
1184 cs
->cur_at_seq
= SEQ_NONE
;
1185 finish_shutdown(cs
);
1188 if (cs
->onechannel
) {
1189 at_state
->pending_commands
|= PC_DLE1
;
1190 cs
->commands_pending
= 1;
1193 bcs
->chstate
|= CHS_D_UP
;
1194 gigaset_isdn_connD(bcs
);
1195 cs
->ops
->init_bchannel(bcs
);
1198 cs
->cur_at_seq
= SEQ_NONE
;
1199 bcs
= cs
->bcs
+ cs
->curchannel
;
1201 bcs
->chstate
|= CHS_D_UP
;
1202 gigaset_isdn_connD(bcs
);
1203 cs
->ops
->init_bchannel(bcs
);
1206 at_state
->int_var
[VAR_ZSAU
] = ZSAU_NULL
;
1208 case ACT_DISCONNECT
:
1209 cs
->cur_at_seq
= SEQ_NONE
;
1211 if (bcs
&& cs
->onechannel
&& cs
->dle
) {
1212 /* Check for other open channels not needed:
1213 * DLE only used for M10x with one B channel.
1215 at_state
->pending_commands
|= PC_DLE0
;
1216 cs
->commands_pending
= 1;
1218 disconnect(p_at_state
);
1221 at_state
->int_var
[VAR_ZDLE
] = 0;
1225 cs
->cur_at_seq
= SEQ_NONE
;
1226 at_state2
= &cs
->bcs
[cs
->curchannel
].at_state
;
1227 disconnect(&at_state2
);
1230 cs
->cur_at_seq
= SEQ_NONE
;
1231 dev_warn(cs
->dev
, "Could not hang up.\n");
1233 if (bcs
&& cs
->onechannel
)
1234 at_state
->pending_commands
|= PC_DLE0
;
1236 disconnect(p_at_state
);
1237 schedule_init(cs
, MS_RECOVER
);
1240 cs
->cur_at_seq
= SEQ_NONE
;
1241 dev_warn(cs
->dev
, "Could not leave DLE mode.\n");
1242 at_state2
= &cs
->bcs
[cs
->curchannel
].at_state
;
1243 disconnect(&at_state2
);
1244 schedule_init(cs
, MS_RECOVER
);
1247 cs
->cur_at_seq
= SEQ_NONE
;
1249 "Could not enter DLE mode. Trying to hang up.\n");
1250 channel
= cs
->curchannel
;
1251 cs
->bcs
[channel
].at_state
.pending_commands
|= PC_HUP
;
1252 cs
->commands_pending
= 1;
1255 case ACT_CID
: /* got cid; start dialing */
1256 cs
->cur_at_seq
= SEQ_NONE
;
1257 channel
= cs
->curchannel
;
1258 if (ev
->parameter
> 0 && ev
->parameter
<= 65535) {
1259 cs
->bcs
[channel
].at_state
.cid
= ev
->parameter
;
1260 cs
->bcs
[channel
].at_state
.pending_commands
|=
1262 cs
->commands_pending
= 1;
1267 cs
->cur_at_seq
= SEQ_NONE
;
1268 channel
= cs
->curchannel
;
1269 if (!reinit_and_retry(cs
, channel
)) {
1271 "Could not get a call ID. Cannot dial.\n");
1272 at_state2
= &cs
->bcs
[channel
].at_state
;
1273 disconnect(&at_state2
);
1277 cs
->cur_at_seq
= SEQ_NONE
;
1278 at_state2
= &cs
->bcs
[cs
->curchannel
].at_state
;
1279 disconnect(&at_state2
);
1284 cs
->cur_at_seq
= SEQ_NONE
;
1287 case ACT_ABORTACCEPT
: /* hangup/error/timeout during ICALL procssng */
1288 disconnect(p_at_state
);
1291 case ACT_ABORTDIAL
: /* error/timeout during dial preparation */
1292 cs
->cur_at_seq
= SEQ_NONE
;
1293 at_state
->pending_commands
|= PC_HUP
;
1294 cs
->commands_pending
= 1;
1297 case ACT_REMOTEREJECT
: /* DISCONNECT_IND after dialling */
1298 case ACT_CONNTIMEOUT
: /* timeout waiting for ZSAU=ACTIVE */
1299 case ACT_REMOTEHUP
: /* DISCONNECT_IND with established connection */
1300 at_state
->pending_commands
|= PC_HUP
;
1301 cs
->commands_pending
= 1;
1303 case ACT_GETSTRING
: /* warning: RING, ZDLE, ...
1304 are not handled properly anymore */
1305 at_state
->getstring
= 1;
1310 *p_resp_code
= RSP_ERROR
;
1315 if (!strcmp(s
, "OK")) {
1317 *p_resp_code
= RSP_ERROR
;
1321 for (i
= 0; i
< 4; ++i
) {
1322 val
= simple_strtoul(s
, (char **) &e
, 10);
1323 if (val
> INT_MAX
|| e
== s
)
1328 } else if (*e
!= '.')
1336 *p_resp_code
= RSP_ERROR
;
1339 /*at_state->getstring = 1;*/
1343 if (cs
->gotfwver
== 0) {
1345 gig_dbg(DEBUG_EVENT
,
1346 "firmware version %02d.%03d.%02d.%02d",
1347 cs
->fwver
[0], cs
->fwver
[1],
1348 cs
->fwver
[2], cs
->fwver
[3]);
1354 dev_err(cs
->dev
, "could not read firmware version.\n");
1357 gig_dbg(DEBUG_ANY
, "%s: ERROR response in ConState %d",
1358 __func__
, at_state
->ConState
);
1359 cs
->cur_at_seq
= SEQ_NONE
;
1362 gig_dbg(DEBUG_ANY
, "%s: resp_code %d in ConState %d",
1363 __func__
, ev
->type
, at_state
->ConState
);
1366 dev_warn(cs
->dev
, "%s: resp_code %d in ConState %d!\n",
1367 __func__
, ev
->type
, at_state
->ConState
);
1370 dev_warn(cs
->dev
, "cause code %04x in connection state %d.\n",
1371 ev
->parameter
, at_state
->ConState
);
1374 /* events from the LL */
1376 start_dial(at_state
, ev
->ptr
, ev
->parameter
);
1379 start_accept(at_state
);
1382 at_state
->pending_commands
|= PC_HUP
;
1383 gig_dbg(DEBUG_EVENT
, "Scheduling PC_HUP");
1384 cs
->commands_pending
= 1;
1387 /* hotplug events */
1395 /* events from the interface */
1397 cs
->cmd_result
= ev
->parameter
? do_lock(cs
) : do_unlock(cs
);
1399 wake_up(&cs
->waitqueue
);
1402 if (ev
->parameter
!= 0)
1403 cs
->cmd_result
= -EINVAL
;
1404 else if (cs
->gotfwver
!= 1) {
1405 cs
->cmd_result
= -ENOENT
;
1407 memcpy(ev
->arg
, cs
->fwver
, sizeof cs
->fwver
);
1411 wake_up(&cs
->waitqueue
);
1414 /* events from the proc file system */
1415 case ACT_PROC_CIDMODE
:
1416 spin_lock_irqsave(&cs
->lock
, flags
);
1417 if (ev
->parameter
!= cs
->cidmode
) {
1418 cs
->cidmode
= ev
->parameter
;
1419 if (ev
->parameter
) {
1420 cs
->at_state
.pending_commands
|= PC_CIDMODE
;
1421 gig_dbg(DEBUG_EVENT
, "Scheduling PC_CIDMODE");
1423 cs
->at_state
.pending_commands
|= PC_UMMODE
;
1424 gig_dbg(DEBUG_EVENT
, "Scheduling PC_UMMODE");
1426 cs
->commands_pending
= 1;
1428 spin_unlock_irqrestore(&cs
->lock
, flags
);
1430 wake_up(&cs
->waitqueue
);
1433 /* events from the hardware drivers */
1434 case ACT_NOTIFY_BC_DOWN
:
1437 case ACT_NOTIFY_BC_UP
:
1446 if (action
>= ACT_CMD
&& action
< ACT_CMD
+ AT_NUM
) {
1447 *pp_command
= at_state
->bcs
->commands
[action
- ACT_CMD
];
1450 *p_resp_code
= RSP_NULL
;
1453 dev_err(cs
->dev
, "%s: action==%d!\n", __func__
, action
);
1457 /* State machine to do the calling and hangup procedure */
1458 static void process_event(struct cardstate
*cs
, struct event_t
*ev
)
1460 struct bc_state
*bcs
;
1461 char *p_command
= NULL
;
1462 struct reply_t
*rep
;
1465 int resp_code
= RSP_ERROR
;
1467 struct at_state_t
*at_state
;
1470 unsigned long flags
;
1473 at_state
= at_state_from_cid(cs
, ev
->cid
);
1475 gig_dbg(DEBUG_EVENT
, "event %d for invalid cid %d",
1477 gigaset_add_event(cs
, &cs
->at_state
, RSP_WRONG_CID
,
1482 at_state
= ev
->at_state
;
1483 if (at_state_invalid(cs
, at_state
)) {
1484 gig_dbg(DEBUG_EVENT
, "event for invalid at_state %p",
1490 gig_dbg(DEBUG_EVENT
, "connection state %d, event %d",
1491 at_state
->ConState
, ev
->type
);
1493 bcs
= at_state
->bcs
;
1494 sendcid
= at_state
->cid
;
1496 /* Setting the pointer to the dial array */
1497 rep
= at_state
->replystruct
;
1499 spin_lock_irqsave(&cs
->lock
, flags
);
1500 if (ev
->type
== EV_TIMEOUT
) {
1501 if (ev
->parameter
!= at_state
->timer_index
1502 || !at_state
->timer_active
) {
1503 ev
->type
= RSP_NONE
; /* old timeout */
1504 gig_dbg(DEBUG_EVENT
, "old timeout");
1505 } else if (!at_state
->waiting
)
1506 gig_dbg(DEBUG_EVENT
, "timeout occurred");
1508 gig_dbg(DEBUG_EVENT
, "stopped waiting");
1510 spin_unlock_irqrestore(&cs
->lock
, flags
);
1512 /* if the response belongs to a variable in at_state->int_var[VAR_XXXX]
1513 or at_state->str_var[STR_XXXX], set it */
1514 if (ev
->type
>= RSP_VAR
&& ev
->type
< RSP_VAR
+ VAR_NUM
) {
1515 index
= ev
->type
- RSP_VAR
;
1516 at_state
->int_var
[index
] = ev
->parameter
;
1517 } else if (ev
->type
>= RSP_STR
&& ev
->type
< RSP_STR
+ STR_NUM
) {
1518 index
= ev
->type
- RSP_STR
;
1519 kfree(at_state
->str_var
[index
]);
1520 at_state
->str_var
[index
] = ev
->ptr
;
1521 ev
->ptr
= NULL
; /* prevent process_events() from
1525 if (ev
->type
== EV_TIMEOUT
|| ev
->type
== RSP_STRING
)
1526 at_state
->getstring
= 0;
1528 /* Search row in dial array which matches modem response and current
1531 rcode
= rep
->resp_code
;
1532 if (rcode
== RSP_LAST
) {
1533 /* found nothing...*/
1534 dev_warn(cs
->dev
, "%s: rcode=RSP_LAST: "
1535 "resp_code %d in ConState %d!\n",
1536 __func__
, ev
->type
, at_state
->ConState
);
1539 if ((rcode
== RSP_ANY
|| rcode
== ev
->type
)
1540 && ((int) at_state
->ConState
>= rep
->min_ConState
)
1541 && (rep
->max_ConState
< 0
1542 || (int) at_state
->ConState
<= rep
->max_ConState
)
1543 && (rep
->parameter
< 0 || rep
->parameter
== ev
->parameter
))
1547 p_command
= rep
->command
;
1549 at_state
->waiting
= 0;
1550 for (curact
= 0; curact
< MAXACT
; ++curact
) {
1551 /* The row tells us what we should do ..
1553 do_action(rep
->action
[curact
], cs
, bcs
, &at_state
, &p_command
,
1554 &genresp
, &resp_code
, ev
);
1556 break; /* may be freed after disconnect */
1560 /* Jump to the next con-state regarding the array */
1561 if (rep
->new_ConState
>= 0)
1562 at_state
->ConState
= rep
->new_ConState
;
1565 spin_lock_irqsave(&cs
->lock
, flags
);
1566 at_state
->timer_expires
= 0;
1567 at_state
->timer_active
= 0;
1568 spin_unlock_irqrestore(&cs
->lock
, flags
);
1569 gigaset_add_event(cs
, at_state
, resp_code
,
1572 /* Send command to modem if not NULL... */
1575 send_command(cs
, p_command
,
1579 gigaset_add_event(cs
, at_state
,
1584 spin_lock_irqsave(&cs
->lock
, flags
);
1585 if (!rep
->timeout
) {
1586 at_state
->timer_expires
= 0;
1587 at_state
->timer_active
= 0;
1588 } else if (rep
->timeout
> 0) { /* new timeout */
1589 at_state
->timer_expires
= rep
->timeout
* 10;
1590 at_state
->timer_active
= 1;
1591 ++at_state
->timer_index
;
1593 spin_unlock_irqrestore(&cs
->lock
, flags
);
1598 static void schedule_sequence(struct cardstate
*cs
,
1599 struct at_state_t
*at_state
, int sequence
)
1601 cs
->cur_at_seq
= sequence
;
1602 gigaset_add_event(cs
, at_state
, RSP_INIT
, NULL
, sequence
, NULL
);
1605 static void process_command_flags(struct cardstate
*cs
)
1607 struct at_state_t
*at_state
= NULL
;
1608 struct bc_state
*bcs
;
1611 unsigned long flags
;
1613 cs
->commands_pending
= 0;
1615 if (cs
->cur_at_seq
) {
1616 gig_dbg(DEBUG_EVENT
, "not searching scheduled commands: busy");
1620 gig_dbg(DEBUG_EVENT
, "searching scheduled commands");
1622 sequence
= SEQ_NONE
;
1624 /* clear pending_commands and hangup channels on shutdown */
1625 if (cs
->at_state
.pending_commands
& PC_SHUTDOWN
) {
1626 cs
->at_state
.pending_commands
&= ~PC_CIDMODE
;
1627 for (i
= 0; i
< cs
->channels
; ++i
) {
1629 at_state
= &bcs
->at_state
;
1630 at_state
->pending_commands
&=
1631 ~(PC_DLE1
| PC_ACCEPT
| PC_DIAL
);
1632 if (at_state
->cid
> 0)
1633 at_state
->pending_commands
|= PC_HUP
;
1634 if (at_state
->pending_commands
& PC_CID
) {
1635 at_state
->pending_commands
|= PC_NOCID
;
1636 at_state
->pending_commands
&= ~PC_CID
;
1641 /* clear pending_commands and hangup channels on reset */
1642 if (cs
->at_state
.pending_commands
& PC_INIT
) {
1643 cs
->at_state
.pending_commands
&= ~PC_CIDMODE
;
1644 for (i
= 0; i
< cs
->channels
; ++i
) {
1646 at_state
= &bcs
->at_state
;
1647 at_state
->pending_commands
&=
1648 ~(PC_DLE1
| PC_ACCEPT
| PC_DIAL
);
1649 if (at_state
->cid
> 0)
1650 at_state
->pending_commands
|= PC_HUP
;
1651 if (cs
->mstate
== MS_RECOVER
) {
1652 if (at_state
->pending_commands
& PC_CID
) {
1653 at_state
->pending_commands
|= PC_NOCID
;
1654 at_state
->pending_commands
&= ~PC_CID
;
1660 /* only switch back to unimodem mode if no commands are pending and
1661 * no channels are up */
1662 spin_lock_irqsave(&cs
->lock
, flags
);
1663 if (cs
->at_state
.pending_commands
== PC_UMMODE
1665 && list_empty(&cs
->temp_at_states
)
1666 && cs
->mode
== M_CID
) {
1667 sequence
= SEQ_UMMODE
;
1668 at_state
= &cs
->at_state
;
1669 for (i
= 0; i
< cs
->channels
; ++i
) {
1671 if (bcs
->at_state
.pending_commands
||
1672 bcs
->at_state
.cid
> 0) {
1673 sequence
= SEQ_NONE
;
1678 spin_unlock_irqrestore(&cs
->lock
, flags
);
1679 cs
->at_state
.pending_commands
&= ~PC_UMMODE
;
1680 if (sequence
!= SEQ_NONE
) {
1681 schedule_sequence(cs
, at_state
, sequence
);
1685 for (i
= 0; i
< cs
->channels
; ++i
) {
1687 if (bcs
->at_state
.pending_commands
& PC_HUP
) {
1688 bcs
->at_state
.pending_commands
&= ~PC_HUP
;
1689 if (bcs
->at_state
.pending_commands
& PC_CID
) {
1690 /* not yet dialing: PC_NOCID is sufficient */
1691 bcs
->at_state
.pending_commands
|= PC_NOCID
;
1692 bcs
->at_state
.pending_commands
&= ~PC_CID
;
1694 schedule_sequence(cs
, &bcs
->at_state
, SEQ_HUP
);
1698 if (bcs
->at_state
.pending_commands
& PC_NOCID
) {
1699 bcs
->at_state
.pending_commands
&= ~PC_NOCID
;
1700 cs
->curchannel
= bcs
->channel
;
1701 schedule_sequence(cs
, &cs
->at_state
, SEQ_NOCID
);
1703 } else if (bcs
->at_state
.pending_commands
& PC_DLE0
) {
1704 bcs
->at_state
.pending_commands
&= ~PC_DLE0
;
1705 cs
->curchannel
= bcs
->channel
;
1706 schedule_sequence(cs
, &cs
->at_state
, SEQ_DLE0
);
1711 list_for_each_entry(at_state
, &cs
->temp_at_states
, list
)
1712 if (at_state
->pending_commands
& PC_HUP
) {
1713 at_state
->pending_commands
&= ~PC_HUP
;
1714 schedule_sequence(cs
, at_state
, SEQ_HUP
);
1718 if (cs
->at_state
.pending_commands
& PC_INIT
) {
1719 cs
->at_state
.pending_commands
&= ~PC_INIT
;
1721 cs
->inbuf
->inputstate
= INS_command
;
1722 schedule_sequence(cs
, &cs
->at_state
, SEQ_INIT
);
1725 if (cs
->at_state
.pending_commands
& PC_SHUTDOWN
) {
1726 cs
->at_state
.pending_commands
&= ~PC_SHUTDOWN
;
1727 schedule_sequence(cs
, &cs
->at_state
, SEQ_SHUTDOWN
);
1730 if (cs
->at_state
.pending_commands
& PC_CIDMODE
) {
1731 cs
->at_state
.pending_commands
&= ~PC_CIDMODE
;
1732 if (cs
->mode
== M_UNIMODEM
) {
1733 cs
->retry_count
= 1;
1734 schedule_sequence(cs
, &cs
->at_state
, SEQ_CIDMODE
);
1739 for (i
= 0; i
< cs
->channels
; ++i
) {
1741 if (bcs
->at_state
.pending_commands
& PC_DLE1
) {
1742 bcs
->at_state
.pending_commands
&= ~PC_DLE1
;
1743 cs
->curchannel
= bcs
->channel
;
1744 schedule_sequence(cs
, &cs
->at_state
, SEQ_DLE1
);
1747 if (bcs
->at_state
.pending_commands
& PC_ACCEPT
) {
1748 bcs
->at_state
.pending_commands
&= ~PC_ACCEPT
;
1749 schedule_sequence(cs
, &bcs
->at_state
, SEQ_ACCEPT
);
1752 if (bcs
->at_state
.pending_commands
& PC_DIAL
) {
1753 bcs
->at_state
.pending_commands
&= ~PC_DIAL
;
1754 schedule_sequence(cs
, &bcs
->at_state
, SEQ_DIAL
);
1757 if (bcs
->at_state
.pending_commands
& PC_CID
) {
1760 cs
->at_state
.pending_commands
|= PC_CIDMODE
;
1761 gig_dbg(DEBUG_EVENT
, "Scheduling PC_CIDMODE");
1762 cs
->commands_pending
= 1;
1765 schedule_init(cs
, MS_INIT
);
1768 bcs
->at_state
.pending_commands
&= ~PC_CID
;
1769 cs
->curchannel
= bcs
->channel
;
1770 cs
->retry_count
= 2;
1771 schedule_sequence(cs
, &cs
->at_state
, SEQ_CID
);
1777 static void process_events(struct cardstate
*cs
)
1780 unsigned head
, tail
;
1782 int check_flags
= 0;
1784 unsigned long flags
;
1786 spin_lock_irqsave(&cs
->ev_lock
, flags
);
1789 for (i
= 0; i
< 2 * MAX_EVENTS
; ++i
) {
1792 if (!check_flags
&& !cs
->commands_pending
)
1795 spin_unlock_irqrestore(&cs
->ev_lock
, flags
);
1796 process_command_flags(cs
);
1797 spin_lock_irqsave(&cs
->ev_lock
, flags
);
1800 if (!cs
->commands_pending
)
1806 ev
= cs
->events
+ head
;
1807 was_busy
= cs
->cur_at_seq
!= SEQ_NONE
;
1808 spin_unlock_irqrestore(&cs
->ev_lock
, flags
);
1809 process_event(cs
, ev
);
1810 spin_lock_irqsave(&cs
->ev_lock
, flags
);
1813 if (was_busy
&& cs
->cur_at_seq
== SEQ_NONE
)
1816 head
= (head
+ 1) % MAX_EVENTS
;
1820 spin_unlock_irqrestore(&cs
->ev_lock
, flags
);
1822 if (i
== 2 * MAX_EVENTS
) {
1824 "infinite loop in process_events; aborting.\n");
1828 /* tasklet scheduled on any event received from the Gigaset device
1830 * data ISDN controller state structure
1832 void gigaset_handle_event(unsigned long data
)
1834 struct cardstate
*cs
= (struct cardstate
*) data
;
1836 /* handle incoming data on control/common channel */
1837 if (cs
->inbuf
->head
!= cs
->inbuf
->tail
) {
1838 gig_dbg(DEBUG_INTR
, "processing new data");
1839 cs
->ops
->handle_input(cs
->inbuf
);