blob: c90dca5abeac5296fb73d445f6a58a69cb555471 [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>
Paul Gortmaker5d76fc22011-07-10 12:23:16 -040019#include <linux/export.h>
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -080020
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -080021/* check if byte must be stuffed/escaped
22 * I'm not sure which data should be encoded.
Tilman Schmidt2032e2c2009-10-25 09:30:07 +000023 * Therefore I will go the hard way and encode every value
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -080024 * less than 0x20, the flag sequence and the control escape char.
25 */
26static inline int muststuff(unsigned char c)
27{
28 if (c < PPP_TRANS) return 1;
29 if (c == PPP_FLAG) return 1;
30 if (c == PPP_ESCAPE) return 1;
31 /* other possible candidates: */
32 /* 0x91: XON with parity set */
33 /* 0x93: XOFF with parity set */
34 return 0;
35}
36
37/* == data input =========================================================== */
38
Tilman Schmidt2032e2c2009-10-25 09:30:07 +000039/* process a block of received bytes in command mode
40 * (mstate != MS_LOCKED && (inputstate & INS_command))
41 * Append received bytes to the command response buffer and forward them
42 * line by line to the response handler. Exit whenever a mode/state change
43 * might have occurred.
Tilman Schmidt63e055d2010-02-22 13:09:22 +000044 * Note: Received lines may be terminated by CR, LF, or CR LF, which will be
45 * removed before passing the line to the response handler.
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -080046 * Return value:
47 * number of processed bytes
48 */
Tilman Schmidt2032e2c2009-10-25 09:30:07 +000049static unsigned cmd_loop(unsigned numbytes, struct inbuf_t *inbuf)
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -080050{
Tilman Schmidt2032e2c2009-10-25 09:30:07 +000051 unsigned char *src = inbuf->data + inbuf->head;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -080052 struct cardstate *cs = inbuf->cs;
Tilman Schmidt2032e2c2009-10-25 09:30:07 +000053 unsigned cbytes = cs->cbytes;
54 unsigned procbytes = 0;
55 unsigned char c;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -080056
Tilman Schmidt2032e2c2009-10-25 09:30:07 +000057 while (procbytes < numbytes) {
58 c = *src++;
59 procbytes++;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -080060
Tilman Schmidt2032e2c2009-10-25 09:30:07 +000061 switch (c) {
62 case '\n':
63 if (cbytes == 0 && cs->respdata[0] == '\r') {
64 /* collapse LF with preceding CR */
65 cs->respdata[0] = 0;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -080066 break;
67 }
Tilman Schmidt2032e2c2009-10-25 09:30:07 +000068 /* --v-- fall through --v-- */
69 case '\r':
70 /* end of message line, pass to response handler */
Tilman Schmidt2032e2c2009-10-25 09:30:07 +000071 if (cbytes >= MAX_RESP_SIZE) {
72 dev_warn(cs->dev, "response too large (%d)\n",
73 cbytes);
74 cbytes = MAX_RESP_SIZE;
75 }
76 cs->cbytes = cbytes;
Tilman Schmidt1528b182010-02-22 13:09:52 +000077 gigaset_dbg_buffer(DEBUG_TRANSCMD, "received response",
78 cbytes, cs->respdata);
Tilman Schmidt2032e2c2009-10-25 09:30:07 +000079 gigaset_handle_modem_response(cs);
80 cbytes = 0;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -080081
Tilman Schmidt2032e2c2009-10-25 09:30:07 +000082 /* store EOL byte for CRLF collapsing */
83 cs->respdata[0] = c;
84
85 /* cs->dle may have changed */
86 if (cs->dle && !(inbuf->inputstate & INS_DLE_command))
87 inbuf->inputstate &= ~INS_command;
88
89 /* return for reevaluating state */
90 goto exit;
91
92 case DLE_FLAG:
93 if (inbuf->inputstate & INS_DLE_char) {
94 /* quoted DLE: clear quote flag */
95 inbuf->inputstate &= ~INS_DLE_char;
96 } else if (cs->dle ||
97 (inbuf->inputstate & INS_DLE_command)) {
98 /* DLE escape, pass up for handling */
99 inbuf->inputstate |= INS_DLE_char;
100 goto exit;
101 }
102 /* quoted or not in DLE mode: treat as regular data */
103 /* --v-- fall through --v-- */
104 default:
105 /* append to line buffer if possible */
106 if (cbytes < MAX_RESP_SIZE)
107 cs->respdata[cbytes] = c;
108 cbytes++;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800109 }
110 }
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000111exit:
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800112 cs->cbytes = cbytes;
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000113 return procbytes;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800114}
115
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000116/* process a block of received bytes in lock mode
117 * All received bytes are passed unmodified to the tty i/f.
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800118 * Return value:
119 * number of processed bytes
120 */
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000121static unsigned lock_loop(unsigned numbytes, struct inbuf_t *inbuf)
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800122{
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000123 unsigned char *src = inbuf->data + inbuf->head;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800124
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000125 gigaset_dbg_buffer(DEBUG_LOCKCMD, "received response", numbytes, src);
126 gigaset_if_receive(inbuf->cs, src, numbytes);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800127 return numbytes;
128}
129
130/* process a block of received bytes in HDLC data mode
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000131 * (mstate != MS_LOCKED && !(inputstate & INS_command) && proto2 == L2_HDLC)
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800132 * Collect HDLC frames, undoing byte stuffing and watching for DLE escapes.
133 * When a frame is complete, check the FCS and pass valid frames to the LL.
134 * If DLE is encountered, return immediately to let the caller handle it.
135 * Return value:
136 * number of processed bytes
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800137 */
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000138static unsigned hdlc_loop(unsigned numbytes, struct inbuf_t *inbuf)
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800139{
140 struct cardstate *cs = inbuf->cs;
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000141 struct bc_state *bcs = cs->bcs;
Tilman Schmidtd48c7782006-04-10 22:55:08 -0700142 int inputstate = bcs->inputstate;
Tilman Schmidte7752ee2010-06-21 13:54:19 +0000143 __u16 fcs = bcs->rx_fcs;
144 struct sk_buff *skb = bcs->rx_skb;
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000145 unsigned char *src = inbuf->data + inbuf->head;
146 unsigned procbytes = 0;
147 unsigned char c;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800148
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000149 if (inputstate & INS_byte_stuff) {
150 if (!numbytes)
151 return 0;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800152 inputstate &= ~INS_byte_stuff;
153 goto byte_stuff;
154 }
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000155
156 while (procbytes < numbytes) {
157 c = *src++;
158 procbytes++;
159 if (c == DLE_FLAG) {
160 if (inputstate & INS_DLE_char) {
161 /* quoted DLE: clear quote flag */
162 inputstate &= ~INS_DLE_char;
163 } else if (cs->dle || (inputstate & INS_DLE_command)) {
164 /* DLE escape, pass up for handling */
165 inputstate |= INS_DLE_char;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800166 break;
167 }
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000168 }
169
170 if (c == PPP_ESCAPE) {
171 /* byte stuffing indicator: pull in next byte */
172 if (procbytes >= numbytes) {
173 /* end of buffer, save for later processing */
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800174 inputstate |= INS_byte_stuff;
175 break;
176 }
177byte_stuff:
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000178 c = *src++;
179 procbytes++;
180 if (c == DLE_FLAG) {
181 if (inputstate & INS_DLE_char) {
182 /* quoted DLE: clear quote flag */
183 inputstate &= ~INS_DLE_char;
184 } else if (cs->dle ||
185 (inputstate & INS_DLE_command)) {
186 /* DLE escape, pass up for handling */
187 inputstate |=
188 INS_DLE_char | INS_byte_stuff;
189 break;
190 }
191 }
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800192 c ^= PPP_TRANS;
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000193#ifdef CONFIG_GIGASET_DEBUG
194 if (!muststuff(c))
Tilman Schmidt784d5852006-04-10 22:55:04 -0700195 gig_dbg(DEBUG_HDLC, "byte stuffed: 0x%02x", c);
Tilman Schmidt236b87c2008-12-26 01:22:03 -0800196#endif
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000197 } else if (c == PPP_FLAG) {
198 /* end of frame: process content if any */
199 if (inputstate & INS_have_data) {
Tilman Schmidt784d5852006-04-10 22:55:04 -0700200 gig_dbg(DEBUG_HDLC,
201 "7e----------------------------");
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800202
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000203 /* check and pass received frame */
204 if (!skb) {
205 /* skipped frame */
206 gigaset_isdn_rcv_err(bcs);
207 } else if (skb->len < 2) {
208 /* frame too short for FCS */
209 dev_warn(cs->dev,
210 "short frame (%d)\n",
211 skb->len);
212 gigaset_isdn_rcv_err(bcs);
213 dev_kfree_skb_any(skb);
214 } else if (fcs != PPP_GOODFCS) {
215 /* frame check error */
Tilman Schmidt784d5852006-04-10 22:55:04 -0700216 dev_err(cs->dev,
Joe Perches475be4d2012-02-19 19:52:38 -0800217 "Checksum failed, %u bytes corrupted!\n",
Tilman Schmidt0a305722009-05-13 12:44:18 +0000218 skb->len);
Tilman Schmidt088ec0c2009-10-06 12:19:07 +0000219 gigaset_isdn_rcv_err(bcs);
Tilman Schmidt4dd82302009-10-25 09:29:57 +0000220 dev_kfree_skb_any(skb);
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000221 } else {
222 /* good frame */
Tilman Schmidt088ec0c2009-10-06 12:19:07 +0000223 __skb_trim(skb, skb->len - 2);
224 gigaset_skb_rcvd(bcs, skb);
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000225 }
226
227 /* prepare reception of next frame */
228 inputstate &= ~INS_have_data;
Tilman Schmidte7752ee2010-06-21 13:54:19 +0000229 skb = gigaset_new_rx_skb(bcs);
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000230 } else {
231 /* empty frame (7E 7E) */
232#ifdef CONFIG_GIGASET_DEBUG
233 ++bcs->emptycount;
234#endif
235 if (!skb) {
236 /* skipped (?) */
237 gigaset_isdn_rcv_err(bcs);
Tilman Schmidte7752ee2010-06-21 13:54:19 +0000238 skb = gigaset_new_rx_skb(bcs);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800239 }
240 }
241
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800242 fcs = PPP_INITFCS;
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000243 continue;
244#ifdef CONFIG_GIGASET_DEBUG
245 } else if (muststuff(c)) {
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800246 /* Should not happen. Possible after ZDLE=1<CR><LF>. */
Tilman Schmidt784d5852006-04-10 22:55:04 -0700247 gig_dbg(DEBUG_HDLC, "not byte stuffed: 0x%02x", c);
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000248#endif
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800249 }
250
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000251 /* regular data byte, append to skb */
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800252#ifdef CONFIG_GIGASET_DEBUG
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000253 if (!(inputstate & INS_have_data)) {
Tilman Schmidt784d5852006-04-10 22:55:04 -0700254 gig_dbg(DEBUG_HDLC, "7e (%d x) ================",
255 bcs->emptycount);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800256 bcs->emptycount = 0;
257 }
258#endif
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800259 inputstate |= INS_have_data;
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000260 if (skb) {
Tilman Schmidte7752ee2010-06-21 13:54:19 +0000261 if (skb->len >= bcs->rx_bufsize) {
Tilman Schmidt784d5852006-04-10 22:55:04 -0700262 dev_warn(cs->dev, "received packet too long\n");
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800263 dev_kfree_skb_any(skb);
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000264 /* skip remainder of packet */
Tilman Schmidte7752ee2010-06-21 13:54:19 +0000265 bcs->rx_skb = skb = NULL;
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000266 } else {
267 *__skb_put(skb, 1) = c;
268 fcs = crc_ccitt_byte(fcs, c);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800269 }
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800270 }
271 }
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000272
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800273 bcs->inputstate = inputstate;
Tilman Schmidte7752ee2010-06-21 13:54:19 +0000274 bcs->rx_fcs = fcs;
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000275 return procbytes;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800276}
277
278/* process a block of received bytes in transparent data mode
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000279 * (mstate != MS_LOCKED && !(inputstate & INS_command) && proto2 != L2_HDLC)
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800280 * Invert bytes, undoing byte stuffing and watching for DLE escapes.
281 * If DLE is encountered, return immediately to let the caller handle it.
282 * Return value:
283 * number of processed bytes
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800284 */
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000285static unsigned iraw_loop(unsigned numbytes, struct inbuf_t *inbuf)
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800286{
287 struct cardstate *cs = inbuf->cs;
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000288 struct bc_state *bcs = cs->bcs;
Tilman Schmidtd48c7782006-04-10 22:55:08 -0700289 int inputstate = bcs->inputstate;
Tilman Schmidte7752ee2010-06-21 13:54:19 +0000290 struct sk_buff *skb = bcs->rx_skb;
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000291 unsigned char *src = inbuf->data + inbuf->head;
292 unsigned procbytes = 0;
293 unsigned char c;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800294
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000295 if (!skb) {
296 /* skip this block */
Tilman Schmidte7752ee2010-06-21 13:54:19 +0000297 gigaset_new_rx_skb(bcs);
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000298 return numbytes;
299 }
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800300
Tilman Schmidte7752ee2010-06-21 13:54:19 +0000301 while (procbytes < numbytes && skb->len < bcs->rx_bufsize) {
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000302 c = *src++;
303 procbytes++;
304
305 if (c == DLE_FLAG) {
306 if (inputstate & INS_DLE_char) {
307 /* quoted DLE: clear quote flag */
308 inputstate &= ~INS_DLE_char;
309 } else if (cs->dle || (inputstate & INS_DLE_command)) {
310 /* DLE escape, pass up for handling */
311 inputstate |= INS_DLE_char;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800312 break;
313 }
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800314 }
315
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000316 /* regular data byte: append to current skb */
317 inputstate |= INS_have_data;
318 *__skb_put(skb, 1) = bitrev8(c);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800319 }
320
321 /* pass data up */
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000322 if (inputstate & INS_have_data) {
323 gigaset_skb_rcvd(bcs, skb);
324 inputstate &= ~INS_have_data;
Tilman Schmidte7752ee2010-06-21 13:54:19 +0000325 gigaset_new_rx_skb(bcs);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800326 }
327
328 bcs->inputstate = inputstate;
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000329 return procbytes;
330}
331
332/* process DLE escapes
333 * Called whenever a DLE sequence might be encountered in the input stream.
334 * Either processes the entire DLE sequence or, if that isn't possible,
335 * notes the fact that an initial DLE has been received in the INS_DLE_char
336 * inputstate flag and resumes processing of the sequence on the next call.
337 */
338static void handle_dle(struct inbuf_t *inbuf)
339{
340 struct cardstate *cs = inbuf->cs;
341
342 if (cs->mstate == MS_LOCKED)
343 return; /* no DLE processing in lock mode */
344
345 if (!(inbuf->inputstate & INS_DLE_char)) {
346 /* no DLE pending */
347 if (inbuf->data[inbuf->head] == DLE_FLAG &&
348 (cs->dle || inbuf->inputstate & INS_DLE_command)) {
349 /* start of DLE sequence */
350 inbuf->head++;
351 if (inbuf->head == inbuf->tail ||
352 inbuf->head == RBUFSIZE) {
353 /* end of buffer, save for later processing */
354 inbuf->inputstate |= INS_DLE_char;
355 return;
356 }
357 } else {
358 /* regular data byte */
359 return;
360 }
361 }
362
363 /* consume pending DLE */
364 inbuf->inputstate &= ~INS_DLE_char;
365
366 switch (inbuf->data[inbuf->head]) {
367 case 'X': /* begin of event message */
368 if (inbuf->inputstate & INS_command)
369 dev_notice(cs->dev,
370 "received <DLE>X in command mode\n");
371 inbuf->inputstate |= INS_command | INS_DLE_command;
372 inbuf->head++; /* byte consumed */
373 break;
374 case '.': /* end of event message */
375 if (!(inbuf->inputstate & INS_DLE_command))
376 dev_notice(cs->dev,
377 "received <DLE>. without <DLE>X\n");
378 inbuf->inputstate &= ~INS_DLE_command;
379 /* return to data mode if in DLE mode */
380 if (cs->dle)
381 inbuf->inputstate &= ~INS_command;
382 inbuf->head++; /* byte consumed */
383 break;
384 case DLE_FLAG: /* DLE in data stream */
385 /* mark as quoted */
386 inbuf->inputstate |= INS_DLE_char;
387 if (!(cs->dle || inbuf->inputstate & INS_DLE_command))
388 dev_notice(cs->dev,
389 "received <DLE><DLE> not in DLE mode\n");
390 break; /* quoted byte left in buffer */
391 default:
392 dev_notice(cs->dev, "received <DLE><%02x>\n",
393 inbuf->data[inbuf->head]);
394 /* quoted byte left in buffer */
395 }
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800396}
397
Tilman Schmidt1cec9722009-10-06 12:19:01 +0000398/**
399 * gigaset_m10x_input() - process a block of data received from the device
400 * @inbuf: received data and device descriptor structure.
401 *
402 * Called by hardware module {ser,usb}_gigaset with a block of received
403 * bytes. Separates the bytes received over the serial data channel into
404 * user data and command replies (locked/unlocked) according to the
405 * current state of the interface.
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800406 */
407void gigaset_m10x_input(struct inbuf_t *inbuf)
408{
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000409 struct cardstate *cs = inbuf->cs;
410 unsigned numbytes, procbytes;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800411
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000412 gig_dbg(DEBUG_INTR, "buffer state: %u -> %u", inbuf->head, inbuf->tail);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800413
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000414 while (inbuf->head != inbuf->tail) {
415 /* check for DLE escape */
416 handle_dle(inbuf);
417
418 /* process a contiguous block of bytes */
419 numbytes = (inbuf->head > inbuf->tail ?
420 RBUFSIZE : inbuf->tail) - inbuf->head;
Tilman Schmidt784d5852006-04-10 22:55:04 -0700421 gig_dbg(DEBUG_INTR, "processing %u bytes", numbytes);
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000422 /*
423 * numbytes may be 0 if handle_dle() ate the last byte.
424 * This does no harm, *_loop() will just return 0 immediately.
425 */
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800426
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000427 if (cs->mstate == MS_LOCKED)
428 procbytes = lock_loop(numbytes, inbuf);
429 else if (inbuf->inputstate & INS_command)
430 procbytes = cmd_loop(numbytes, inbuf);
431 else if (cs->bcs->proto2 == L2_HDLC)
432 procbytes = hdlc_loop(numbytes, inbuf);
433 else
434 procbytes = iraw_loop(numbytes, inbuf);
435 inbuf->head += procbytes;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800436
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000437 /* check for buffer wraparound */
438 if (inbuf->head >= RBUFSIZE)
439 inbuf->head = 0;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800440
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000441 gig_dbg(DEBUG_INTR, "head set to %u", inbuf->head);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800442 }
443}
Adrian Bunkd5c16822007-02-20 13:58:17 -0800444EXPORT_SYMBOL_GPL(gigaset_m10x_input);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800445
446
447/* == data output ========================================================== */
448
Tilman Schmidt088ec0c2009-10-06 12:19:07 +0000449/*
450 * Encode a data packet into an octet stuffed HDLC frame with FCS,
451 * opening and closing flags, preserving headroom data.
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800452 * parameters:
Tilman Schmidt088ec0c2009-10-06 12:19:07 +0000453 * skb skb containing original packet (freed upon return)
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800454 * Return value:
455 * pointer to newly allocated skb containing the result frame
Tilman Schmidt4dd82302009-10-25 09:29:57 +0000456 * and the original link layer header, NULL on error
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800457 */
Tilman Schmidt4dd82302009-10-25 09:29:57 +0000458static struct sk_buff *HDLC_Encode(struct sk_buff *skb)
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800459{
460 struct sk_buff *hdlc_skb;
461 __u16 fcs;
462 unsigned char c;
463 unsigned char *cp;
464 int len;
465 unsigned int stuf_cnt;
466
467 stuf_cnt = 0;
468 fcs = PPP_INITFCS;
469 cp = skb->data;
470 len = skb->len;
471 while (len--) {
472 if (muststuff(*cp))
473 stuf_cnt++;
474 fcs = crc_ccitt_byte(fcs, *cp++);
475 }
Tilman Schmidt784d5852006-04-10 22:55:04 -0700476 fcs ^= 0xffff; /* complement */
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800477
478 /* size of new buffer: original size + number of stuffing bytes
479 * + 2 bytes FCS + 2 stuffing bytes for FCS (if needed) + 2 flag bytes
Tilman Schmidt4dd82302009-10-25 09:29:57 +0000480 * + room for link layer header
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800481 */
Tilman Schmidt4dd82302009-10-25 09:29:57 +0000482 hdlc_skb = dev_alloc_skb(skb->len + stuf_cnt + 6 + skb->mac_len);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800483 if (!hdlc_skb) {
Tilman Schmidt4dd82302009-10-25 09:29:57 +0000484 dev_kfree_skb_any(skb);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800485 return NULL;
486 }
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800487
Tilman Schmidt4dd82302009-10-25 09:29:57 +0000488 /* Copy link layer header into new skb */
489 skb_reset_mac_header(hdlc_skb);
490 skb_reserve(hdlc_skb, skb->mac_len);
491 memcpy(skb_mac_header(hdlc_skb), skb_mac_header(skb), skb->mac_len);
492 hdlc_skb->mac_len = skb->mac_len;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800493
494 /* Add flag sequence in front of everything.. */
495 *(skb_put(hdlc_skb, 1)) = PPP_FLAG;
496
497 /* Perform byte stuffing while copying data. */
498 while (skb->len--) {
499 if (muststuff(*skb->data)) {
500 *(skb_put(hdlc_skb, 1)) = PPP_ESCAPE;
501 *(skb_put(hdlc_skb, 1)) = (*skb->data++) ^ PPP_TRANS;
502 } else
503 *(skb_put(hdlc_skb, 1)) = *skb->data++;
504 }
505
506 /* Finally add FCS (byte stuffed) and flag sequence */
Tilman Schmidt784d5852006-04-10 22:55:04 -0700507 c = (fcs & 0x00ff); /* least significant byte first */
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800508 if (muststuff(c)) {
509 *(skb_put(hdlc_skb, 1)) = PPP_ESCAPE;
510 c ^= PPP_TRANS;
511 }
512 *(skb_put(hdlc_skb, 1)) = c;
513
514 c = ((fcs >> 8) & 0x00ff);
515 if (muststuff(c)) {
516 *(skb_put(hdlc_skb, 1)) = PPP_ESCAPE;
517 c ^= PPP_TRANS;
518 }
519 *(skb_put(hdlc_skb, 1)) = c;
520
521 *(skb_put(hdlc_skb, 1)) = PPP_FLAG;
522
Tilman Schmidt4dd82302009-10-25 09:29:57 +0000523 dev_kfree_skb_any(skb);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800524 return hdlc_skb;
525}
526
Tilman Schmidt088ec0c2009-10-06 12:19:07 +0000527/*
528 * Encode a data packet into an octet stuffed raw bit inverted frame,
529 * preserving headroom data.
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800530 * parameters:
Tilman Schmidt088ec0c2009-10-06 12:19:07 +0000531 * skb skb containing original packet (freed upon return)
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800532 * Return value:
533 * pointer to newly allocated skb containing the result frame
Tilman Schmidt4dd82302009-10-25 09:29:57 +0000534 * and the original link layer header, NULL on error
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800535 */
Tilman Schmidt4dd82302009-10-25 09:29:57 +0000536static struct sk_buff *iraw_encode(struct sk_buff *skb)
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800537{
538 struct sk_buff *iraw_skb;
539 unsigned char c;
540 unsigned char *cp;
541 int len;
542
Tilman Schmidt4dd82302009-10-25 09:29:57 +0000543 /* size of new buffer (worst case = every byte must be stuffed):
544 * 2 * original size + room for link layer header
545 */
Joe Perches475be4d2012-02-19 19:52:38 -0800546 iraw_skb = dev_alloc_skb(2 * skb->len + skb->mac_len);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800547 if (!iraw_skb) {
Tilman Schmidt4dd82302009-10-25 09:29:57 +0000548 dev_kfree_skb_any(skb);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800549 return NULL;
550 }
Tilman Schmidt088ec0c2009-10-06 12:19:07 +0000551
Tilman Schmidt4dd82302009-10-25 09:29:57 +0000552 /* copy link layer header into new skb */
553 skb_reset_mac_header(iraw_skb);
554 skb_reserve(iraw_skb, skb->mac_len);
555 memcpy(skb_mac_header(iraw_skb), skb_mac_header(skb), skb->mac_len);
556 iraw_skb->mac_len = skb->mac_len;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800557
Tilman Schmidt4dd82302009-10-25 09:29:57 +0000558 /* copy and stuff data */
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800559 cp = skb->data;
560 len = skb->len;
561 while (len--) {
Akinobu Mita17b3cff2006-12-08 02:36:30 -0800562 c = bitrev8(*cp++);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800563 if (c == DLE_FLAG)
564 *(skb_put(iraw_skb, 1)) = c;
565 *(skb_put(iraw_skb, 1)) = c;
566 }
Tilman Schmidt4dd82302009-10-25 09:29:57 +0000567 dev_kfree_skb_any(skb);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800568 return iraw_skb;
569}
570
Tilman Schmidt1cec9722009-10-06 12:19:01 +0000571/**
572 * gigaset_m10x_send_skb() - queue an skb for sending
573 * @bcs: B channel descriptor structure.
574 * @skb: data to send.
575 *
Tilman Schmidt088ec0c2009-10-06 12:19:07 +0000576 * Called by LL to encode and queue an skb for sending, and start
Tilman Schmidt1cec9722009-10-06 12:19:01 +0000577 * transmission if necessary.
Tilman Schmidt088ec0c2009-10-06 12:19:07 +0000578 * Once the payload data has been transmitted completely, gigaset_skb_sent()
Tilman Schmidt4dd82302009-10-25 09:29:57 +0000579 * will be called with the skb's link layer header preserved.
Tilman Schmidt1cec9722009-10-06 12:19:01 +0000580 *
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800581 * Return value:
Tilman Schmidt1cec9722009-10-06 12:19:01 +0000582 * number of bytes accepted for sending (skb->len) if ok,
583 * error code < 0 (eg. -ENOMEM) on error
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800584 */
585int gigaset_m10x_send_skb(struct bc_state *bcs, struct sk_buff *skb)
586{
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000587 struct cardstate *cs = bcs->cs;
Tilman Schmidtd48c7782006-04-10 22:55:08 -0700588 unsigned len = skb->len;
Tilman Schmidt69049cc2006-04-10 22:55:16 -0700589 unsigned long flags;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800590
Tilman Schmidt088ec0c2009-10-06 12:19:07 +0000591 if (bcs->proto2 == L2_HDLC)
Tilman Schmidt4dd82302009-10-25 09:29:57 +0000592 skb = HDLC_Encode(skb);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800593 else
Tilman Schmidt4dd82302009-10-25 09:29:57 +0000594 skb = iraw_encode(skb);
Tilman Schmidt784d5852006-04-10 22:55:04 -0700595 if (!skb) {
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000596 dev_err(cs->dev,
Tilman Schmidt50027792008-07-23 21:28:27 -0700597 "unable to allocate memory for encoding!\n");
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800598 return -ENOMEM;
Tilman Schmidt784d5852006-04-10 22:55:04 -0700599 }
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800600
601 skb_queue_tail(&bcs->squeue, skb);
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000602 spin_lock_irqsave(&cs->lock, flags);
603 if (cs->connected)
604 tasklet_schedule(&cs->write_tasklet);
605 spin_unlock_irqrestore(&cs->lock, flags);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800606
607 return len; /* ok so far */
608}
Adrian Bunkd5c16822007-02-20 13:58:17 -0800609EXPORT_SYMBOL_GPL(gigaset_m10x_send_skb);