blob: 486117f72c9fb87baaf1d39ffbc7cdea33dddfaf [file] [log] [blame]
Pavan Savoy53618cc2010-04-08 13:16:53 -05001/*
2 * Shared Transport Line discipline driver Core
3 * This hooks up ST KIM driver and ST LL driver
Pavan Savoya0cc2f32010-10-06 12:18:14 -04004 * Copyright (C) 2009-2010 Texas Instruments
5 * Author: Pavan Savoy <pavan_savoy@ti.com>
Pavan Savoy53618cc2010-04-08 13:16:53 -05006 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 *
20 */
21
22#define pr_fmt(fmt) "(stc): " fmt
23#include <linux/module.h>
24#include <linux/kernel.h>
25#include <linux/init.h>
26#include <linux/tty.h>
27
Pavan Savoy5c88b022011-02-04 02:23:09 -060028#include <linux/seq_file.h>
29#include <linux/skbuff.h>
30
Pavan Savoye5558672010-09-30 16:13:30 -040031#include <linux/ti_wilink_st.h>
Pavan Savoy53618cc2010-04-08 13:16:53 -050032
Pavan Savoy53618cc2010-04-08 13:16:53 -050033/* function pointer pointing to either,
34 * st_kim_recv during registration to receive fw download responses
35 * st_int_recv after registration to receive proto stack responses
36 */
37void (*st_recv) (void*, const unsigned char*, long);
38
39/********************************************************************/
Pavan Savoy5c88b022011-02-04 02:23:09 -060040static void add_channel_to_table(struct st_data_s *st_gdata,
41 struct st_proto_s *new_proto)
Pavan Savoy53618cc2010-04-08 13:16:53 -050042{
Pavan Savoy5c88b022011-02-04 02:23:09 -060043 pr_info("%s: id %d\n", __func__, new_proto->chnl_id);
44 /* list now has the channel id as index itself */
45 st_gdata->list[new_proto->chnl_id] = new_proto;
Pavan Savoy53618cc2010-04-08 13:16:53 -050046}
Pavan Savoy5c88b022011-02-04 02:23:09 -060047
48static void remove_channel_from_table(struct st_data_s *st_gdata,
49 struct st_proto_s *proto)
50{
51 pr_info("%s: id %d\n", __func__, proto->chnl_id);
52 st_gdata->list[proto->chnl_id] = NULL;
53}
Pavan Savoy36b5aee2010-07-22 05:32:06 -050054
Pavan Savoyef04d122011-02-04 02:23:13 -060055/*
56 * called from KIM during firmware download.
57 *
58 * This is a wrapper function to tty->ops->write_room.
59 * It returns number of free space available in
60 * uart tx buffer.
61 */
62int st_get_uart_wr_room(struct st_data_s *st_gdata)
63{
64 struct tty_struct *tty;
65 if (unlikely(st_gdata == NULL || st_gdata->tty == NULL)) {
66 pr_err("tty unavailable to perform write");
67 return -1;
68 }
69 tty = st_gdata->tty;
70 return tty->ops->write_room(tty);
71}
72
Pavan Savoy53618cc2010-04-08 13:16:53 -050073/* can be called in from
74 * -- KIM (during fw download)
75 * -- ST Core (during st_write)
76 *
77 * This is the internal write function - a wrapper
78 * to tty->ops->write
79 */
80int st_int_write(struct st_data_s *st_gdata,
81 const unsigned char *data, int count)
82{
Pavan Savoy53618cc2010-04-08 13:16:53 -050083 struct tty_struct *tty;
84 if (unlikely(st_gdata == NULL || st_gdata->tty == NULL)) {
85 pr_err("tty unavailable to perform write");
Pavan Savoy70442662011-02-04 02:23:11 -060086 return -EINVAL;
Pavan Savoy53618cc2010-04-08 13:16:53 -050087 }
88 tty = st_gdata->tty;
89#ifdef VERBOSE
Pavan Savoye6d9e642010-07-22 05:32:05 -050090 print_hex_dump(KERN_DEBUG, "<out<", DUMP_PREFIX_NONE,
91 16, 1, data, count, 0);
Pavan Savoy53618cc2010-04-08 13:16:53 -050092#endif
93 return tty->ops->write(tty, data, count);
94
95}
96
97/*
98 * push the skb received to relevant
99 * protocol stacks
100 */
Pavan Savoy5c88b022011-02-04 02:23:09 -0600101void st_send_frame(unsigned char chnl_id, struct st_data_s *st_gdata)
Pavan Savoy53618cc2010-04-08 13:16:53 -0500102{
Pavan Savoy6710fcf2011-02-04 02:23:12 -0600103 pr_debug(" %s(prot:%d) ", __func__, chnl_id);
Pavan Savoy53618cc2010-04-08 13:16:53 -0500104
105 if (unlikely
106 (st_gdata == NULL || st_gdata->rx_skb == NULL
Pavan Savoy5c88b022011-02-04 02:23:09 -0600107 || st_gdata->list[chnl_id] == NULL)) {
108 pr_err("chnl_id %d not registered, no data to send?",
109 chnl_id);
Pavan Savoy53618cc2010-04-08 13:16:53 -0500110 kfree_skb(st_gdata->rx_skb);
111 return;
112 }
113 /* this cannot fail
114 * this shouldn't take long
115 * - should be just skb_queue_tail for the
116 * protocol stack driver
117 */
Pavan Savoy5c88b022011-02-04 02:23:09 -0600118 if (likely(st_gdata->list[chnl_id]->recv != NULL)) {
Pavan Savoybb8f3c02010-07-22 05:32:07 -0500119 if (unlikely
Pavan Savoy5c88b022011-02-04 02:23:09 -0600120 (st_gdata->list[chnl_id]->recv
121 (st_gdata->list[chnl_id]->priv_data, st_gdata->rx_skb)
Pavan Savoy320920c2010-07-14 08:21:12 -0500122 != 0)) {
Pavan Savoy5c88b022011-02-04 02:23:09 -0600123 pr_err(" proto stack %d's ->recv failed", chnl_id);
Pavan Savoy53618cc2010-04-08 13:16:53 -0500124 kfree_skb(st_gdata->rx_skb);
125 return;
126 }
127 } else {
Pavan Savoy5c88b022011-02-04 02:23:09 -0600128 pr_err(" proto stack %d's ->recv null", chnl_id);
Pavan Savoy53618cc2010-04-08 13:16:53 -0500129 kfree_skb(st_gdata->rx_skb);
130 }
Pavan Savoy53618cc2010-04-08 13:16:53 -0500131 return;
132}
133
Pavan Savoy36b5aee2010-07-22 05:32:06 -0500134/**
135 * st_reg_complete -
Pavan Savoy53618cc2010-04-08 13:16:53 -0500136 * to call registration complete callbacks
137 * of all protocol stack drivers
138 */
139void st_reg_complete(struct st_data_s *st_gdata, char err)
140{
141 unsigned char i = 0;
142 pr_info(" %s ", __func__);
Pavan Savoy5c88b022011-02-04 02:23:09 -0600143 for (i = 0; i < ST_MAX_CHANNELS; i++) {
Pavan Savoy53618cc2010-04-08 13:16:53 -0500144 if (likely(st_gdata != NULL && st_gdata->list[i] != NULL &&
Pavan Savoy70442662011-02-04 02:23:11 -0600145 st_gdata->list[i]->reg_complete_cb != NULL)) {
Pavan Savoybb8f3c02010-07-22 05:32:07 -0500146 st_gdata->list[i]->reg_complete_cb
147 (st_gdata->list[i]->priv_data, err);
Pavan Savoy70442662011-02-04 02:23:11 -0600148 pr_info("protocol %d's cb sent %d\n", i, err);
149 if (err) { /* cleanup registered protocol */
150 st_gdata->protos_registered--;
151 st_gdata->list[i] = NULL;
152 }
153 }
Pavan Savoy53618cc2010-04-08 13:16:53 -0500154 }
155}
156
157static inline int st_check_data_len(struct st_data_s *st_gdata,
Pavan Savoy5c88b022011-02-04 02:23:09 -0600158 unsigned char chnl_id, int len)
Pavan Savoy53618cc2010-04-08 13:16:53 -0500159{
Pavan Savoy73f12e82010-10-12 16:27:38 -0400160 int room = skb_tailroom(st_gdata->rx_skb);
Pavan Savoy53618cc2010-04-08 13:16:53 -0500161
Pavan Savoye6d9e642010-07-22 05:32:05 -0500162 pr_debug("len %d room %d", len, room);
Pavan Savoy53618cc2010-04-08 13:16:53 -0500163
164 if (!len) {
165 /* Received packet has only packet header and
166 * has zero length payload. So, ask ST CORE to
167 * forward the packet to protocol driver (BT/FM/GPS)
168 */
Pavan Savoy5c88b022011-02-04 02:23:09 -0600169 st_send_frame(chnl_id, st_gdata);
Pavan Savoy53618cc2010-04-08 13:16:53 -0500170
171 } else if (len > room) {
172 /* Received packet's payload length is larger.
173 * We can't accommodate it in created skb.
174 */
175 pr_err("Data length is too large len %d room %d", len,
176 room);
177 kfree_skb(st_gdata->rx_skb);
178 } else {
179 /* Packet header has non-zero payload length and
180 * we have enough space in created skb. Lets read
181 * payload data */
Pavan Savoy5c88b022011-02-04 02:23:09 -0600182 st_gdata->rx_state = ST_W4_DATA;
Pavan Savoy53618cc2010-04-08 13:16:53 -0500183 st_gdata->rx_count = len;
184 return len;
185 }
186
187 /* Change ST state to continue to process next
188 * packet */
189 st_gdata->rx_state = ST_W4_PACKET_TYPE;
190 st_gdata->rx_skb = NULL;
191 st_gdata->rx_count = 0;
Pavan Savoy5c88b022011-02-04 02:23:09 -0600192 st_gdata->rx_chnl = 0;
Pavan Savoy53618cc2010-04-08 13:16:53 -0500193
194 return 0;
195}
196
Pavan Savoy36b5aee2010-07-22 05:32:06 -0500197/**
198 * st_wakeup_ack - internal function for action when wake-up ack
199 * received
Pavan Savoy53618cc2010-04-08 13:16:53 -0500200 */
201static inline void st_wakeup_ack(struct st_data_s *st_gdata,
202 unsigned char cmd)
203{
Pavan Savoy73f12e82010-10-12 16:27:38 -0400204 struct sk_buff *waiting_skb;
Pavan Savoy53618cc2010-04-08 13:16:53 -0500205 unsigned long flags = 0;
206
207 spin_lock_irqsave(&st_gdata->lock, flags);
208 /* de-Q from waitQ and Q in txQ now that the
209 * chip is awake
210 */
211 while ((waiting_skb = skb_dequeue(&st_gdata->tx_waitq)))
212 skb_queue_tail(&st_gdata->txq, waiting_skb);
213
214 /* state forwarded to ST LL */
215 st_ll_sleep_state(st_gdata, (unsigned long)cmd);
216 spin_unlock_irqrestore(&st_gdata->lock, flags);
217
218 /* wake up to send the recently copied skbs from waitQ */
219 st_tx_wakeup(st_gdata);
220}
221
Pavan Savoy36b5aee2010-07-22 05:32:06 -0500222/**
223 * st_int_recv - ST's internal receive function.
224 * Decodes received RAW data and forwards to corresponding
225 * client drivers (Bluetooth,FM,GPS..etc).
226 * This can receive various types of packets,
227 * HCI-Events, ACL, SCO, 4 types of HCI-LL PM packets
228 * CH-8 packets from FM, CH-9 packets from GPS cores.
Pavan Savoy53618cc2010-04-08 13:16:53 -0500229 */
230void st_int_recv(void *disc_data,
231 const unsigned char *data, long count)
232{
Pavan Savoy73f12e82010-10-12 16:27:38 -0400233 char *ptr;
Pavan Savoy5c88b022011-02-04 02:23:09 -0600234 struct st_proto_s *proto;
235 unsigned short payload_len = 0;
236 int len = 0, type = 0;
237 unsigned char *plen;
Pavan Savoy53618cc2010-04-08 13:16:53 -0500238 struct st_data_s *st_gdata = (struct st_data_s *)disc_data;
Pavan Savoy6d71ba22011-02-04 02:23:14 -0600239 unsigned long flags;
Pavan Savoy53618cc2010-04-08 13:16:53 -0500240
241 ptr = (char *)data;
242 /* tty_receive sent null ? */
243 if (unlikely(ptr == NULL) || (st_gdata == NULL)) {
244 pr_err(" received null from TTY ");
245 return;
246 }
247
Pavan Savoy6710fcf2011-02-04 02:23:12 -0600248 pr_debug("count %ld rx_state %ld"
Pavan Savoy53618cc2010-04-08 13:16:53 -0500249 "rx_count %ld", count, st_gdata->rx_state,
250 st_gdata->rx_count);
251
Pavan Savoy6d71ba22011-02-04 02:23:14 -0600252 spin_lock_irqsave(&st_gdata->lock, flags);
Pavan Savoy53618cc2010-04-08 13:16:53 -0500253 /* Decode received bytes here */
254 while (count) {
255 if (st_gdata->rx_count) {
256 len = min_t(unsigned int, st_gdata->rx_count, count);
257 memcpy(skb_put(st_gdata->rx_skb, len), ptr, len);
258 st_gdata->rx_count -= len;
259 count -= len;
260 ptr += len;
261
262 if (st_gdata->rx_count)
263 continue;
264
265 /* Check ST RX state machine , where are we? */
266 switch (st_gdata->rx_state) {
Pavan Savoy5c88b022011-02-04 02:23:09 -0600267 /* Waiting for complete packet ? */
268 case ST_W4_DATA:
Pavan Savoye6d9e642010-07-22 05:32:05 -0500269 pr_debug("Complete pkt received");
Pavan Savoy53618cc2010-04-08 13:16:53 -0500270 /* Ask ST CORE to forward
271 * the packet to protocol driver */
Pavan Savoy5c88b022011-02-04 02:23:09 -0600272 st_send_frame(st_gdata->rx_chnl, st_gdata);
Pavan Savoy53618cc2010-04-08 13:16:53 -0500273
274 st_gdata->rx_state = ST_W4_PACKET_TYPE;
275 st_gdata->rx_skb = NULL;
Pavan Savoy53618cc2010-04-08 13:16:53 -0500276 continue;
Pavan Savoy5c88b022011-02-04 02:23:09 -0600277 /* parse the header to know details */
278 case ST_W4_HEADER:
279 proto = st_gdata->list[st_gdata->rx_chnl];
280 plen =
281 &st_gdata->rx_skb->data
282 [proto->offset_len_in_hdr];
Pavan Savoy6710fcf2011-02-04 02:23:12 -0600283 pr_debug("plen pointing to %x\n", *plen);
Pavan Savoy5c88b022011-02-04 02:23:09 -0600284 if (proto->len_size == 1)/* 1 byte len field */
285 payload_len = *(unsigned char *)plen;
286 else if (proto->len_size == 2)
287 payload_len =
288 __le16_to_cpu(*(unsigned short *)plen);
289 else
290 pr_info("%s: invalid length "
291 "for id %d\n",
292 __func__, proto->chnl_id);
293 st_check_data_len(st_gdata, proto->chnl_id,
294 payload_len);
Pavan Savoy6710fcf2011-02-04 02:23:12 -0600295 pr_debug("off %d, pay len %d\n",
Pavan Savoy5c88b022011-02-04 02:23:09 -0600296 proto->offset_len_in_hdr, payload_len);
Pavan Savoy53618cc2010-04-08 13:16:53 -0500297 continue;
298 } /* end of switch rx_state */
299 }
300
301 /* end of if rx_count */
302 /* Check first byte of packet and identify module
303 * owner (BT/FM/GPS) */
304 switch (*ptr) {
Pavan Savoy53618cc2010-04-08 13:16:53 -0500305 case LL_SLEEP_IND:
306 case LL_SLEEP_ACK:
307 case LL_WAKE_UP_IND:
Pavan Savoy6710fcf2011-02-04 02:23:12 -0600308 pr_debug("PM packet");
Pavan Savoy53618cc2010-04-08 13:16:53 -0500309 /* this takes appropriate action based on
310 * sleep state received --
311 */
312 st_ll_sleep_state(st_gdata, *ptr);
Pavan Savoy6d71ba22011-02-04 02:23:14 -0600313 /* if WAKEUP_IND collides copy from waitq to txq
314 * and assume chip awake
315 */
316 spin_unlock_irqrestore(&st_gdata->lock, flags);
317 if (st_ll_getstate(st_gdata) == ST_LL_AWAKE)
318 st_wakeup_ack(st_gdata, LL_WAKE_UP_ACK);
319 spin_lock_irqsave(&st_gdata->lock, flags);
320
Pavan Savoy53618cc2010-04-08 13:16:53 -0500321 ptr++;
322 count--;
323 continue;
324 case LL_WAKE_UP_ACK:
Pavan Savoy6710fcf2011-02-04 02:23:12 -0600325 pr_debug("PM packet");
Pavan Savoy6d71ba22011-02-04 02:23:14 -0600326
327 spin_unlock_irqrestore(&st_gdata->lock, flags);
Pavan Savoy53618cc2010-04-08 13:16:53 -0500328 /* wake up ack received */
329 st_wakeup_ack(st_gdata, *ptr);
Pavan Savoy6d71ba22011-02-04 02:23:14 -0600330 spin_lock_irqsave(&st_gdata->lock, flags);
331
Pavan Savoy53618cc2010-04-08 13:16:53 -0500332 ptr++;
333 count--;
334 continue;
335 /* Unknow packet? */
336 default:
Pavan Savoy5c88b022011-02-04 02:23:09 -0600337 type = *ptr;
338 st_gdata->rx_skb = alloc_skb(
339 st_gdata->list[type]->max_frame_size,
340 GFP_ATOMIC);
341 skb_reserve(st_gdata->rx_skb,
342 st_gdata->list[type]->reserve);
343 /* next 2 required for BT only */
344 st_gdata->rx_skb->cb[0] = type; /*pkt_type*/
345 st_gdata->rx_skb->cb[1] = 0; /*incoming*/
346 st_gdata->rx_chnl = *ptr;
347 st_gdata->rx_state = ST_W4_HEADER;
348 st_gdata->rx_count = st_gdata->list[type]->hdr_len;
Pavan Savoy6710fcf2011-02-04 02:23:12 -0600349 pr_debug("rx_count %ld\n", st_gdata->rx_count);
Pavan Savoy53618cc2010-04-08 13:16:53 -0500350 };
351 ptr++;
352 count--;
Pavan Savoy53618cc2010-04-08 13:16:53 -0500353 }
Pavan Savoy6d71ba22011-02-04 02:23:14 -0600354 spin_unlock_irqrestore(&st_gdata->lock, flags);
Pavan Savoye6d9e642010-07-22 05:32:05 -0500355 pr_debug("done %s", __func__);
Pavan Savoy53618cc2010-04-08 13:16:53 -0500356 return;
357}
358
Pavan Savoy36b5aee2010-07-22 05:32:06 -0500359/**
360 * st_int_dequeue - internal de-Q function.
361 * If the previous data set was not written
362 * completely, return that skb which has the pending data.
363 * In normal cases, return top of txq.
Pavan Savoy53618cc2010-04-08 13:16:53 -0500364 */
365struct sk_buff *st_int_dequeue(struct st_data_s *st_gdata)
366{
367 struct sk_buff *returning_skb;
368
Pavan Savoye6d9e642010-07-22 05:32:05 -0500369 pr_debug("%s", __func__);
Pavan Savoy53618cc2010-04-08 13:16:53 -0500370 if (st_gdata->tx_skb != NULL) {
371 returning_skb = st_gdata->tx_skb;
372 st_gdata->tx_skb = NULL;
373 return returning_skb;
374 }
Pavan Savoy53618cc2010-04-08 13:16:53 -0500375 return skb_dequeue(&st_gdata->txq);
376}
377
Pavan Savoy36b5aee2010-07-22 05:32:06 -0500378/**
379 * st_int_enqueue - internal Q-ing function.
380 * Will either Q the skb to txq or the tx_waitq
381 * depending on the ST LL state.
382 * If the chip is asleep, then Q it onto waitq and
383 * wakeup the chip.
384 * txq and waitq needs protection since the other contexts
385 * may be sending data, waking up chip.
Pavan Savoy53618cc2010-04-08 13:16:53 -0500386 */
387void st_int_enqueue(struct st_data_s *st_gdata, struct sk_buff *skb)
388{
389 unsigned long flags = 0;
390
Pavan Savoye6d9e642010-07-22 05:32:05 -0500391 pr_debug("%s", __func__);
Pavan Savoy53618cc2010-04-08 13:16:53 -0500392 spin_lock_irqsave(&st_gdata->lock, flags);
393
394 switch (st_ll_getstate(st_gdata)) {
395 case ST_LL_AWAKE:
Pavan Savoy6710fcf2011-02-04 02:23:12 -0600396 pr_debug("ST LL is AWAKE, sending normally");
Pavan Savoy53618cc2010-04-08 13:16:53 -0500397 skb_queue_tail(&st_gdata->txq, skb);
398 break;
399 case ST_LL_ASLEEP_TO_AWAKE:
400 skb_queue_tail(&st_gdata->tx_waitq, skb);
401 break;
Pavan Savoy36b5aee2010-07-22 05:32:06 -0500402 case ST_LL_AWAKE_TO_ASLEEP:
Pavan Savoy53618cc2010-04-08 13:16:53 -0500403 pr_err("ST LL is illegal state(%ld),"
404 "purging received skb.", st_ll_getstate(st_gdata));
405 kfree_skb(skb);
406 break;
Pavan Savoy53618cc2010-04-08 13:16:53 -0500407 case ST_LL_ASLEEP:
Pavan Savoy53618cc2010-04-08 13:16:53 -0500408 skb_queue_tail(&st_gdata->tx_waitq, skb);
409 st_ll_wakeup(st_gdata);
410 break;
411 default:
412 pr_err("ST LL is illegal state(%ld),"
413 "purging received skb.", st_ll_getstate(st_gdata));
414 kfree_skb(skb);
415 break;
416 }
Pavan Savoy36b5aee2010-07-22 05:32:06 -0500417
Pavan Savoy53618cc2010-04-08 13:16:53 -0500418 spin_unlock_irqrestore(&st_gdata->lock, flags);
Pavan Savoye6d9e642010-07-22 05:32:05 -0500419 pr_debug("done %s", __func__);
Pavan Savoy53618cc2010-04-08 13:16:53 -0500420 return;
421}
422
423/*
424 * internal wakeup function
425 * called from either
426 * - TTY layer when write's finished
427 * - st_write (in context of the protocol stack)
428 */
429void st_tx_wakeup(struct st_data_s *st_data)
430{
431 struct sk_buff *skb;
432 unsigned long flags; /* for irq save flags */
Pavan Savoye6d9e642010-07-22 05:32:05 -0500433 pr_debug("%s", __func__);
Pavan Savoy53618cc2010-04-08 13:16:53 -0500434 /* check for sending & set flag sending here */
435 if (test_and_set_bit(ST_TX_SENDING, &st_data->tx_state)) {
Pavan Savoy6710fcf2011-02-04 02:23:12 -0600436 pr_debug("ST already sending");
Pavan Savoy53618cc2010-04-08 13:16:53 -0500437 /* keep sending */
438 set_bit(ST_TX_WAKEUP, &st_data->tx_state);
439 return;
440 /* TX_WAKEUP will be checked in another
441 * context
442 */
443 }
444 do { /* come back if st_tx_wakeup is set */
445 /* woke-up to write */
446 clear_bit(ST_TX_WAKEUP, &st_data->tx_state);
447 while ((skb = st_int_dequeue(st_data))) {
448 int len;
449 spin_lock_irqsave(&st_data->lock, flags);
450 /* enable wake-up from TTY */
451 set_bit(TTY_DO_WRITE_WAKEUP, &st_data->tty->flags);
452 len = st_int_write(st_data, skb->data, skb->len);
453 skb_pull(skb, len);
454 /* if skb->len = len as expected, skb->len=0 */
455 if (skb->len) {
456 /* would be the next skb to be sent */
457 st_data->tx_skb = skb;
458 spin_unlock_irqrestore(&st_data->lock, flags);
459 break;
460 }
461 kfree_skb(skb);
462 spin_unlock_irqrestore(&st_data->lock, flags);
463 }
464 /* if wake-up is set in another context- restart sending */
465 } while (test_bit(ST_TX_WAKEUP, &st_data->tx_state));
466
467 /* clear flag sending */
468 clear_bit(ST_TX_SENDING, &st_data->tx_state);
469}
470
471/********************************************************************/
472/* functions called from ST KIM
473*/
Pavan Savoyc1afac12010-07-28 02:25:59 -0500474void kim_st_list_protocols(struct st_data_s *st_gdata, void *buf)
Pavan Savoy53618cc2010-04-08 13:16:53 -0500475{
Pavan Savoyc1afac12010-07-28 02:25:59 -0500476 seq_printf(buf, "[%d]\nBT=%c\nFM=%c\nGPS=%c\n",
Naveen Jain36e574f2010-06-09 07:20:40 -0500477 st_gdata->protos_registered,
Pavan Savoyc1605f22011-03-02 03:59:56 -0600478 st_gdata->list[0x04] != NULL ? 'R' : 'U',
479 st_gdata->list[0x08] != NULL ? 'R' : 'U',
480 st_gdata->list[0x09] != NULL ? 'R' : 'U');
Pavan Savoy53618cc2010-04-08 13:16:53 -0500481}
482
483/********************************************************************/
484/*
485 * functions called from protocol stack drivers
486 * to be EXPORT-ed
487 */
488long st_register(struct st_proto_s *new_proto)
489{
490 struct st_data_s *st_gdata;
Pavan Savoy320920c2010-07-14 08:21:12 -0500491 long err = 0;
Pavan Savoy53618cc2010-04-08 13:16:53 -0500492 unsigned long flags = 0;
493
Pavan Savoydbd3a872010-08-19 14:08:51 -0400494 st_kim_ref(&st_gdata, 0);
Pavan Savoy5c88b022011-02-04 02:23:09 -0600495 pr_info("%s(%d) ", __func__, new_proto->chnl_id);
Pavan Savoy53618cc2010-04-08 13:16:53 -0500496 if (st_gdata == NULL || new_proto == NULL || new_proto->recv == NULL
497 || new_proto->reg_complete_cb == NULL) {
498 pr_err("gdata/new_proto/recv or reg_complete_cb not ready");
Pavan Savoy70442662011-02-04 02:23:11 -0600499 return -EINVAL;
Pavan Savoy53618cc2010-04-08 13:16:53 -0500500 }
501
Pavan Savoy5c88b022011-02-04 02:23:09 -0600502 if (new_proto->chnl_id >= ST_MAX_CHANNELS) {
503 pr_err("chnl_id %d not supported", new_proto->chnl_id);
Pavan Savoy320920c2010-07-14 08:21:12 -0500504 return -EPROTONOSUPPORT;
Pavan Savoy53618cc2010-04-08 13:16:53 -0500505 }
506
Pavan Savoy5c88b022011-02-04 02:23:09 -0600507 if (st_gdata->list[new_proto->chnl_id] != NULL) {
508 pr_err("chnl_id %d already registered", new_proto->chnl_id);
Pavan Savoy320920c2010-07-14 08:21:12 -0500509 return -EALREADY;
Pavan Savoy53618cc2010-04-08 13:16:53 -0500510 }
511
512 /* can be from process context only */
513 spin_lock_irqsave(&st_gdata->lock, flags);
514
515 if (test_bit(ST_REG_IN_PROGRESS, &st_gdata->st_state)) {
Pavan Savoy5c88b022011-02-04 02:23:09 -0600516 pr_info(" ST_REG_IN_PROGRESS:%d ", new_proto->chnl_id);
Pavan Savoy53618cc2010-04-08 13:16:53 -0500517 /* fw download in progress */
Pavan Savoy53618cc2010-04-08 13:16:53 -0500518
Pavan Savoy5c88b022011-02-04 02:23:09 -0600519 add_channel_to_table(st_gdata, new_proto);
Naveen Jain36e574f2010-06-09 07:20:40 -0500520 st_gdata->protos_registered++;
Pavan Savoy53618cc2010-04-08 13:16:53 -0500521 new_proto->write = st_write;
522
523 set_bit(ST_REG_PENDING, &st_gdata->st_state);
524 spin_unlock_irqrestore(&st_gdata->lock, flags);
Pavan Savoy320920c2010-07-14 08:21:12 -0500525 return -EINPROGRESS;
Pavan Savoy53618cc2010-04-08 13:16:53 -0500526 } else if (st_gdata->protos_registered == ST_EMPTY) {
Pavan Savoy5c88b022011-02-04 02:23:09 -0600527 pr_info(" chnl_id list empty :%d ", new_proto->chnl_id);
Pavan Savoy53618cc2010-04-08 13:16:53 -0500528 set_bit(ST_REG_IN_PROGRESS, &st_gdata->st_state);
529 st_recv = st_kim_recv;
530
531 /* release lock previously held - re-locked below */
532 spin_unlock_irqrestore(&st_gdata->lock, flags);
533
534 /* enable the ST LL - to set default chip state */
535 st_ll_enable(st_gdata);
536 /* this may take a while to complete
537 * since it involves BT fw download
538 */
Pavan Savoy38d9df42010-07-08 08:55:17 -0500539 err = st_kim_start(st_gdata->kim_data);
Pavan Savoy320920c2010-07-14 08:21:12 -0500540 if (err != 0) {
Pavan Savoy53618cc2010-04-08 13:16:53 -0500541 clear_bit(ST_REG_IN_PROGRESS, &st_gdata->st_state);
542 if ((st_gdata->protos_registered != ST_EMPTY) &&
543 (test_bit(ST_REG_PENDING, &st_gdata->st_state))) {
544 pr_err(" KIM failure complete callback ");
Pavan Savoy70442662011-02-04 02:23:11 -0600545 st_reg_complete(st_gdata, err);
Pavan Savoy53618cc2010-04-08 13:16:53 -0500546 }
Pavan Savoy70442662011-02-04 02:23:11 -0600547 return -EINVAL;
Pavan Savoy53618cc2010-04-08 13:16:53 -0500548 }
549
Pavan Savoy53618cc2010-04-08 13:16:53 -0500550 clear_bit(ST_REG_IN_PROGRESS, &st_gdata->st_state);
551 st_recv = st_int_recv;
552
553 /* this is where all pending registration
554 * are signalled to be complete by calling callback functions
555 */
556 if ((st_gdata->protos_registered != ST_EMPTY) &&
557 (test_bit(ST_REG_PENDING, &st_gdata->st_state))) {
Pavan Savoye6d9e642010-07-22 05:32:05 -0500558 pr_debug(" call reg complete callback ");
Pavan Savoy320920c2010-07-14 08:21:12 -0500559 st_reg_complete(st_gdata, 0);
Pavan Savoy53618cc2010-04-08 13:16:53 -0500560 }
561 clear_bit(ST_REG_PENDING, &st_gdata->st_state);
562
563 /* check for already registered once more,
564 * since the above check is old
565 */
Pavan Savoy5c88b022011-02-04 02:23:09 -0600566 if (st_gdata->list[new_proto->chnl_id] != NULL) {
Pavan Savoy53618cc2010-04-08 13:16:53 -0500567 pr_err(" proto %d already registered ",
Pavan Savoy5c88b022011-02-04 02:23:09 -0600568 new_proto->chnl_id);
Pavan Savoy320920c2010-07-14 08:21:12 -0500569 return -EALREADY;
Pavan Savoy53618cc2010-04-08 13:16:53 -0500570 }
571
572 spin_lock_irqsave(&st_gdata->lock, flags);
Pavan Savoy5c88b022011-02-04 02:23:09 -0600573 add_channel_to_table(st_gdata, new_proto);
Naveen Jain36e574f2010-06-09 07:20:40 -0500574 st_gdata->protos_registered++;
Pavan Savoy53618cc2010-04-08 13:16:53 -0500575 new_proto->write = st_write;
576 spin_unlock_irqrestore(&st_gdata->lock, flags);
577 return err;
578 }
579 /* if fw is already downloaded & new stack registers protocol */
580 else {
Pavan Savoy5c88b022011-02-04 02:23:09 -0600581 add_channel_to_table(st_gdata, new_proto);
Naveen Jain36e574f2010-06-09 07:20:40 -0500582 st_gdata->protos_registered++;
Pavan Savoy53618cc2010-04-08 13:16:53 -0500583 new_proto->write = st_write;
584
585 /* lock already held before entering else */
586 spin_unlock_irqrestore(&st_gdata->lock, flags);
587 return err;
588 }
Pavan Savoy5c88b022011-02-04 02:23:09 -0600589 pr_debug("done %s(%d) ", __func__, new_proto->chnl_id);
Pavan Savoy53618cc2010-04-08 13:16:53 -0500590}
591EXPORT_SYMBOL_GPL(st_register);
592
593/* to unregister a protocol -
594 * to be called from protocol stack driver
595 */
Pavan Savoy5c88b022011-02-04 02:23:09 -0600596long st_unregister(struct st_proto_s *proto)
Pavan Savoy53618cc2010-04-08 13:16:53 -0500597{
Pavan Savoy320920c2010-07-14 08:21:12 -0500598 long err = 0;
Pavan Savoy53618cc2010-04-08 13:16:53 -0500599 unsigned long flags = 0;
600 struct st_data_s *st_gdata;
601
Pavan Savoy5c88b022011-02-04 02:23:09 -0600602 pr_debug("%s: %d ", __func__, proto->chnl_id);
Pavan Savoy53618cc2010-04-08 13:16:53 -0500603
Pavan Savoydbd3a872010-08-19 14:08:51 -0400604 st_kim_ref(&st_gdata, 0);
Pavan Savoy5c88b022011-02-04 02:23:09 -0600605 if (proto->chnl_id >= ST_MAX_CHANNELS) {
606 pr_err(" chnl_id %d not supported", proto->chnl_id);
Pavan Savoy320920c2010-07-14 08:21:12 -0500607 return -EPROTONOSUPPORT;
Pavan Savoy53618cc2010-04-08 13:16:53 -0500608 }
609
610 spin_lock_irqsave(&st_gdata->lock, flags);
611
Pavan Savoy5c88b022011-02-04 02:23:09 -0600612 if (st_gdata->list[proto->chnl_id] == NULL) {
613 pr_err(" chnl_id %d not registered", proto->chnl_id);
Pavan Savoy53618cc2010-04-08 13:16:53 -0500614 spin_unlock_irqrestore(&st_gdata->lock, flags);
Pavan Savoy320920c2010-07-14 08:21:12 -0500615 return -EPROTONOSUPPORT;
Pavan Savoy53618cc2010-04-08 13:16:53 -0500616 }
617
618 st_gdata->protos_registered--;
Pavan Savoy5c88b022011-02-04 02:23:09 -0600619 remove_channel_from_table(st_gdata, proto);
Pavan Savoy53618cc2010-04-08 13:16:53 -0500620 spin_unlock_irqrestore(&st_gdata->lock, flags);
621
622 if ((st_gdata->protos_registered == ST_EMPTY) &&
623 (!test_bit(ST_REG_PENDING, &st_gdata->st_state))) {
Pavan Savoy5c88b022011-02-04 02:23:09 -0600624 pr_info(" all chnl_ids unregistered ");
Pavan Savoy53618cc2010-04-08 13:16:53 -0500625
626 /* stop traffic on tty */
627 if (st_gdata->tty) {
628 tty_ldisc_flush(st_gdata->tty);
629 stop_tty(st_gdata->tty);
630 }
631
Pavan Savoy5c88b022011-02-04 02:23:09 -0600632 /* all chnl_ids now unregistered */
Pavan Savoy38d9df42010-07-08 08:55:17 -0500633 st_kim_stop(st_gdata->kim_data);
Pavan Savoy53618cc2010-04-08 13:16:53 -0500634 /* disable ST LL */
635 st_ll_disable(st_gdata);
636 }
637 return err;
638}
639
640/*
641 * called in protocol stack drivers
642 * via the write function pointer
643 */
644long st_write(struct sk_buff *skb)
645{
646 struct st_data_s *st_gdata;
Pavan Savoy53618cc2010-04-08 13:16:53 -0500647 long len;
648
Pavan Savoydbd3a872010-08-19 14:08:51 -0400649 st_kim_ref(&st_gdata, 0);
Pavan Savoy53618cc2010-04-08 13:16:53 -0500650 if (unlikely(skb == NULL || st_gdata == NULL
651 || st_gdata->tty == NULL)) {
652 pr_err("data/tty unavailable to perform write");
Pavan Savoy70442662011-02-04 02:23:11 -0600653 return -EINVAL;
Pavan Savoy53618cc2010-04-08 13:16:53 -0500654 }
Pavan Savoyc1605f22011-03-02 03:59:56 -0600655
Pavan Savoye6d9e642010-07-22 05:32:05 -0500656 pr_debug("%d to be written", skb->len);
Pavan Savoy53618cc2010-04-08 13:16:53 -0500657 len = skb->len;
658
659 /* st_ll to decide where to enqueue the skb */
660 st_int_enqueue(st_gdata, skb);
661 /* wake up */
662 st_tx_wakeup(st_gdata);
663
664 /* return number of bytes written */
665 return len;
666}
667
668/* for protocols making use of shared transport */
669EXPORT_SYMBOL_GPL(st_unregister);
670
671/********************************************************************/
672/*
673 * functions called from TTY layer
674 */
675static int st_tty_open(struct tty_struct *tty)
676{
Pavan Savoy320920c2010-07-14 08:21:12 -0500677 int err = 0;
Pavan Savoy53618cc2010-04-08 13:16:53 -0500678 struct st_data_s *st_gdata;
679 pr_info("%s ", __func__);
680
Pavan Savoydbd3a872010-08-19 14:08:51 -0400681 st_kim_ref(&st_gdata, 0);
Pavan Savoy53618cc2010-04-08 13:16:53 -0500682 st_gdata->tty = tty;
683 tty->disc_data = st_gdata;
684
685 /* don't do an wakeup for now */
686 clear_bit(TTY_DO_WRITE_WAKEUP, &tty->flags);
687
688 /* mem already allocated
689 */
690 tty->receive_room = 65536;
691 /* Flush any pending characters in the driver and discipline. */
692 tty_ldisc_flush(tty);
693 tty_driver_flush_buffer(tty);
694 /*
695 * signal to UIM via KIM that -
696 * installation of N_TI_WL ldisc is complete
697 */
Pavan Savoy38d9df42010-07-08 08:55:17 -0500698 st_kim_complete(st_gdata->kim_data);
Pavan Savoye6d9e642010-07-22 05:32:05 -0500699 pr_debug("done %s", __func__);
Pavan Savoy53618cc2010-04-08 13:16:53 -0500700 return err;
701}
702
703static void st_tty_close(struct tty_struct *tty)
704{
Pavan Savoy5c88b022011-02-04 02:23:09 -0600705 unsigned char i = ST_MAX_CHANNELS;
Pavan Savoy53618cc2010-04-08 13:16:53 -0500706 unsigned long flags = 0;
707 struct st_data_s *st_gdata = tty->disc_data;
708
709 pr_info("%s ", __func__);
710
711 /* TODO:
712 * if a protocol has been registered & line discipline
713 * un-installed for some reason - what should be done ?
714 */
715 spin_lock_irqsave(&st_gdata->lock, flags);
Pavan Savoy5c88b022011-02-04 02:23:09 -0600716 for (i = ST_BT; i < ST_MAX_CHANNELS; i++) {
Pavan Savoy53618cc2010-04-08 13:16:53 -0500717 if (st_gdata->list[i] != NULL)
718 pr_err("%d not un-registered", i);
719 st_gdata->list[i] = NULL;
720 }
Pavan Savoybb8f3c02010-07-22 05:32:07 -0500721 st_gdata->protos_registered = 0;
Pavan Savoy53618cc2010-04-08 13:16:53 -0500722 spin_unlock_irqrestore(&st_gdata->lock, flags);
723 /*
724 * signal to UIM via KIM that -
725 * N_TI_WL ldisc is un-installed
726 */
Pavan Savoy38d9df42010-07-08 08:55:17 -0500727 st_kim_complete(st_gdata->kim_data);
Pavan Savoy53618cc2010-04-08 13:16:53 -0500728 st_gdata->tty = NULL;
729 /* Flush any pending characters in the driver and discipline. */
730 tty_ldisc_flush(tty);
731 tty_driver_flush_buffer(tty);
732
733 spin_lock_irqsave(&st_gdata->lock, flags);
734 /* empty out txq and tx_waitq */
735 skb_queue_purge(&st_gdata->txq);
736 skb_queue_purge(&st_gdata->tx_waitq);
737 /* reset the TTY Rx states of ST */
738 st_gdata->rx_count = 0;
739 st_gdata->rx_state = ST_W4_PACKET_TYPE;
740 kfree_skb(st_gdata->rx_skb);
741 st_gdata->rx_skb = NULL;
742 spin_unlock_irqrestore(&st_gdata->lock, flags);
743
Pavan Savoye6d9e642010-07-22 05:32:05 -0500744 pr_debug("%s: done ", __func__);
Pavan Savoy53618cc2010-04-08 13:16:53 -0500745}
746
747static void st_tty_receive(struct tty_struct *tty, const unsigned char *data,
748 char *tty_flags, int count)
749{
Pavan Savoy53618cc2010-04-08 13:16:53 -0500750#ifdef VERBOSE
Pavan Savoye6d9e642010-07-22 05:32:05 -0500751 print_hex_dump(KERN_DEBUG, ">in>", DUMP_PREFIX_NONE,
752 16, 1, data, count, 0);
Pavan Savoy53618cc2010-04-08 13:16:53 -0500753#endif
754
755 /*
756 * if fw download is in progress then route incoming data
757 * to KIM for validation
758 */
759 st_recv(tty->disc_data, data, count);
Pavan Savoye6d9e642010-07-22 05:32:05 -0500760 pr_debug("done %s", __func__);
Pavan Savoy53618cc2010-04-08 13:16:53 -0500761}
762
763/* wake-up function called in from the TTY layer
764 * inside the internal wakeup function will be called
765 */
766static void st_tty_wakeup(struct tty_struct *tty)
767{
768 struct st_data_s *st_gdata = tty->disc_data;
Pavan Savoye6d9e642010-07-22 05:32:05 -0500769 pr_debug("%s ", __func__);
Pavan Savoy53618cc2010-04-08 13:16:53 -0500770 /* don't do an wakeup for now */
771 clear_bit(TTY_DO_WRITE_WAKEUP, &tty->flags);
772
773 /* call our internal wakeup */
774 st_tx_wakeup((void *)st_gdata);
775}
776
777static void st_tty_flush_buffer(struct tty_struct *tty)
778{
779 struct st_data_s *st_gdata = tty->disc_data;
Pavan Savoye6d9e642010-07-22 05:32:05 -0500780 pr_debug("%s ", __func__);
Pavan Savoy53618cc2010-04-08 13:16:53 -0500781
782 kfree_skb(st_gdata->tx_skb);
783 st_gdata->tx_skb = NULL;
784
785 tty->ops->flush_buffer(tty);
786 return;
787}
788
Pavan Savoy73f12e82010-10-12 16:27:38 -0400789static struct tty_ldisc_ops st_ldisc_ops = {
790 .magic = TTY_LDISC_MAGIC,
791 .name = "n_st",
792 .open = st_tty_open,
793 .close = st_tty_close,
794 .receive_buf = st_tty_receive,
795 .write_wakeup = st_tty_wakeup,
796 .flush_buffer = st_tty_flush_buffer,
797 .owner = THIS_MODULE
798};
799
Pavan Savoy53618cc2010-04-08 13:16:53 -0500800/********************************************************************/
801int st_core_init(struct st_data_s **core_data)
802{
803 struct st_data_s *st_gdata;
804 long err;
Pavan Savoy53618cc2010-04-08 13:16:53 -0500805
Pavan Savoy73f12e82010-10-12 16:27:38 -0400806 err = tty_register_ldisc(N_TI_WL, &st_ldisc_ops);
Pavan Savoy53618cc2010-04-08 13:16:53 -0500807 if (err) {
808 pr_err("error registering %d line discipline %ld",
809 N_TI_WL, err);
Pavan Savoy53618cc2010-04-08 13:16:53 -0500810 return err;
811 }
Pavan Savoye6d9e642010-07-22 05:32:05 -0500812 pr_debug("registered n_shared line discipline");
Pavan Savoy53618cc2010-04-08 13:16:53 -0500813
814 st_gdata = kzalloc(sizeof(struct st_data_s), GFP_KERNEL);
815 if (!st_gdata) {
816 pr_err("memory allocation failed");
817 err = tty_unregister_ldisc(N_TI_WL);
818 if (err)
819 pr_err("unable to un-register ldisc %ld", err);
Pavan Savoy53618cc2010-04-08 13:16:53 -0500820 err = -ENOMEM;
821 return err;
822 }
823
824 /* Initialize ST TxQ and Tx waitQ queue head. All BT/FM/GPS module skb's
825 * will be pushed in this queue for actual transmission.
826 */
827 skb_queue_head_init(&st_gdata->txq);
828 skb_queue_head_init(&st_gdata->tx_waitq);
829
830 /* Locking used in st_int_enqueue() to avoid multiple execution */
831 spin_lock_init(&st_gdata->lock);
832
Pavan Savoy53618cc2010-04-08 13:16:53 -0500833 err = st_ll_init(st_gdata);
834 if (err) {
835 pr_err("error during st_ll initialization(%ld)", err);
836 kfree(st_gdata);
837 err = tty_unregister_ldisc(N_TI_WL);
838 if (err)
839 pr_err("unable to un-register ldisc");
Pavan Savoy70442662011-02-04 02:23:11 -0600840 return err;
Pavan Savoy53618cc2010-04-08 13:16:53 -0500841 }
842 *core_data = st_gdata;
843 return 0;
844}
845
846void st_core_exit(struct st_data_s *st_gdata)
847{
848 long err;
849 /* internal module cleanup */
850 err = st_ll_deinit(st_gdata);
851 if (err)
852 pr_err("error during deinit of ST LL %ld", err);
Pavan Savoy73f12e82010-10-12 16:27:38 -0400853
Pavan Savoy53618cc2010-04-08 13:16:53 -0500854 if (st_gdata != NULL) {
855 /* Free ST Tx Qs and skbs */
856 skb_queue_purge(&st_gdata->txq);
857 skb_queue_purge(&st_gdata->tx_waitq);
858 kfree_skb(st_gdata->rx_skb);
859 kfree_skb(st_gdata->tx_skb);
860 /* TTY ldisc cleanup */
861 err = tty_unregister_ldisc(N_TI_WL);
862 if (err)
863 pr_err("unable to un-register ldisc %ld", err);
Pavan Savoy53618cc2010-04-08 13:16:53 -0500864 /* free the global data pointer */
865 kfree(st_gdata);
866 }
867}
868
869