2 * Copyright (C) ST-Ericsson AB 2010
3 * Author: Sjur Brendeland/sjur.brandeland@stericsson.com
4 * License terms: GNU General Public License (GPL) version 2
7 #define pr_fmt(fmt) KBUILD_MODNAME ":%s(): " fmt, __func__
9 #include <linux/stddef.h>
10 #include <linux/spinlock.h>
11 #include <linux/slab.h>
12 #include <net/caif/caif_layer.h>
13 #include <net/caif/cfpkt.h>
14 #include <net/caif/cfserl.h>
16 #define container_obj(layr) ((struct cfserl *) layr)
18 #define CFSERL_STX 0x02
19 #define SERIAL_MINIUM_PACKET_SIZE 4
20 #define SERIAL_MAX_FRAMESIZE 4096
23 struct cfpkt
*incomplete_frm
;
24 /* Protects parallel processing of incoming packets */
29 static int cfserl_receive(struct cflayer
*layr
, struct cfpkt
*pkt
);
30 static int cfserl_transmit(struct cflayer
*layr
, struct cfpkt
*pkt
);
31 static void cfserl_ctrlcmd(struct cflayer
*layr
, enum caif_ctrlcmd ctrl
,
34 struct cflayer
*cfserl_create(int type
, int instance
, bool use_stx
)
36 struct cfserl
*this = kmalloc(sizeof(struct cfserl
), GFP_ATOMIC
);
38 pr_warn("Out of memory\n");
41 caif_assert(offsetof(struct cfserl
, layer
) == 0);
42 memset(this, 0, sizeof(struct cfserl
));
43 this->layer
.receive
= cfserl_receive
;
44 this->layer
.transmit
= cfserl_transmit
;
45 this->layer
.ctrlcmd
= cfserl_ctrlcmd
;
46 this->layer
.type
= type
;
47 this->usestx
= use_stx
;
48 spin_lock_init(&this->sync
);
49 snprintf(this->layer
.name
, CAIF_LAYER_NAME_SZ
, "ser1");
53 static int cfserl_receive(struct cflayer
*l
, struct cfpkt
*newpkt
)
55 struct cfserl
*layr
= container_obj(l
);
57 struct cfpkt
*pkt
= NULL
;
58 struct cfpkt
*tail_pkt
= NULL
;
65 caif_assert(newpkt
!= NULL
);
66 spin_lock(&layr
->sync
);
68 if (layr
->incomplete_frm
!= NULL
) {
69 layr
->incomplete_frm
=
70 cfpkt_append(layr
->incomplete_frm
, newpkt
, expectlen
);
71 pkt
= layr
->incomplete_frm
;
73 spin_unlock(&layr
->sync
);
79 layr
->incomplete_frm
= NULL
;
82 /* Search for STX at start of pkt if STX is used */
84 cfpkt_extr_head(pkt
, &tmp8
, 1);
85 if (tmp8
!= CFSERL_STX
) {
86 while (cfpkt_more(pkt
)
87 && tmp8
!= CFSERL_STX
) {
88 cfpkt_extr_head(pkt
, &tmp8
, 1);
90 if (!cfpkt_more(pkt
)) {
92 layr
->incomplete_frm
= NULL
;
93 spin_unlock(&layr
->sync
);
99 pkt_len
= cfpkt_getlen(pkt
);
102 * pkt_len is the accumulated length of the packet data
103 * we have received so far.
104 * Exit if frame doesn't hold length.
109 cfpkt_add_head(pkt
, &stx
, 1);
110 layr
->incomplete_frm
= pkt
;
111 spin_unlock(&layr
->sync
);
116 * Find length of frame.
117 * expectlen is the length we need for a full frame.
119 cfpkt_peek_head(pkt
, &tmp
, 2);
120 expectlen
= le16_to_cpu(tmp
) + 2;
122 * Frame error handling
124 if (expectlen
< SERIAL_MINIUM_PACKET_SIZE
125 || expectlen
> SERIAL_MAX_FRAMESIZE
) {
129 layr
->incomplete_frm
= NULL
;
131 spin_unlock(&layr
->sync
);
137 if (pkt_len
< expectlen
) {
138 /* Too little received data */
140 cfpkt_add_head(pkt
, &stx
, 1);
141 layr
->incomplete_frm
= pkt
;
142 spin_unlock(&layr
->sync
);
147 * Enough data for at least one frame.
148 * Split the frame, if too long
150 if (pkt_len
> expectlen
)
151 tail_pkt
= cfpkt_split(pkt
, expectlen
);
155 /* Send the first part of packet upwards.*/
156 spin_unlock(&layr
->sync
);
157 ret
= layr
->layer
.up
->receive(layr
->layer
.up
, pkt
);
158 spin_lock(&layr
->sync
);
159 if (ret
== -EILSEQ
) {
161 if (tail_pkt
!= NULL
)
162 pkt
= cfpkt_append(pkt
, tail_pkt
, 0);
163 /* Start search for next STX if frame failed */
173 } while (pkt
!= NULL
);
175 spin_unlock(&layr
->sync
);
179 static int cfserl_transmit(struct cflayer
*layer
, struct cfpkt
*newpkt
)
181 struct cfserl
*layr
= container_obj(layer
);
182 u8 tmp8
= CFSERL_STX
;
184 cfpkt_add_head(newpkt
, &tmp8
, 1);
185 return layer
->dn
->transmit(layer
->dn
, newpkt
);
188 static void cfserl_ctrlcmd(struct cflayer
*layr
, enum caif_ctrlcmd ctrl
,
191 layr
->up
->ctrlcmd(layr
->up
, ctrl
, phyid
);