blob: c3b1dc3a13a0f998a23e01b81d3b99ede2bc2428 [file] [log] [blame]
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -08001/*
2 * Common data handling layer for ser_gigaset and usb_gigaset
3 *
4 * Copyright (c) 2005 by Tilman Schmidt <tilman@imap.cc>,
5 * Hansjoerg Lipp <hjlipp@web.de>,
Tilman Schmidt70440cf2006-04-10 22:55:14 -07006 * Stefan Eilers.
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -08007 *
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 * =====================================================================
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -080014 */
15
16#include "gigaset.h"
17#include <linux/crc-ccitt.h>
Akinobu Mita17b3cff2006-12-08 02:36:30 -080018#include <linux/bitrev.h>
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -080019
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -080020/* check if byte must be stuffed/escaped
21 * I'm not sure which data should be encoded.
Tilman Schmidt2032e2c2009-10-25 09:30:07 +000022 * Therefore I will go the hard way and encode every value
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -080023 * less than 0x20, the flag sequence and the control escape char.
24 */
25static inline int muststuff(unsigned char c)
26{
27 if (c < PPP_TRANS) return 1;
28 if (c == PPP_FLAG) return 1;
29 if (c == PPP_ESCAPE) return 1;
30 /* other possible candidates: */
31 /* 0x91: XON with parity set */
32 /* 0x93: XOFF with parity set */
33 return 0;
34}
35
36/* == data input =========================================================== */
37
Tilman Schmidt2032e2c2009-10-25 09:30:07 +000038/* process a block of received bytes in command mode
39 * (mstate != MS_LOCKED && (inputstate & INS_command))
40 * Append received bytes to the command response buffer and forward them
41 * line by line to the response handler. Exit whenever a mode/state change
42 * might have occurred.
Tilman Schmidt63e055d2010-02-22 13:09:22 +000043 * Note: Received lines may be terminated by CR, LF, or CR LF, which will be
44 * removed before passing the line to the response handler.
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -080045 * Return value:
46 * number of processed bytes
47 */
Tilman Schmidt2032e2c2009-10-25 09:30:07 +000048static unsigned cmd_loop(unsigned numbytes, struct inbuf_t *inbuf)
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -080049{
Tilman Schmidt2032e2c2009-10-25 09:30:07 +000050 unsigned char *src = inbuf->data + inbuf->head;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -080051 struct cardstate *cs = inbuf->cs;
Tilman Schmidt2032e2c2009-10-25 09:30:07 +000052 unsigned cbytes = cs->cbytes;
53 unsigned procbytes = 0;
54 unsigned char c;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -080055
Tilman Schmidt2032e2c2009-10-25 09:30:07 +000056 while (procbytes < numbytes) {
57 c = *src++;
58 procbytes++;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -080059
Tilman Schmidt2032e2c2009-10-25 09:30:07 +000060 switch (c) {
61 case '\n':
62 if (cbytes == 0 && cs->respdata[0] == '\r') {
63 /* collapse LF with preceding CR */
64 cs->respdata[0] = 0;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -080065 break;
66 }
Tilman Schmidt2032e2c2009-10-25 09:30:07 +000067 /* --v-- fall through --v-- */
68 case '\r':
69 /* end of message line, pass to response handler */
Tilman Schmidt2032e2c2009-10-25 09:30:07 +000070 if (cbytes >= MAX_RESP_SIZE) {
71 dev_warn(cs->dev, "response too large (%d)\n",
72 cbytes);
73 cbytes = MAX_RESP_SIZE;
74 }
75 cs->cbytes = cbytes;
Tilman Schmidt1528b182010-02-22 13:09:52 +000076 gigaset_dbg_buffer(DEBUG_TRANSCMD, "received response",
77 cbytes, cs->respdata);
Tilman Schmidt2032e2c2009-10-25 09:30:07 +000078 gigaset_handle_modem_response(cs);
79 cbytes = 0;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -080080
Tilman Schmidt2032e2c2009-10-25 09:30:07 +000081 /* store EOL byte for CRLF collapsing */
82 cs->respdata[0] = c;
83
84 /* cs->dle may have changed */
85 if (cs->dle && !(inbuf->inputstate & INS_DLE_command))
86 inbuf->inputstate &= ~INS_command;
87
88 /* return for reevaluating state */
89 goto exit;
90
91 case DLE_FLAG:
92 if (inbuf->inputstate & INS_DLE_char) {
93 /* quoted DLE: clear quote flag */
94 inbuf->inputstate &= ~INS_DLE_char;
95 } else if (cs->dle ||
96 (inbuf->inputstate & INS_DLE_command)) {
97 /* DLE escape, pass up for handling */
98 inbuf->inputstate |= INS_DLE_char;
99 goto exit;
100 }
101 /* quoted or not in DLE mode: treat as regular data */
102 /* --v-- fall through --v-- */
103 default:
104 /* append to line buffer if possible */
105 if (cbytes < MAX_RESP_SIZE)
106 cs->respdata[cbytes] = c;
107 cbytes++;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800108 }
109 }
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000110exit:
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800111 cs->cbytes = cbytes;
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000112 return procbytes;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800113}
114
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000115/* process a block of received bytes in lock mode
116 * All received bytes are passed unmodified to the tty i/f.
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800117 * Return value:
118 * number of processed bytes
119 */
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000120static unsigned lock_loop(unsigned numbytes, struct inbuf_t *inbuf)
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800121{
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000122 unsigned char *src = inbuf->data + inbuf->head;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800123
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000124 gigaset_dbg_buffer(DEBUG_LOCKCMD, "received response", numbytes, src);
125 gigaset_if_receive(inbuf->cs, src, numbytes);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800126 return numbytes;
127}
128
129/* process a block of received bytes in HDLC data mode
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000130 * (mstate != MS_LOCKED && !(inputstate & INS_command) && proto2 == L2_HDLC)
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800131 * Collect HDLC frames, undoing byte stuffing and watching for DLE escapes.
132 * When a frame is complete, check the FCS and pass valid frames to the LL.
133 * If DLE is encountered, return immediately to let the caller handle it.
134 * Return value:
135 * number of processed bytes
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800136 */
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000137static unsigned hdlc_loop(unsigned numbytes, struct inbuf_t *inbuf)
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800138{
139 struct cardstate *cs = inbuf->cs;
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000140 struct bc_state *bcs = cs->bcs;
Tilman Schmidtd48c7782006-04-10 22:55:08 -0700141 int inputstate = bcs->inputstate;
Tilman Schmidte7752ee2010-06-21 13:54:19 +0000142 __u16 fcs = bcs->rx_fcs;
143 struct sk_buff *skb = bcs->rx_skb;
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000144 unsigned char *src = inbuf->data + inbuf->head;
145 unsigned procbytes = 0;
146 unsigned char c;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800147
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000148 if (inputstate & INS_byte_stuff) {
149 if (!numbytes)
150 return 0;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800151 inputstate &= ~INS_byte_stuff;
152 goto byte_stuff;
153 }
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000154
155 while (procbytes < numbytes) {
156 c = *src++;
157 procbytes++;
158 if (c == DLE_FLAG) {
159 if (inputstate & INS_DLE_char) {
160 /* quoted DLE: clear quote flag */
161 inputstate &= ~INS_DLE_char;
162 } else if (cs->dle || (inputstate & INS_DLE_command)) {
163 /* DLE escape, pass up for handling */
164 inputstate |= INS_DLE_char;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800165 break;
166 }
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000167 }
168
169 if (c == PPP_ESCAPE) {
170 /* byte stuffing indicator: pull in next byte */
171 if (procbytes >= numbytes) {
172 /* end of buffer, save for later processing */
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800173 inputstate |= INS_byte_stuff;
174 break;
175 }
176byte_stuff:
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000177 c = *src++;
178 procbytes++;
179 if (c == DLE_FLAG) {
180 if (inputstate & INS_DLE_char) {
181 /* quoted DLE: clear quote flag */
182 inputstate &= ~INS_DLE_char;
183 } else if (cs->dle ||
184 (inputstate & INS_DLE_command)) {
185 /* DLE escape, pass up for handling */
186 inputstate |=
187 INS_DLE_char | INS_byte_stuff;
188 break;
189 }
190 }
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800191 c ^= PPP_TRANS;
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000192#ifdef CONFIG_GIGASET_DEBUG
193 if (!muststuff(c))
Tilman Schmidt784d5852006-04-10 22:55:04 -0700194 gig_dbg(DEBUG_HDLC, "byte stuffed: 0x%02x", c);
Tilman Schmidt236b87c2008-12-26 01:22:03 -0800195#endif
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000196 } else if (c == PPP_FLAG) {
197 /* end of frame: process content if any */
198 if (inputstate & INS_have_data) {
Tilman Schmidt784d5852006-04-10 22:55:04 -0700199 gig_dbg(DEBUG_HDLC,
200 "7e----------------------------");
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800201
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000202 /* check and pass received frame */
203 if (!skb) {
204 /* skipped frame */
205 gigaset_isdn_rcv_err(bcs);
206 } else if (skb->len < 2) {
207 /* frame too short for FCS */
208 dev_warn(cs->dev,
209 "short frame (%d)\n",
210 skb->len);
211 gigaset_isdn_rcv_err(bcs);
212 dev_kfree_skb_any(skb);
213 } else if (fcs != PPP_GOODFCS) {
214 /* frame check error */
Tilman Schmidt784d5852006-04-10 22:55:04 -0700215 dev_err(cs->dev,
Tilman Schmidt0a305722009-05-13 12:44:18 +0000216 "Checksum failed, %u bytes corrupted!\n",
217 skb->len);
Tilman Schmidt088ec0c2009-10-06 12:19:07 +0000218 gigaset_isdn_rcv_err(bcs);
Tilman Schmidt4dd82302009-10-25 09:29:57 +0000219 dev_kfree_skb_any(skb);
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000220 } else {
221 /* good frame */
Tilman Schmidt088ec0c2009-10-06 12:19:07 +0000222 __skb_trim(skb, skb->len - 2);
223 gigaset_skb_rcvd(bcs, skb);
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000224 }
225
226 /* prepare reception of next frame */
227 inputstate &= ~INS_have_data;
Tilman Schmidte7752ee2010-06-21 13:54:19 +0000228 skb = gigaset_new_rx_skb(bcs);
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000229 } else {
230 /* empty frame (7E 7E) */
231#ifdef CONFIG_GIGASET_DEBUG
232 ++bcs->emptycount;
233#endif
234 if (!skb) {
235 /* skipped (?) */
236 gigaset_isdn_rcv_err(bcs);
Tilman Schmidte7752ee2010-06-21 13:54:19 +0000237 skb = gigaset_new_rx_skb(bcs);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800238 }
239 }
240
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800241 fcs = PPP_INITFCS;
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000242 continue;
243#ifdef CONFIG_GIGASET_DEBUG
244 } else if (muststuff(c)) {
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800245 /* Should not happen. Possible after ZDLE=1<CR><LF>. */
Tilman Schmidt784d5852006-04-10 22:55:04 -0700246 gig_dbg(DEBUG_HDLC, "not byte stuffed: 0x%02x", c);
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000247#endif
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800248 }
249
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000250 /* regular data byte, append to skb */
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800251#ifdef CONFIG_GIGASET_DEBUG
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000252 if (!(inputstate & INS_have_data)) {
Tilman Schmidt784d5852006-04-10 22:55:04 -0700253 gig_dbg(DEBUG_HDLC, "7e (%d x) ================",
254 bcs->emptycount);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800255 bcs->emptycount = 0;
256 }
257#endif
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800258 inputstate |= INS_have_data;
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000259 if (skb) {
Tilman Schmidte7752ee2010-06-21 13:54:19 +0000260 if (skb->len >= bcs->rx_bufsize) {
Tilman Schmidt784d5852006-04-10 22:55:04 -0700261 dev_warn(cs->dev, "received packet too long\n");
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800262 dev_kfree_skb_any(skb);
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000263 /* skip remainder of packet */
Tilman Schmidte7752ee2010-06-21 13:54:19 +0000264 bcs->rx_skb = skb = NULL;
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000265 } else {
266 *__skb_put(skb, 1) = c;
267 fcs = crc_ccitt_byte(fcs, c);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800268 }
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800269 }
270 }
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000271
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800272 bcs->inputstate = inputstate;
Tilman Schmidte7752ee2010-06-21 13:54:19 +0000273 bcs->rx_fcs = fcs;
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000274 return procbytes;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800275}
276
277/* process a block of received bytes in transparent data mode
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000278 * (mstate != MS_LOCKED && !(inputstate & INS_command) && proto2 != L2_HDLC)
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800279 * Invert bytes, undoing byte stuffing and watching for DLE escapes.
280 * If DLE is encountered, return immediately to let the caller handle it.
281 * Return value:
282 * number of processed bytes
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800283 */
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000284static unsigned iraw_loop(unsigned numbytes, struct inbuf_t *inbuf)
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800285{
286 struct cardstate *cs = inbuf->cs;
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000287 struct bc_state *bcs = cs->bcs;
Tilman Schmidtd48c7782006-04-10 22:55:08 -0700288 int inputstate = bcs->inputstate;
Tilman Schmidte7752ee2010-06-21 13:54:19 +0000289 struct sk_buff *skb = bcs->rx_skb;
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000290 unsigned char *src = inbuf->data + inbuf->head;
291 unsigned procbytes = 0;
292 unsigned char c;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800293
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000294 if (!skb) {
295 /* skip this block */
Tilman Schmidte7752ee2010-06-21 13:54:19 +0000296 gigaset_new_rx_skb(bcs);
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000297 return numbytes;
298 }
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800299
Tilman Schmidte7752ee2010-06-21 13:54:19 +0000300 while (procbytes < numbytes && skb->len < bcs->rx_bufsize) {
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000301 c = *src++;
302 procbytes++;
303
304 if (c == DLE_FLAG) {
305 if (inputstate & INS_DLE_char) {
306 /* quoted DLE: clear quote flag */
307 inputstate &= ~INS_DLE_char;
308 } else if (cs->dle || (inputstate & INS_DLE_command)) {
309 /* DLE escape, pass up for handling */
310 inputstate |= INS_DLE_char;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800311 break;
312 }
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800313 }
314
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000315 /* regular data byte: append to current skb */
316 inputstate |= INS_have_data;
317 *__skb_put(skb, 1) = bitrev8(c);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800318 }
319
320 /* pass data up */
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000321 if (inputstate & INS_have_data) {
322 gigaset_skb_rcvd(bcs, skb);
323 inputstate &= ~INS_have_data;
Tilman Schmidte7752ee2010-06-21 13:54:19 +0000324 gigaset_new_rx_skb(bcs);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800325 }
326
327 bcs->inputstate = inputstate;
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000328 return procbytes;
329}
330
331/* process DLE escapes
332 * Called whenever a DLE sequence might be encountered in the input stream.
333 * Either processes the entire DLE sequence or, if that isn't possible,
334 * notes the fact that an initial DLE has been received in the INS_DLE_char
335 * inputstate flag and resumes processing of the sequence on the next call.
336 */
337static void handle_dle(struct inbuf_t *inbuf)
338{
339 struct cardstate *cs = inbuf->cs;
340
341 if (cs->mstate == MS_LOCKED)
342 return; /* no DLE processing in lock mode */
343
344 if (!(inbuf->inputstate & INS_DLE_char)) {
345 /* no DLE pending */
346 if (inbuf->data[inbuf->head] == DLE_FLAG &&
347 (cs->dle || inbuf->inputstate & INS_DLE_command)) {
348 /* start of DLE sequence */
349 inbuf->head++;
350 if (inbuf->head == inbuf->tail ||
351 inbuf->head == RBUFSIZE) {
352 /* end of buffer, save for later processing */
353 inbuf->inputstate |= INS_DLE_char;
354 return;
355 }
356 } else {
357 /* regular data byte */
358 return;
359 }
360 }
361
362 /* consume pending DLE */
363 inbuf->inputstate &= ~INS_DLE_char;
364
365 switch (inbuf->data[inbuf->head]) {
366 case 'X': /* begin of event message */
367 if (inbuf->inputstate & INS_command)
368 dev_notice(cs->dev,
369 "received <DLE>X in command mode\n");
370 inbuf->inputstate |= INS_command | INS_DLE_command;
371 inbuf->head++; /* byte consumed */
372 break;
373 case '.': /* end of event message */
374 if (!(inbuf->inputstate & INS_DLE_command))
375 dev_notice(cs->dev,
376 "received <DLE>. without <DLE>X\n");
377 inbuf->inputstate &= ~INS_DLE_command;
378 /* return to data mode if in DLE mode */
379 if (cs->dle)
380 inbuf->inputstate &= ~INS_command;
381 inbuf->head++; /* byte consumed */
382 break;
383 case DLE_FLAG: /* DLE in data stream */
384 /* mark as quoted */
385 inbuf->inputstate |= INS_DLE_char;
386 if (!(cs->dle || inbuf->inputstate & INS_DLE_command))
387 dev_notice(cs->dev,
388 "received <DLE><DLE> not in DLE mode\n");
389 break; /* quoted byte left in buffer */
390 default:
391 dev_notice(cs->dev, "received <DLE><%02x>\n",
392 inbuf->data[inbuf->head]);
393 /* quoted byte left in buffer */
394 }
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800395}
396
Tilman Schmidt1cec9722009-10-06 12:19:01 +0000397/**
398 * gigaset_m10x_input() - process a block of data received from the device
399 * @inbuf: received data and device descriptor structure.
400 *
401 * Called by hardware module {ser,usb}_gigaset with a block of received
402 * bytes. Separates the bytes received over the serial data channel into
403 * user data and command replies (locked/unlocked) according to the
404 * current state of the interface.
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800405 */
406void gigaset_m10x_input(struct inbuf_t *inbuf)
407{
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000408 struct cardstate *cs = inbuf->cs;
409 unsigned numbytes, procbytes;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800410
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000411 gig_dbg(DEBUG_INTR, "buffer state: %u -> %u", inbuf->head, inbuf->tail);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800412
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000413 while (inbuf->head != inbuf->tail) {
414 /* check for DLE escape */
415 handle_dle(inbuf);
416
417 /* process a contiguous block of bytes */
418 numbytes = (inbuf->head > inbuf->tail ?
419 RBUFSIZE : inbuf->tail) - inbuf->head;
Tilman Schmidt784d5852006-04-10 22:55:04 -0700420 gig_dbg(DEBUG_INTR, "processing %u bytes", numbytes);
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000421 /*
422 * numbytes may be 0 if handle_dle() ate the last byte.
423 * This does no harm, *_loop() will just return 0 immediately.
424 */
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800425
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000426 if (cs->mstate == MS_LOCKED)
427 procbytes = lock_loop(numbytes, inbuf);
428 else if (inbuf->inputstate & INS_command)
429 procbytes = cmd_loop(numbytes, inbuf);
430 else if (cs->bcs->proto2 == L2_HDLC)
431 procbytes = hdlc_loop(numbytes, inbuf);
432 else
433 procbytes = iraw_loop(numbytes, inbuf);
434 inbuf->head += procbytes;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800435
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000436 /* check for buffer wraparound */
437 if (inbuf->head >= RBUFSIZE)
438 inbuf->head = 0;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800439
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000440 gig_dbg(DEBUG_INTR, "head set to %u", inbuf->head);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800441 }
442}
Adrian Bunkd5c16822007-02-20 13:58:17 -0800443EXPORT_SYMBOL_GPL(gigaset_m10x_input);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800444
445
446/* == data output ========================================================== */
447
Tilman Schmidt088ec0c2009-10-06 12:19:07 +0000448/*
449 * Encode a data packet into an octet stuffed HDLC frame with FCS,
450 * opening and closing flags, preserving headroom data.
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800451 * parameters:
Tilman Schmidt088ec0c2009-10-06 12:19:07 +0000452 * skb skb containing original packet (freed upon return)
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800453 * Return value:
454 * pointer to newly allocated skb containing the result frame
Tilman Schmidt4dd82302009-10-25 09:29:57 +0000455 * and the original link layer header, NULL on error
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800456 */
Tilman Schmidt4dd82302009-10-25 09:29:57 +0000457static struct sk_buff *HDLC_Encode(struct sk_buff *skb)
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800458{
459 struct sk_buff *hdlc_skb;
460 __u16 fcs;
461 unsigned char c;
462 unsigned char *cp;
463 int len;
464 unsigned int stuf_cnt;
465
466 stuf_cnt = 0;
467 fcs = PPP_INITFCS;
468 cp = skb->data;
469 len = skb->len;
470 while (len--) {
471 if (muststuff(*cp))
472 stuf_cnt++;
473 fcs = crc_ccitt_byte(fcs, *cp++);
474 }
Tilman Schmidt784d5852006-04-10 22:55:04 -0700475 fcs ^= 0xffff; /* complement */
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800476
477 /* size of new buffer: original size + number of stuffing bytes
478 * + 2 bytes FCS + 2 stuffing bytes for FCS (if needed) + 2 flag bytes
Tilman Schmidt4dd82302009-10-25 09:29:57 +0000479 * + room for link layer header
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800480 */
Tilman Schmidt4dd82302009-10-25 09:29:57 +0000481 hdlc_skb = dev_alloc_skb(skb->len + stuf_cnt + 6 + skb->mac_len);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800482 if (!hdlc_skb) {
Tilman Schmidt4dd82302009-10-25 09:29:57 +0000483 dev_kfree_skb_any(skb);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800484 return NULL;
485 }
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800486
Tilman Schmidt4dd82302009-10-25 09:29:57 +0000487 /* Copy link layer header into new skb */
488 skb_reset_mac_header(hdlc_skb);
489 skb_reserve(hdlc_skb, skb->mac_len);
490 memcpy(skb_mac_header(hdlc_skb), skb_mac_header(skb), skb->mac_len);
491 hdlc_skb->mac_len = skb->mac_len;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800492
493 /* Add flag sequence in front of everything.. */
494 *(skb_put(hdlc_skb, 1)) = PPP_FLAG;
495
496 /* Perform byte stuffing while copying data. */
497 while (skb->len--) {
498 if (muststuff(*skb->data)) {
499 *(skb_put(hdlc_skb, 1)) = PPP_ESCAPE;
500 *(skb_put(hdlc_skb, 1)) = (*skb->data++) ^ PPP_TRANS;
501 } else
502 *(skb_put(hdlc_skb, 1)) = *skb->data++;
503 }
504
505 /* Finally add FCS (byte stuffed) and flag sequence */
Tilman Schmidt784d5852006-04-10 22:55:04 -0700506 c = (fcs & 0x00ff); /* least significant byte first */
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800507 if (muststuff(c)) {
508 *(skb_put(hdlc_skb, 1)) = PPP_ESCAPE;
509 c ^= PPP_TRANS;
510 }
511 *(skb_put(hdlc_skb, 1)) = c;
512
513 c = ((fcs >> 8) & 0x00ff);
514 if (muststuff(c)) {
515 *(skb_put(hdlc_skb, 1)) = PPP_ESCAPE;
516 c ^= PPP_TRANS;
517 }
518 *(skb_put(hdlc_skb, 1)) = c;
519
520 *(skb_put(hdlc_skb, 1)) = PPP_FLAG;
521
Tilman Schmidt4dd82302009-10-25 09:29:57 +0000522 dev_kfree_skb_any(skb);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800523 return hdlc_skb;
524}
525
Tilman Schmidt088ec0c2009-10-06 12:19:07 +0000526/*
527 * Encode a data packet into an octet stuffed raw bit inverted frame,
528 * preserving headroom data.
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800529 * parameters:
Tilman Schmidt088ec0c2009-10-06 12:19:07 +0000530 * skb skb containing original packet (freed upon return)
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800531 * Return value:
532 * pointer to newly allocated skb containing the result frame
Tilman Schmidt4dd82302009-10-25 09:29:57 +0000533 * and the original link layer header, NULL on error
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800534 */
Tilman Schmidt4dd82302009-10-25 09:29:57 +0000535static struct sk_buff *iraw_encode(struct sk_buff *skb)
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800536{
537 struct sk_buff *iraw_skb;
538 unsigned char c;
539 unsigned char *cp;
540 int len;
541
Tilman Schmidt4dd82302009-10-25 09:29:57 +0000542 /* size of new buffer (worst case = every byte must be stuffed):
543 * 2 * original size + room for link layer header
544 */
545 iraw_skb = dev_alloc_skb(2*skb->len + skb->mac_len);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800546 if (!iraw_skb) {
Tilman Schmidt4dd82302009-10-25 09:29:57 +0000547 dev_kfree_skb_any(skb);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800548 return NULL;
549 }
Tilman Schmidt088ec0c2009-10-06 12:19:07 +0000550
Tilman Schmidt4dd82302009-10-25 09:29:57 +0000551 /* copy link layer header into new skb */
552 skb_reset_mac_header(iraw_skb);
553 skb_reserve(iraw_skb, skb->mac_len);
554 memcpy(skb_mac_header(iraw_skb), skb_mac_header(skb), skb->mac_len);
555 iraw_skb->mac_len = skb->mac_len;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800556
Tilman Schmidt4dd82302009-10-25 09:29:57 +0000557 /* copy and stuff data */
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800558 cp = skb->data;
559 len = skb->len;
560 while (len--) {
Akinobu Mita17b3cff2006-12-08 02:36:30 -0800561 c = bitrev8(*cp++);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800562 if (c == DLE_FLAG)
563 *(skb_put(iraw_skb, 1)) = c;
564 *(skb_put(iraw_skb, 1)) = c;
565 }
Tilman Schmidt4dd82302009-10-25 09:29:57 +0000566 dev_kfree_skb_any(skb);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800567 return iraw_skb;
568}
569
Tilman Schmidt1cec9722009-10-06 12:19:01 +0000570/**
571 * gigaset_m10x_send_skb() - queue an skb for sending
572 * @bcs: B channel descriptor structure.
573 * @skb: data to send.
574 *
Tilman Schmidt088ec0c2009-10-06 12:19:07 +0000575 * Called by LL to encode and queue an skb for sending, and start
Tilman Schmidt1cec9722009-10-06 12:19:01 +0000576 * transmission if necessary.
Tilman Schmidt088ec0c2009-10-06 12:19:07 +0000577 * Once the payload data has been transmitted completely, gigaset_skb_sent()
Tilman Schmidt4dd82302009-10-25 09:29:57 +0000578 * will be called with the skb's link layer header preserved.
Tilman Schmidt1cec9722009-10-06 12:19:01 +0000579 *
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800580 * Return value:
Tilman Schmidt1cec9722009-10-06 12:19:01 +0000581 * number of bytes accepted for sending (skb->len) if ok,
582 * error code < 0 (eg. -ENOMEM) on error
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800583 */
584int gigaset_m10x_send_skb(struct bc_state *bcs, struct sk_buff *skb)
585{
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000586 struct cardstate *cs = bcs->cs;
Tilman Schmidtd48c7782006-04-10 22:55:08 -0700587 unsigned len = skb->len;
Tilman Schmidt69049cc2006-04-10 22:55:16 -0700588 unsigned long flags;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800589
Tilman Schmidt088ec0c2009-10-06 12:19:07 +0000590 if (bcs->proto2 == L2_HDLC)
Tilman Schmidt4dd82302009-10-25 09:29:57 +0000591 skb = HDLC_Encode(skb);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800592 else
Tilman Schmidt4dd82302009-10-25 09:29:57 +0000593 skb = iraw_encode(skb);
Tilman Schmidt784d5852006-04-10 22:55:04 -0700594 if (!skb) {
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000595 dev_err(cs->dev,
Tilman Schmidt50027792008-07-23 21:28:27 -0700596 "unable to allocate memory for encoding!\n");
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800597 return -ENOMEM;
Tilman Schmidt784d5852006-04-10 22:55:04 -0700598 }
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800599
600 skb_queue_tail(&bcs->squeue, skb);
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000601 spin_lock_irqsave(&cs->lock, flags);
602 if (cs->connected)
603 tasklet_schedule(&cs->write_tasklet);
604 spin_unlock_irqrestore(&cs->lock, flags);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800605
606 return len; /* ok so far */
607}
Adrian Bunkd5c16822007-02-20 13:58:17 -0800608EXPORT_SYMBOL_GPL(gigaset_m10x_send_skb);