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 instance, bool use_stx)
36 struct cfserl *this = kzalloc(sizeof(struct cfserl), GFP_ATOMIC);
39 caif_assert(offsetof(struct cfserl, layer) == 0);
40 this->layer.receive = cfserl_receive;
41 this->layer.transmit = cfserl_transmit;
42 this->layer.ctrlcmd = cfserl_ctrlcmd;
43 this->usestx = use_stx;
44 spin_lock_init(&this->sync);
45 snprintf(this->layer.name, CAIF_LAYER_NAME_SZ, "ser1");
49 static int cfserl_receive(struct cflayer *l, struct cfpkt *newpkt)
51 struct cfserl *layr = container_obj(l);
53 struct cfpkt *pkt = NULL;
54 struct cfpkt *tail_pkt = NULL;
61 caif_assert(newpkt != NULL);
62 spin_lock(&layr->sync);
64 if (layr->incomplete_frm != NULL) {
65 layr->incomplete_frm =
66 cfpkt_append(layr->incomplete_frm, newpkt, expectlen);
67 pkt = layr->incomplete_frm;
69 spin_unlock(&layr->sync);
75 layr->incomplete_frm = NULL;
78 /* Search for STX at start of pkt if STX is used */
80 cfpkt_extr_head(pkt, &tmp8, 1);
81 if (tmp8 != CFSERL_STX) {
82 while (cfpkt_more(pkt)
83 && tmp8 != CFSERL_STX) {
84 cfpkt_extr_head(pkt, &tmp8, 1);
86 if (!cfpkt_more(pkt)) {
88 layr->incomplete_frm = NULL;
89 spin_unlock(&layr->sync);
95 pkt_len = cfpkt_getlen(pkt);
98 * pkt_len is the accumulated length of the packet data
99 * we have received so far.
100 * Exit if frame doesn't hold length.
105 cfpkt_add_head(pkt, &stx, 1);
106 layr->incomplete_frm = pkt;
107 spin_unlock(&layr->sync);
112 * Find length of frame.
113 * expectlen is the length we need for a full frame.
115 cfpkt_peek_head(pkt, &tmp, 2);
116 expectlen = le16_to_cpu(tmp) + 2;
118 * Frame error handling
120 if (expectlen < SERIAL_MINIUM_PACKET_SIZE
121 || expectlen > SERIAL_MAX_FRAMESIZE) {
125 layr->incomplete_frm = NULL;
127 spin_unlock(&layr->sync);
133 if (pkt_len < expectlen) {
134 /* Too little received data */
136 cfpkt_add_head(pkt, &stx, 1);
137 layr->incomplete_frm = pkt;
138 spin_unlock(&layr->sync);
143 * Enough data for at least one frame.
144 * Split the frame, if too long
146 if (pkt_len > expectlen)
147 tail_pkt = cfpkt_split(pkt, expectlen);
151 /* Send the first part of packet upwards.*/
152 spin_unlock(&layr->sync);
153 ret = layr->layer.up->receive(layr->layer.up, pkt);
154 spin_lock(&layr->sync);
155 if (ret == -EILSEQ) {
157 if (tail_pkt != NULL)
158 pkt = cfpkt_append(pkt, tail_pkt, 0);
159 /* Start search for next STX if frame failed */
169 } while (pkt != NULL);
171 spin_unlock(&layr->sync);
175 static int cfserl_transmit(struct cflayer *layer, struct cfpkt *newpkt)
177 struct cfserl *layr = container_obj(layer);
178 u8 tmp8 = CFSERL_STX;
180 cfpkt_add_head(newpkt, &tmp8, 1);
181 return layer->dn->transmit(layer->dn, newpkt);
184 static void cfserl_ctrlcmd(struct cflayer *layr, enum caif_ctrlcmd ctrl,
187 layr->up->ctrlcmd(layr->up, ctrl, phyid);