blob: c5016bd2d94f6d10f132a288e3b9b11e5185b66f [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
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000129/* set up next receive skb for data mode
130 */
131static void new_rcv_skb(struct bc_state *bcs)
132{
133 struct cardstate *cs = bcs->cs;
134 unsigned short hw_hdr_len = cs->hw_hdr_len;
135
136 if (bcs->ignore) {
137 bcs->skb = NULL;
138 return;
139 }
140
141 bcs->skb = dev_alloc_skb(SBUFSIZE + hw_hdr_len);
142 if (bcs->skb == NULL) {
143 dev_warn(cs->dev, "could not allocate new skb\n");
144 return;
145 }
146 skb_reserve(bcs->skb, hw_hdr_len);
147}
148
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800149/* process a block of received bytes in HDLC data mode
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000150 * (mstate != MS_LOCKED && !(inputstate & INS_command) && proto2 == L2_HDLC)
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800151 * Collect HDLC frames, undoing byte stuffing and watching for DLE escapes.
152 * When a frame is complete, check the FCS and pass valid frames to the LL.
153 * If DLE is encountered, return immediately to let the caller handle it.
154 * Return value:
155 * number of processed bytes
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800156 */
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000157static unsigned hdlc_loop(unsigned numbytes, struct inbuf_t *inbuf)
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800158{
159 struct cardstate *cs = inbuf->cs;
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000160 struct bc_state *bcs = cs->bcs;
Tilman Schmidtd48c7782006-04-10 22:55:08 -0700161 int inputstate = bcs->inputstate;
162 __u16 fcs = bcs->fcs;
163 struct sk_buff *skb = bcs->skb;
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000164 unsigned char *src = inbuf->data + inbuf->head;
165 unsigned procbytes = 0;
166 unsigned char c;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800167
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000168 if (inputstate & INS_byte_stuff) {
169 if (!numbytes)
170 return 0;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800171 inputstate &= ~INS_byte_stuff;
172 goto byte_stuff;
173 }
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000174
175 while (procbytes < numbytes) {
176 c = *src++;
177 procbytes++;
178 if (c == DLE_FLAG) {
179 if (inputstate & INS_DLE_char) {
180 /* quoted DLE: clear quote flag */
181 inputstate &= ~INS_DLE_char;
182 } else if (cs->dle || (inputstate & INS_DLE_command)) {
183 /* DLE escape, pass up for handling */
184 inputstate |= INS_DLE_char;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800185 break;
186 }
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000187 }
188
189 if (c == PPP_ESCAPE) {
190 /* byte stuffing indicator: pull in next byte */
191 if (procbytes >= numbytes) {
192 /* end of buffer, save for later processing */
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800193 inputstate |= INS_byte_stuff;
194 break;
195 }
196byte_stuff:
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000197 c = *src++;
198 procbytes++;
199 if (c == DLE_FLAG) {
200 if (inputstate & INS_DLE_char) {
201 /* quoted DLE: clear quote flag */
202 inputstate &= ~INS_DLE_char;
203 } else if (cs->dle ||
204 (inputstate & INS_DLE_command)) {
205 /* DLE escape, pass up for handling */
206 inputstate |=
207 INS_DLE_char | INS_byte_stuff;
208 break;
209 }
210 }
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800211 c ^= PPP_TRANS;
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000212#ifdef CONFIG_GIGASET_DEBUG
213 if (!muststuff(c))
Tilman Schmidt784d5852006-04-10 22:55:04 -0700214 gig_dbg(DEBUG_HDLC, "byte stuffed: 0x%02x", c);
Tilman Schmidt236b87c2008-12-26 01:22:03 -0800215#endif
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000216 } else if (c == PPP_FLAG) {
217 /* end of frame: process content if any */
218 if (inputstate & INS_have_data) {
Tilman Schmidt784d5852006-04-10 22:55:04 -0700219 gig_dbg(DEBUG_HDLC,
220 "7e----------------------------");
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800221
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000222 /* check and pass received frame */
223 if (!skb) {
224 /* skipped frame */
225 gigaset_isdn_rcv_err(bcs);
226 } else if (skb->len < 2) {
227 /* frame too short for FCS */
228 dev_warn(cs->dev,
229 "short frame (%d)\n",
230 skb->len);
231 gigaset_isdn_rcv_err(bcs);
232 dev_kfree_skb_any(skb);
233 } else if (fcs != PPP_GOODFCS) {
234 /* frame check error */
Tilman Schmidt784d5852006-04-10 22:55:04 -0700235 dev_err(cs->dev,
Tilman Schmidt0a305722009-05-13 12:44:18 +0000236 "Checksum failed, %u bytes corrupted!\n",
237 skb->len);
Tilman Schmidt088ec0c2009-10-06 12:19:07 +0000238 gigaset_isdn_rcv_err(bcs);
Tilman Schmidt4dd82302009-10-25 09:29:57 +0000239 dev_kfree_skb_any(skb);
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000240 } else {
241 /* good frame */
Tilman Schmidt088ec0c2009-10-06 12:19:07 +0000242 __skb_trim(skb, skb->len - 2);
243 gigaset_skb_rcvd(bcs, skb);
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000244 }
245
246 /* prepare reception of next frame */
247 inputstate &= ~INS_have_data;
248 new_rcv_skb(bcs);
249 skb = bcs->skb;
250 } else {
251 /* empty frame (7E 7E) */
252#ifdef CONFIG_GIGASET_DEBUG
253 ++bcs->emptycount;
254#endif
255 if (!skb) {
256 /* skipped (?) */
257 gigaset_isdn_rcv_err(bcs);
258 new_rcv_skb(bcs);
259 skb = bcs->skb;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800260 }
261 }
262
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800263 fcs = PPP_INITFCS;
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000264 continue;
265#ifdef CONFIG_GIGASET_DEBUG
266 } else if (muststuff(c)) {
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800267 /* Should not happen. Possible after ZDLE=1<CR><LF>. */
Tilman Schmidt784d5852006-04-10 22:55:04 -0700268 gig_dbg(DEBUG_HDLC, "not byte stuffed: 0x%02x", c);
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000269#endif
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800270 }
271
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000272 /* regular data byte, append to skb */
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800273#ifdef CONFIG_GIGASET_DEBUG
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000274 if (!(inputstate & INS_have_data)) {
Tilman Schmidt784d5852006-04-10 22:55:04 -0700275 gig_dbg(DEBUG_HDLC, "7e (%d x) ================",
276 bcs->emptycount);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800277 bcs->emptycount = 0;
278 }
279#endif
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800280 inputstate |= INS_have_data;
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000281 if (skb) {
282 if (skb->len == SBUFSIZE) {
Tilman Schmidt784d5852006-04-10 22:55:04 -0700283 dev_warn(cs->dev, "received packet too long\n");
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800284 dev_kfree_skb_any(skb);
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000285 /* skip remainder of packet */
286 bcs->skb = skb = NULL;
287 } else {
288 *__skb_put(skb, 1) = c;
289 fcs = crc_ccitt_byte(fcs, c);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800290 }
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800291 }
292 }
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000293
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800294 bcs->inputstate = inputstate;
295 bcs->fcs = fcs;
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000296 return procbytes;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800297}
298
299/* process a block of received bytes in transparent data mode
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000300 * (mstate != MS_LOCKED && !(inputstate & INS_command) && proto2 != L2_HDLC)
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800301 * Invert bytes, undoing byte stuffing and watching for DLE escapes.
302 * If DLE is encountered, return immediately to let the caller handle it.
303 * Return value:
304 * number of processed bytes
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800305 */
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000306static unsigned iraw_loop(unsigned numbytes, struct inbuf_t *inbuf)
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800307{
308 struct cardstate *cs = inbuf->cs;
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000309 struct bc_state *bcs = cs->bcs;
Tilman Schmidtd48c7782006-04-10 22:55:08 -0700310 int inputstate = bcs->inputstate;
311 struct sk_buff *skb = bcs->skb;
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000312 unsigned char *src = inbuf->data + inbuf->head;
313 unsigned procbytes = 0;
314 unsigned char c;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800315
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000316 if (!skb) {
317 /* skip this block */
318 new_rcv_skb(bcs);
319 return numbytes;
320 }
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800321
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000322 while (procbytes < numbytes && skb->len < SBUFSIZE) {
323 c = *src++;
324 procbytes++;
325
326 if (c == DLE_FLAG) {
327 if (inputstate & INS_DLE_char) {
328 /* quoted DLE: clear quote flag */
329 inputstate &= ~INS_DLE_char;
330 } else if (cs->dle || (inputstate & INS_DLE_command)) {
331 /* DLE escape, pass up for handling */
332 inputstate |= INS_DLE_char;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800333 break;
334 }
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800335 }
336
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000337 /* regular data byte: append to current skb */
338 inputstate |= INS_have_data;
339 *__skb_put(skb, 1) = bitrev8(c);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800340 }
341
342 /* pass data up */
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000343 if (inputstate & INS_have_data) {
344 gigaset_skb_rcvd(bcs, skb);
345 inputstate &= ~INS_have_data;
346 new_rcv_skb(bcs);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800347 }
348
349 bcs->inputstate = inputstate;
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000350 return procbytes;
351}
352
353/* process DLE escapes
354 * Called whenever a DLE sequence might be encountered in the input stream.
355 * Either processes the entire DLE sequence or, if that isn't possible,
356 * notes the fact that an initial DLE has been received in the INS_DLE_char
357 * inputstate flag and resumes processing of the sequence on the next call.
358 */
359static void handle_dle(struct inbuf_t *inbuf)
360{
361 struct cardstate *cs = inbuf->cs;
362
363 if (cs->mstate == MS_LOCKED)
364 return; /* no DLE processing in lock mode */
365
366 if (!(inbuf->inputstate & INS_DLE_char)) {
367 /* no DLE pending */
368 if (inbuf->data[inbuf->head] == DLE_FLAG &&
369 (cs->dle || inbuf->inputstate & INS_DLE_command)) {
370 /* start of DLE sequence */
371 inbuf->head++;
372 if (inbuf->head == inbuf->tail ||
373 inbuf->head == RBUFSIZE) {
374 /* end of buffer, save for later processing */
375 inbuf->inputstate |= INS_DLE_char;
376 return;
377 }
378 } else {
379 /* regular data byte */
380 return;
381 }
382 }
383
384 /* consume pending DLE */
385 inbuf->inputstate &= ~INS_DLE_char;
386
387 switch (inbuf->data[inbuf->head]) {
388 case 'X': /* begin of event message */
389 if (inbuf->inputstate & INS_command)
390 dev_notice(cs->dev,
391 "received <DLE>X in command mode\n");
392 inbuf->inputstate |= INS_command | INS_DLE_command;
393 inbuf->head++; /* byte consumed */
394 break;
395 case '.': /* end of event message */
396 if (!(inbuf->inputstate & INS_DLE_command))
397 dev_notice(cs->dev,
398 "received <DLE>. without <DLE>X\n");
399 inbuf->inputstate &= ~INS_DLE_command;
400 /* return to data mode if in DLE mode */
401 if (cs->dle)
402 inbuf->inputstate &= ~INS_command;
403 inbuf->head++; /* byte consumed */
404 break;
405 case DLE_FLAG: /* DLE in data stream */
406 /* mark as quoted */
407 inbuf->inputstate |= INS_DLE_char;
408 if (!(cs->dle || inbuf->inputstate & INS_DLE_command))
409 dev_notice(cs->dev,
410 "received <DLE><DLE> not in DLE mode\n");
411 break; /* quoted byte left in buffer */
412 default:
413 dev_notice(cs->dev, "received <DLE><%02x>\n",
414 inbuf->data[inbuf->head]);
415 /* quoted byte left in buffer */
416 }
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800417}
418
Tilman Schmidt1cec9722009-10-06 12:19:01 +0000419/**
420 * gigaset_m10x_input() - process a block of data received from the device
421 * @inbuf: received data and device descriptor structure.
422 *
423 * Called by hardware module {ser,usb}_gigaset with a block of received
424 * bytes. Separates the bytes received over the serial data channel into
425 * user data and command replies (locked/unlocked) according to the
426 * current state of the interface.
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800427 */
428void gigaset_m10x_input(struct inbuf_t *inbuf)
429{
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000430 struct cardstate *cs = inbuf->cs;
431 unsigned numbytes, procbytes;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800432
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000433 gig_dbg(DEBUG_INTR, "buffer state: %u -> %u", inbuf->head, inbuf->tail);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800434
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000435 while (inbuf->head != inbuf->tail) {
436 /* check for DLE escape */
437 handle_dle(inbuf);
438
439 /* process a contiguous block of bytes */
440 numbytes = (inbuf->head > inbuf->tail ?
441 RBUFSIZE : inbuf->tail) - inbuf->head;
Tilman Schmidt784d5852006-04-10 22:55:04 -0700442 gig_dbg(DEBUG_INTR, "processing %u bytes", numbytes);
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000443 /*
444 * numbytes may be 0 if handle_dle() ate the last byte.
445 * This does no harm, *_loop() will just return 0 immediately.
446 */
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800447
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000448 if (cs->mstate == MS_LOCKED)
449 procbytes = lock_loop(numbytes, inbuf);
450 else if (inbuf->inputstate & INS_command)
451 procbytes = cmd_loop(numbytes, inbuf);
452 else if (cs->bcs->proto2 == L2_HDLC)
453 procbytes = hdlc_loop(numbytes, inbuf);
454 else
455 procbytes = iraw_loop(numbytes, inbuf);
456 inbuf->head += procbytes;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800457
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000458 /* check for buffer wraparound */
459 if (inbuf->head >= RBUFSIZE)
460 inbuf->head = 0;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800461
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000462 gig_dbg(DEBUG_INTR, "head set to %u", inbuf->head);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800463 }
464}
Adrian Bunkd5c16822007-02-20 13:58:17 -0800465EXPORT_SYMBOL_GPL(gigaset_m10x_input);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800466
467
468/* == data output ========================================================== */
469
Tilman Schmidt088ec0c2009-10-06 12:19:07 +0000470/*
471 * Encode a data packet into an octet stuffed HDLC frame with FCS,
472 * opening and closing flags, preserving headroom data.
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800473 * parameters:
Tilman Schmidt088ec0c2009-10-06 12:19:07 +0000474 * skb skb containing original packet (freed upon return)
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800475 * Return value:
476 * pointer to newly allocated skb containing the result frame
Tilman Schmidt4dd82302009-10-25 09:29:57 +0000477 * and the original link layer header, NULL on error
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800478 */
Tilman Schmidt4dd82302009-10-25 09:29:57 +0000479static struct sk_buff *HDLC_Encode(struct sk_buff *skb)
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800480{
481 struct sk_buff *hdlc_skb;
482 __u16 fcs;
483 unsigned char c;
484 unsigned char *cp;
485 int len;
486 unsigned int stuf_cnt;
487
488 stuf_cnt = 0;
489 fcs = PPP_INITFCS;
490 cp = skb->data;
491 len = skb->len;
492 while (len--) {
493 if (muststuff(*cp))
494 stuf_cnt++;
495 fcs = crc_ccitt_byte(fcs, *cp++);
496 }
Tilman Schmidt784d5852006-04-10 22:55:04 -0700497 fcs ^= 0xffff; /* complement */
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800498
499 /* size of new buffer: original size + number of stuffing bytes
500 * + 2 bytes FCS + 2 stuffing bytes for FCS (if needed) + 2 flag bytes
Tilman Schmidt4dd82302009-10-25 09:29:57 +0000501 * + room for link layer header
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800502 */
Tilman Schmidt4dd82302009-10-25 09:29:57 +0000503 hdlc_skb = dev_alloc_skb(skb->len + stuf_cnt + 6 + skb->mac_len);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800504 if (!hdlc_skb) {
Tilman Schmidt4dd82302009-10-25 09:29:57 +0000505 dev_kfree_skb_any(skb);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800506 return NULL;
507 }
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800508
Tilman Schmidt4dd82302009-10-25 09:29:57 +0000509 /* Copy link layer header into new skb */
510 skb_reset_mac_header(hdlc_skb);
511 skb_reserve(hdlc_skb, skb->mac_len);
512 memcpy(skb_mac_header(hdlc_skb), skb_mac_header(skb), skb->mac_len);
513 hdlc_skb->mac_len = skb->mac_len;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800514
515 /* Add flag sequence in front of everything.. */
516 *(skb_put(hdlc_skb, 1)) = PPP_FLAG;
517
518 /* Perform byte stuffing while copying data. */
519 while (skb->len--) {
520 if (muststuff(*skb->data)) {
521 *(skb_put(hdlc_skb, 1)) = PPP_ESCAPE;
522 *(skb_put(hdlc_skb, 1)) = (*skb->data++) ^ PPP_TRANS;
523 } else
524 *(skb_put(hdlc_skb, 1)) = *skb->data++;
525 }
526
527 /* Finally add FCS (byte stuffed) and flag sequence */
Tilman Schmidt784d5852006-04-10 22:55:04 -0700528 c = (fcs & 0x00ff); /* least significant byte first */
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800529 if (muststuff(c)) {
530 *(skb_put(hdlc_skb, 1)) = PPP_ESCAPE;
531 c ^= PPP_TRANS;
532 }
533 *(skb_put(hdlc_skb, 1)) = c;
534
535 c = ((fcs >> 8) & 0x00ff);
536 if (muststuff(c)) {
537 *(skb_put(hdlc_skb, 1)) = PPP_ESCAPE;
538 c ^= PPP_TRANS;
539 }
540 *(skb_put(hdlc_skb, 1)) = c;
541
542 *(skb_put(hdlc_skb, 1)) = PPP_FLAG;
543
Tilman Schmidt4dd82302009-10-25 09:29:57 +0000544 dev_kfree_skb_any(skb);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800545 return hdlc_skb;
546}
547
Tilman Schmidt088ec0c2009-10-06 12:19:07 +0000548/*
549 * Encode a data packet into an octet stuffed raw bit inverted frame,
550 * preserving headroom data.
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800551 * parameters:
Tilman Schmidt088ec0c2009-10-06 12:19:07 +0000552 * skb skb containing original packet (freed upon return)
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800553 * Return value:
554 * pointer to newly allocated skb containing the result frame
Tilman Schmidt4dd82302009-10-25 09:29:57 +0000555 * and the original link layer header, NULL on error
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800556 */
Tilman Schmidt4dd82302009-10-25 09:29:57 +0000557static struct sk_buff *iraw_encode(struct sk_buff *skb)
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800558{
559 struct sk_buff *iraw_skb;
560 unsigned char c;
561 unsigned char *cp;
562 int len;
563
Tilman Schmidt4dd82302009-10-25 09:29:57 +0000564 /* size of new buffer (worst case = every byte must be stuffed):
565 * 2 * original size + room for link layer header
566 */
567 iraw_skb = dev_alloc_skb(2*skb->len + skb->mac_len);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800568 if (!iraw_skb) {
Tilman Schmidt4dd82302009-10-25 09:29:57 +0000569 dev_kfree_skb_any(skb);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800570 return NULL;
571 }
Tilman Schmidt088ec0c2009-10-06 12:19:07 +0000572
Tilman Schmidt4dd82302009-10-25 09:29:57 +0000573 /* copy link layer header into new skb */
574 skb_reset_mac_header(iraw_skb);
575 skb_reserve(iraw_skb, skb->mac_len);
576 memcpy(skb_mac_header(iraw_skb), skb_mac_header(skb), skb->mac_len);
577 iraw_skb->mac_len = skb->mac_len;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800578
Tilman Schmidt4dd82302009-10-25 09:29:57 +0000579 /* copy and stuff data */
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800580 cp = skb->data;
581 len = skb->len;
582 while (len--) {
Akinobu Mita17b3cff2006-12-08 02:36:30 -0800583 c = bitrev8(*cp++);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800584 if (c == DLE_FLAG)
585 *(skb_put(iraw_skb, 1)) = c;
586 *(skb_put(iraw_skb, 1)) = c;
587 }
Tilman Schmidt4dd82302009-10-25 09:29:57 +0000588 dev_kfree_skb_any(skb);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800589 return iraw_skb;
590}
591
Tilman Schmidt1cec9722009-10-06 12:19:01 +0000592/**
593 * gigaset_m10x_send_skb() - queue an skb for sending
594 * @bcs: B channel descriptor structure.
595 * @skb: data to send.
596 *
Tilman Schmidt088ec0c2009-10-06 12:19:07 +0000597 * Called by LL to encode and queue an skb for sending, and start
Tilman Schmidt1cec9722009-10-06 12:19:01 +0000598 * transmission if necessary.
Tilman Schmidt088ec0c2009-10-06 12:19:07 +0000599 * Once the payload data has been transmitted completely, gigaset_skb_sent()
Tilman Schmidt4dd82302009-10-25 09:29:57 +0000600 * will be called with the skb's link layer header preserved.
Tilman Schmidt1cec9722009-10-06 12:19:01 +0000601 *
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800602 * Return value:
Tilman Schmidt1cec9722009-10-06 12:19:01 +0000603 * number of bytes accepted for sending (skb->len) if ok,
604 * error code < 0 (eg. -ENOMEM) on error
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800605 */
606int gigaset_m10x_send_skb(struct bc_state *bcs, struct sk_buff *skb)
607{
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000608 struct cardstate *cs = bcs->cs;
Tilman Schmidtd48c7782006-04-10 22:55:08 -0700609 unsigned len = skb->len;
Tilman Schmidt69049cc2006-04-10 22:55:16 -0700610 unsigned long flags;
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800611
Tilman Schmidt088ec0c2009-10-06 12:19:07 +0000612 if (bcs->proto2 == L2_HDLC)
Tilman Schmidt4dd82302009-10-25 09:29:57 +0000613 skb = HDLC_Encode(skb);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800614 else
Tilman Schmidt4dd82302009-10-25 09:29:57 +0000615 skb = iraw_encode(skb);
Tilman Schmidt784d5852006-04-10 22:55:04 -0700616 if (!skb) {
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000617 dev_err(cs->dev,
Tilman Schmidt50027792008-07-23 21:28:27 -0700618 "unable to allocate memory for encoding!\n");
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800619 return -ENOMEM;
Tilman Schmidt784d5852006-04-10 22:55:04 -0700620 }
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800621
622 skb_queue_tail(&bcs->squeue, skb);
Tilman Schmidt2032e2c2009-10-25 09:30:07 +0000623 spin_lock_irqsave(&cs->lock, flags);
624 if (cs->connected)
625 tasklet_schedule(&cs->write_tasklet);
626 spin_unlock_irqrestore(&cs->lock, flags);
Hansjoerg Lipp07dc1f92006-03-26 01:38:37 -0800627
628 return len; /* ok so far */
629}
Adrian Bunkd5c16822007-02-20 13:58:17 -0800630EXPORT_SYMBOL_GPL(gigaset_m10x_send_skb);