2 * Copyright (c) 2010 Broadcom Corporation
4 * Permission to use, copy, modify, and/or distribute this software for any
5 * purpose with or without fee is hereby granted, provided that the above
6 * copyright notice and this permission notice appear in all copies.
8 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
11 * SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
13 * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
14 * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
17 /*******************************************************************************
18 * Communicates with the dongle by using dcmd codes.
19 * For certain dcmd codes, the dongle interprets string data from the host.
20 ******************************************************************************/
22 #include <linux/types.h>
23 #include <linux/netdevice.h>
24 #include <linux/sched.h>
27 #include <brcmu_utils.h>
28 #include <brcmu_wifi.h>
31 #include "dhd_proto.h"
35 struct brcmf_proto_cdc_dcmd
{
36 __le32 cmd
; /* dongle command value */
37 __le32 len
; /* lower 16: output buflen;
38 * upper 16: input buflen (excludes header) */
39 __le32 flags
; /* flag defns given below */
40 __le32 status
; /* status code returned from the device */
43 /* Max valid buffer size that can be sent to the dongle */
44 #define CDC_MAX_MSG_SIZE (ETH_FRAME_LEN+ETH_FCS_LEN)
46 /* CDC flag definitions */
47 #define CDC_DCMD_ERROR 0x01 /* 1=cmd failed */
48 #define CDC_DCMD_SET 0x02 /* 0=get, 1=set cmd */
49 #define CDC_DCMD_IF_MASK 0xF000 /* I/F index */
50 #define CDC_DCMD_IF_SHIFT 12
51 #define CDC_DCMD_ID_MASK 0xFFFF0000 /* id an cmd pairing */
52 #define CDC_DCMD_ID_SHIFT 16 /* ID Mask shift bits */
53 #define CDC_DCMD_ID(flags) \
54 (((flags) & CDC_DCMD_ID_MASK) >> CDC_DCMD_ID_SHIFT)
57 * BDC header - Broadcom specific extension of CDC.
58 * Used on data packets to convey priority across USB.
60 #define BDC_HEADER_LEN 4
61 #define BDC_PROTO_VER 2 /* Protocol version */
62 #define BDC_FLAG_VER_MASK 0xf0 /* Protocol version mask */
63 #define BDC_FLAG_VER_SHIFT 4 /* Protocol version shift */
64 #define BDC_FLAG_SUM_GOOD 0x04 /* Good RX checksums */
65 #define BDC_FLAG_SUM_NEEDED 0x08 /* Dongle needs to do TX checksums */
66 #define BDC_PRIORITY_MASK 0x7
67 #define BDC_FLAG2_IF_MASK 0x0f /* packet rx interface in APSTA */
68 #define BDC_FLAG2_IF_SHIFT 0
70 #define BDC_GET_IF_IDX(hdr) \
71 ((int)((((hdr)->flags2) & BDC_FLAG2_IF_MASK) >> BDC_FLAG2_IF_SHIFT))
72 #define BDC_SET_IF_IDX(hdr, idx) \
73 ((hdr)->flags2 = (((hdr)->flags2 & ~BDC_FLAG2_IF_MASK) | \
74 ((idx) << BDC_FLAG2_IF_SHIFT)))
76 struct brcmf_proto_bdc_header
{
78 u8 priority
; /* 802.1d Priority, 4:7 flow control info for usb */
84 #define RETRIES 2 /* # of retries to retrieve matching dcmd response */
85 #define BUS_HEADER_LEN (16+64) /* Must be atleast SDPCM_RESERVE
86 * (amount of header tha might be added)
87 * plus any space that might be needed
88 * for bus alignment padding.
90 #define ROUND_UP_MARGIN 2048 /* Biggest bus block size possible for
91 * round off at the end of buffer
99 u8 bus_header
[BUS_HEADER_LEN
];
100 struct brcmf_proto_cdc_dcmd msg
;
101 unsigned char buf
[BRCMF_DCMD_MAXLEN
+ ROUND_UP_MARGIN
];
104 static int brcmf_proto_cdc_msg(struct brcmf_pub
*drvr
)
106 struct brcmf_proto
*prot
= drvr
->prot
;
107 int len
= le32_to_cpu(prot
->msg
.len
) +
108 sizeof(struct brcmf_proto_cdc_dcmd
);
110 brcmf_dbg(TRACE
, "Enter\n");
112 /* NOTE : cdc->msg.len holds the desired length of the buffer to be
113 * returned. Only up to CDC_MAX_MSG_SIZE of this buffer area
114 * is actually sent to the dongle
116 if (len
> CDC_MAX_MSG_SIZE
)
117 len
= CDC_MAX_MSG_SIZE
;
120 return drvr
->bus_if
->brcmf_bus_txctl(drvr
->dev
,
121 (unsigned char *)&prot
->msg
,
125 static int brcmf_proto_cdc_cmplt(struct brcmf_pub
*drvr
, u32 id
, u32 len
)
128 struct brcmf_proto
*prot
= drvr
->prot
;
130 brcmf_dbg(TRACE
, "Enter\n");
133 ret
= drvr
->bus_if
->brcmf_bus_rxctl(drvr
->dev
,
134 (unsigned char *)&prot
->msg
,
135 len
+ sizeof(struct brcmf_proto_cdc_dcmd
));
138 } while (CDC_DCMD_ID(le32_to_cpu(prot
->msg
.flags
)) != id
);
144 brcmf_proto_cdc_query_dcmd(struct brcmf_pub
*drvr
, int ifidx
, uint cmd
,
147 struct brcmf_proto
*prot
= drvr
->prot
;
148 struct brcmf_proto_cdc_dcmd
*msg
= &prot
->msg
;
150 int ret
= 0, retries
= 0;
153 brcmf_dbg(TRACE
, "Enter\n");
154 brcmf_dbg(CTL
, "cmd %d len %d\n", cmd
, len
);
156 /* Respond "bcmerror" and "bcmerrorstr" with local cache */
157 if (cmd
== BRCMF_C_GET_VAR
&& buf
) {
158 if (!strcmp((char *)buf
, "bcmerrorstr")) {
159 strncpy((char *)buf
, "bcm_error",
162 } else if (!strcmp((char *)buf
, "bcmerror")) {
163 *(int *)buf
= drvr
->dongle_error
;
168 memset(msg
, 0, sizeof(struct brcmf_proto_cdc_dcmd
));
170 msg
->cmd
= cpu_to_le32(cmd
);
171 msg
->len
= cpu_to_le32(len
);
172 flags
= (++prot
->reqid
<< CDC_DCMD_ID_SHIFT
);
173 flags
= (flags
& ~CDC_DCMD_IF_MASK
) |
174 (ifidx
<< CDC_DCMD_IF_SHIFT
);
175 msg
->flags
= cpu_to_le32(flags
);
178 memcpy(prot
->buf
, buf
, len
);
180 ret
= brcmf_proto_cdc_msg(drvr
);
182 brcmf_dbg(ERROR
, "brcmf_proto_cdc_msg failed w/status %d\n",
188 /* wait for interrupt and get first fragment */
189 ret
= brcmf_proto_cdc_cmplt(drvr
, prot
->reqid
, len
);
193 flags
= le32_to_cpu(msg
->flags
);
194 id
= (flags
& CDC_DCMD_ID_MASK
) >> CDC_DCMD_ID_SHIFT
;
196 if ((id
< prot
->reqid
) && (++retries
< RETRIES
))
198 if (id
!= prot
->reqid
) {
199 brcmf_dbg(ERROR
, "%s: unexpected request id %d (expected %d)\n",
200 brcmf_ifname(drvr
, ifidx
), id
, prot
->reqid
);
205 /* Check info buffer */
206 info
= (void *)&msg
[1];
208 /* Copy info buffer */
212 memcpy(buf
, info
, len
);
215 /* Check the ERROR flag */
216 if (flags
& CDC_DCMD_ERROR
) {
217 ret
= le32_to_cpu(msg
->status
);
218 /* Cache error from dongle */
219 drvr
->dongle_error
= ret
;
226 int brcmf_proto_cdc_set_dcmd(struct brcmf_pub
*drvr
, int ifidx
, uint cmd
,
229 struct brcmf_proto
*prot
= drvr
->prot
;
230 struct brcmf_proto_cdc_dcmd
*msg
= &prot
->msg
;
234 brcmf_dbg(TRACE
, "Enter\n");
235 brcmf_dbg(CTL
, "cmd %d len %d\n", cmd
, len
);
237 memset(msg
, 0, sizeof(struct brcmf_proto_cdc_dcmd
));
239 msg
->cmd
= cpu_to_le32(cmd
);
240 msg
->len
= cpu_to_le32(len
);
241 flags
= (++prot
->reqid
<< CDC_DCMD_ID_SHIFT
) | CDC_DCMD_SET
;
242 flags
= (flags
& ~CDC_DCMD_IF_MASK
) |
243 (ifidx
<< CDC_DCMD_IF_SHIFT
);
244 msg
->flags
= cpu_to_le32(flags
);
247 memcpy(prot
->buf
, buf
, len
);
249 ret
= brcmf_proto_cdc_msg(drvr
);
253 ret
= brcmf_proto_cdc_cmplt(drvr
, prot
->reqid
, len
);
257 flags
= le32_to_cpu(msg
->flags
);
258 id
= (flags
& CDC_DCMD_ID_MASK
) >> CDC_DCMD_ID_SHIFT
;
260 if (id
!= prot
->reqid
) {
261 brcmf_dbg(ERROR
, "%s: unexpected request id %d (expected %d)\n",
262 brcmf_ifname(drvr
, ifidx
), id
, prot
->reqid
);
267 /* Check the ERROR flag */
268 if (flags
& CDC_DCMD_ERROR
) {
269 ret
= le32_to_cpu(msg
->status
);
270 /* Cache error from dongle */
271 drvr
->dongle_error
= ret
;
279 brcmf_proto_dcmd(struct brcmf_pub
*drvr
, int ifidx
, struct brcmf_dcmd
*dcmd
,
282 struct brcmf_proto
*prot
= drvr
->prot
;
285 if (drvr
->bus_if
->state
== BRCMF_BUS_DOWN
) {
286 brcmf_dbg(ERROR
, "bus is down. we have nothing to do.\n");
289 mutex_lock(&drvr
->proto_block
);
291 brcmf_dbg(TRACE
, "Enter\n");
293 if (len
> BRCMF_DCMD_MAXLEN
)
296 if (prot
->pending
== true) {
297 brcmf_dbg(TRACE
, "CDC packet is pending!!!! cmd=0x%x (%lu) lastcmd=0x%x (%lu)\n",
298 dcmd
->cmd
, (unsigned long)dcmd
->cmd
, prot
->lastcmd
,
299 (unsigned long)prot
->lastcmd
);
300 if (dcmd
->cmd
== BRCMF_C_SET_VAR
||
301 dcmd
->cmd
== BRCMF_C_GET_VAR
)
302 brcmf_dbg(TRACE
, "iovar cmd=%s\n", (char *)dcmd
->buf
);
307 prot
->pending
= true;
308 prot
->lastcmd
= dcmd
->cmd
;
310 ret
= brcmf_proto_cdc_set_dcmd(drvr
, ifidx
, dcmd
->cmd
,
313 ret
= brcmf_proto_cdc_query_dcmd(drvr
, ifidx
, dcmd
->cmd
,
317 sizeof(struct brcmf_proto_cdc_dcmd
);
323 struct brcmf_proto_cdc_dcmd
*msg
= &prot
->msg
;
324 /* len == needed when set/query fails from dongle */
325 dcmd
->needed
= le32_to_cpu(msg
->len
);
328 /* Intercept the wme_dp dongle cmd here */
329 if (!ret
&& dcmd
->cmd
== BRCMF_C_SET_VAR
&&
330 !strcmp(dcmd
->buf
, "wme_dp")) {
334 slen
= strlen("wme_dp") + 1;
335 if (len
>= (int)(slen
+ sizeof(int)))
336 memcpy(&val
, (char *)dcmd
->buf
+ slen
, sizeof(int));
337 drvr
->wme_dp
= (u8
) le32_to_cpu(val
);
340 prot
->pending
= false;
343 mutex_unlock(&drvr
->proto_block
);
348 static bool pkt_sum_needed(struct sk_buff
*skb
)
350 return skb
->ip_summed
== CHECKSUM_PARTIAL
;
353 static void pkt_set_sum_good(struct sk_buff
*skb
, bool x
)
355 skb
->ip_summed
= (x
? CHECKSUM_UNNECESSARY
: CHECKSUM_NONE
);
358 void brcmf_proto_hdrpush(struct brcmf_pub
*drvr
, int ifidx
,
359 struct sk_buff
*pktbuf
)
361 struct brcmf_proto_bdc_header
*h
;
363 brcmf_dbg(TRACE
, "Enter\n");
365 /* Push BDC header used to convey priority for buses that don't */
367 skb_push(pktbuf
, BDC_HEADER_LEN
);
369 h
= (struct brcmf_proto_bdc_header
*)(pktbuf
->data
);
371 h
->flags
= (BDC_PROTO_VER
<< BDC_FLAG_VER_SHIFT
);
372 if (pkt_sum_needed(pktbuf
))
373 h
->flags
|= BDC_FLAG_SUM_NEEDED
;
375 h
->priority
= (pktbuf
->priority
& BDC_PRIORITY_MASK
);
378 BDC_SET_IF_IDX(h
, ifidx
);
381 int brcmf_proto_hdrpull(struct device
*dev
, int *ifidx
,
382 struct sk_buff
*pktbuf
)
384 struct brcmf_proto_bdc_header
*h
;
385 struct brcmf_bus
*bus_if
= dev_get_drvdata(dev
);
386 struct brcmf_pub
*drvr
= bus_if
->drvr
;
388 brcmf_dbg(TRACE
, "Enter\n");
390 /* Pop BDC header used to convey priority for buses that don't */
392 if (pktbuf
->len
< BDC_HEADER_LEN
) {
393 brcmf_dbg(ERROR
, "rx data too short (%d < %d)\n",
394 pktbuf
->len
, BDC_HEADER_LEN
);
398 h
= (struct brcmf_proto_bdc_header
*)(pktbuf
->data
);
400 *ifidx
= BDC_GET_IF_IDX(h
);
401 if (*ifidx
>= BRCMF_MAX_IFS
) {
402 brcmf_dbg(ERROR
, "rx data ifnum out of range (%d)\n", *ifidx
);
406 if (((h
->flags
& BDC_FLAG_VER_MASK
) >> BDC_FLAG_VER_SHIFT
) !=
408 brcmf_dbg(ERROR
, "%s: non-BDC packet received, flags 0x%x\n",
409 brcmf_ifname(drvr
, *ifidx
), h
->flags
);
413 if (h
->flags
& BDC_FLAG_SUM_GOOD
) {
414 brcmf_dbg(INFO
, "%s: BDC packet received with good rx-csum, flags 0x%x\n",
415 brcmf_ifname(drvr
, *ifidx
), h
->flags
);
416 pkt_set_sum_good(pktbuf
, true);
419 pktbuf
->priority
= h
->priority
& BDC_PRIORITY_MASK
;
421 skb_pull(pktbuf
, BDC_HEADER_LEN
);
426 int brcmf_proto_attach(struct brcmf_pub
*drvr
)
428 struct brcmf_proto
*cdc
;
430 cdc
= kzalloc(sizeof(struct brcmf_proto
), GFP_ATOMIC
);
434 /* ensure that the msg buf directly follows the cdc msg struct */
435 if ((unsigned long)(&cdc
->msg
+ 1) != (unsigned long)cdc
->buf
) {
436 brcmf_dbg(ERROR
, "struct brcmf_proto is not correctly defined\n");
441 drvr
->hdrlen
+= BDC_HEADER_LEN
;
442 drvr
->bus_if
->maxctl
= BRCMF_DCMD_MAXLEN
+
443 sizeof(struct brcmf_proto_cdc_dcmd
) + ROUND_UP_MARGIN
;
451 /* ~NOTE~ What if another thread is waiting on the semaphore? Holding it? */
452 void brcmf_proto_detach(struct brcmf_pub
*drvr
)
458 int brcmf_proto_init(struct brcmf_pub
*drvr
)
463 brcmf_dbg(TRACE
, "Enter\n");
465 mutex_lock(&drvr
->proto_block
);
467 /* Get the device MAC address */
468 strcpy(buf
, "cur_etheraddr");
469 ret
= brcmf_proto_cdc_query_dcmd(drvr
, 0, BRCMF_C_GET_VAR
,
472 mutex_unlock(&drvr
->proto_block
);
475 memcpy(drvr
->mac
, buf
, ETH_ALEN
);
477 mutex_unlock(&drvr
->proto_block
);
479 ret
= brcmf_c_preinit_dcmds(drvr
);
481 /* Always assumes wl for now */
487 void brcmf_proto_stop(struct brcmf_pub
*drvr
)
489 /* Nothing to do for CDC */