staging: brcm80211: rename functions and variables in dhd_common.c
[pandora-kernel.git] / drivers / staging / brcm80211 / brcmfmac / dhd_proto.h
1 /*
2  * Copyright (c) 2010 Broadcom Corporation
3  *
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.
7  *
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.
15  */
16
17 #ifndef _dhd_proto_h_
18 #define _dhd_proto_h_
19
20 #ifndef IOCTL_RESP_TIMEOUT
21 #define IOCTL_RESP_TIMEOUT  2000        /* In milli second */
22 #endif
23
24 #ifndef IOCTL_CHIP_ACTIVE_TIMEOUT
25 #define IOCTL_CHIP_ACTIVE_TIMEOUT  10   /* In milli second */
26 #endif
27
28 /*
29  * Exported from the dhd protocol module (dhd_cdc, dhd_rndis)
30  */
31
32 /* Linkage, sets prot link and updates hdrlen in pub */
33 extern int dhd_prot_attach(dhd_pub_t *dhdp);
34
35 /* Unlink, frees allocated protocol memory (including dhd_prot) */
36 extern void dhd_prot_detach(dhd_pub_t *dhdp);
37
38 /* Initialize protocol: sync w/dongle state.
39  * Sets dongle media info (iswl, drv_version, mac address).
40  */
41 extern int dhd_prot_init(dhd_pub_t *dhdp);
42
43 /* Stop protocol: sync w/dongle state. */
44 extern void dhd_prot_stop(dhd_pub_t *dhdp);
45
46 /* Add any protocol-specific data header.
47  * Caller must reserve prot_hdrlen prepend space.
48  */
49 extern void dhd_prot_hdrpush(dhd_pub_t *, int ifidx, struct sk_buff *txp);
50
51 /* Remove any protocol-specific data header. */
52 extern int dhd_prot_hdrpull(dhd_pub_t *, int *ifidx, struct sk_buff *rxp);
53
54 /* Use protocol to issue ioctl to dongle */
55 extern int dhd_prot_ioctl(dhd_pub_t *dhd, int ifidx, wl_ioctl_t *ioc,
56                           void *buf, int len);
57
58 /* Check for and handle local prot-specific iovar commands */
59 extern int dhd_prot_iovar_op(dhd_pub_t *dhdp, const char *name,
60                              void *params, int plen, void *arg, int len,
61                              bool set);
62
63 /* Add prot dump output to a buffer */
64 extern void dhd_prot_dump(dhd_pub_t *dhdp, struct brcmu_strbuf *strbuf);
65
66 /* Update local copy of dongle statistics */
67 extern void dhd_prot_dstats(dhd_pub_t *dhdp);
68
69 extern int brcmf_c_ioctl(dhd_pub_t *dhd_pub, dhd_ioctl_t *ioc, void *buf,
70                      uint buflen);
71
72 extern int brcmf_c_preinit_ioctls(dhd_pub_t *dhd);
73
74 #if defined(CONFIG_HAS_EARLYSUSPEND)
75 extern int dhdcdc_set_ioctl(dhd_pub_t *dhd, int ifidx, uint cmd, void *buf,
76                             uint len);
77 #endif          /* defined(CONFIG_HAS_EARLYSUSPEND) */
78
79 /********************************
80  * For version-string expansion *
81  */
82 #if defined(BDC)
83 #define DHD_PROTOCOL "bdc"
84 #elif defined(CDC)
85 #define DHD_PROTOCOL "cdc"
86 #elif defined(RNDIS)
87 #define DHD_PROTOCOL "rndis"
88 #else
89 #define DHD_PROTOCOL "unknown"
90 #endif                          /* proto */
91
92 #endif                          /* _dhd_proto_h_ */