]> git.kernelconcepts.de Git - karo-tx-linux.git/blob - drivers/staging/brcm80211/include/bcmdefs.h
Staging: brcm80211: remove CONST definition
[karo-tx-linux.git] / drivers / staging / brcm80211 / include / bcmdefs.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 _bcmdefs_h_
18 #define _bcmdefs_h_
19
20 #define SI_BUS                  0
21 #define PCI_BUS                 1
22 #define PCMCIA_BUS              2
23 #define SDIO_BUS                3
24 #define JTAG_BUS                4
25 #define USB_BUS                 5
26 #define SPI_BUS                 6
27 /*
28  * One doesn't need to include this file explicitly, gets included automatically if
29  * typedefs.h is included.
30  */
31
32 /* Use BCM_REFERENCE to suppress warnings about intentionally-unused function
33  * arguments or local variables.
34  */
35 #define BCM_REFERENCE(data)     ((void)data)
36
37 /* Reclaiming text and data :
38  * The following macros specify special linker sections that can be reclaimed
39  * after a system is considered 'up'.
40  * BCMATTACHFN is also used for detach functions (it's not worth having a BCMDETACHFN,
41  * as in most cases, the attach function calls the detach function to clean up on error).
42  */
43
44 #define bcmreclaimed            0
45 #define BCMATTACHDATA(_data)    _data
46 #define BCMATTACHFN(_fn)        _fn
47 #define BCMPREATTACHDATA(_data) _data
48 #define BCMPREATTACHFN(_fn)     _fn
49 #define BCMINITDATA(_data)      _data
50 #define BCMINITFN(_fn)          _fn
51 #define BCMUNINITFN(_fn)        _fn
52 #define BCMNMIATTACHFN(_fn)     _fn
53 #define BCMNMIATTACHDATA(_data) _data
54 #define BCMOVERLAY0DATA(_sym)   _sym
55 #define BCMOVERLAY0FN(_fn)      _fn
56 #define BCMOVERLAY1DATA(_sym)   _sym
57 #define BCMOVERLAY1FN(_fn)      _fn
58 #define BCMOVERLAYERRFN(_fn)    _fn
59 #ifdef mips
60 #define BCMFASTPATH             __attribute__ ((__section__(".text.fastpath")))
61 #else
62 #define BCMFASTPATH
63 #endif
64
65 /* Put some library data/code into ROM to reduce RAM requirements */
66 #define BCMROMDATA(_data)       _data
67 #define BCMROMDAT_NAME(_data)   _data
68 #define BCMROMFN(_fn)           _fn
69 #define BCMROMFN_NAME(_fn)      _fn
70 #define STATIC  static
71 #define BCMROMDAT_ARYSIZ(data)  ARRAYSIZE(data)
72 #define BCMROMDAT_SIZEOF(data)  sizeof(data)
73 #define BCMROMDAT_APATCH(data)
74 #define BCMROMDAT_SPATCH(data)
75
76 /* Bus types */
77 #define SI_BUS                  0       /* SOC Interconnect */
78 #define PCI_BUS                 1       /* PCI target */
79 #define SDIO_BUS                3       /* SDIO target */
80 #define JTAG_BUS                4       /* JTAG */
81 #define USB_BUS                 5       /* USB (does not support R/W REG) */
82 #define SPI_BUS                 6       /* gSPI target */
83 #define RPC_BUS                 7       /* RPC target */
84
85 /* Allows size optimization for single-bus image */
86 #ifdef BCMBUSTYPE
87 #define BUSTYPE(bus)    (BCMBUSTYPE)
88 #else
89 #define BUSTYPE(bus)    (bus)
90 #endif
91
92 /* Allows size optimization for single-backplane image */
93 #ifdef BCMCHIPTYPE
94 #define CHIPTYPE(bus)   (BCMCHIPTYPE)
95 #else
96 #define CHIPTYPE(bus)   (bus)
97 #endif
98
99 /* Allows size optimization for SPROM support */
100 #define SPROMBUS        (PCI_BUS)
101
102 /* Allows size optimization for single-chip image */
103 #ifdef BCMCHIPID
104 #define CHIPID(chip)    (BCMCHIPID)
105 #else
106 #define CHIPID(chip)    (chip)
107 #endif
108
109 #ifdef BCMCHIPREV
110 #define CHIPREV(rev)    (BCMCHIPREV)
111 #else
112 #define CHIPREV(rev)    (rev)
113 #endif
114
115 /* Defines for DMA Address Width - Shared between OSL and HNDDMA */
116 #define DMADDR_MASK_32 0x0      /* Address mask for 32-bits */
117 #define DMADDR_MASK_30 0xc0000000       /* Address mask for 30-bits */
118 #define DMADDR_MASK_0  0xffffffff       /* Address mask for 0-bits (hi-part) */
119
120 #define DMADDRWIDTH_30  30      /* 30-bit addressing capability */
121 #define DMADDRWIDTH_32  32      /* 32-bit addressing capability */
122 #define DMADDRWIDTH_63  63      /* 64-bit addressing capability */
123 #define DMADDRWIDTH_64  64      /* 64-bit addressing capability */
124
125 #ifdef BCMDMA64OSL
126 typedef struct {
127         uint32 loaddr;
128         uint32 hiaddr;
129 } dma64addr_t;
130
131 typedef dma64addr_t dmaaddr_t;
132 #define PHYSADDRHI(_pa) ((_pa).hiaddr)
133 #define PHYSADDRHISET(_pa, _val) \
134         do { \
135                 (_pa).hiaddr = (_val);          \
136         } while (0)
137 #define PHYSADDRLO(_pa) ((_pa).loaddr)
138 #define PHYSADDRLOSET(_pa, _val) \
139         do { \
140                 (_pa).loaddr = (_val);          \
141         } while (0)
142
143 #else
144 typedef unsigned long dmaaddr_t;
145 #define PHYSADDRHI(_pa) (0)
146 #define PHYSADDRHISET(_pa, _val)
147 #define PHYSADDRLO(_pa) ((_pa))
148 #define PHYSADDRLOSET(_pa, _val) \
149         do { \
150                 (_pa) = (_val);                 \
151         } while (0)
152 #endif                          /* BCMDMA64OSL */
153
154 /* One physical DMA segment */
155 typedef struct {
156         dmaaddr_t addr;
157         uint32 length;
158 } hnddma_seg_t;
159
160 #define MAX_DMA_SEGS 4
161
162 typedef struct {
163         void *oshdmah;          /* Opaque handle for OSL to store its information */
164         uint origsize;          /* Size of the virtual packet */
165         uint nsegs;
166         hnddma_seg_t segs[MAX_DMA_SEGS];
167 } hnddma_seg_map_t;
168
169 /* packet headroom necessary to accommodate the largest header in the system, (i.e TXOFF).
170  * By doing, we avoid the need  to allocate an extra buffer for the header when bridging to WL.
171  * There is a compile time check in wlc.c which ensure that this value is at least as big
172  * as TXOFF. This value is used in dma_rxfill (hnddma.c).
173  */
174
175 #define BCMEXTRAHDROOM 172
176
177 /* Headroom required for dongle-to-host communication.  Packets allocated
178  * locally in the dongle (e.g. for CDC ioctls or RNDIS messages) should
179  * leave this much room in front for low-level message headers which may
180  * be needed to get across the dongle bus to the host.  (These messages
181  * don't go over the network, so room for the full WL header above would
182  * be a waste.).
183 */
184 #define BCMDONGLEHDRSZ 12
185 #define BCMDONGLEPADSZ 16
186
187 #define BCMDONGLEOVERHEAD       (BCMDONGLEHDRSZ + BCMDONGLEPADSZ)
188
189 #ifdef BCMDBG
190
191 #define BCMDBG_ERR
192
193 #ifndef BCMDBG_ASSERT
194 #define BCMDBG_ASSERT
195 #endif                          /* BCMDBG_ASSERT */
196
197 #endif                          /* BCMDBG */
198
199 #if defined(BCMDBG_ASSERT)
200 #define BCMASSERT_SUPPORT
201 #endif
202
203 /* Macros for doing definition and get/set of bitfields
204  * Usage example, e.g. a three-bit field (bits 4-6):
205  *    #define <NAME>_M  BITFIELD_MASK(3)
206  *    #define <NAME>_S  4
207  * ...
208  *    regval = R_REG(osh, &regs->regfoo);
209  *    field = GFIELD(regval, <NAME>);
210  *    regval = SFIELD(regval, <NAME>, 1);
211  *    W_REG(osh, &regs->regfoo, regval);
212  */
213 #define BITFIELD_MASK(width) \
214                 (((unsigned)1 << (width)) - 1)
215 #define GFIELD(val, field) \
216                 (((val) >> field ## _S) & field ## _M)
217 #define SFIELD(val, field, bits) \
218                 (((val) & (~(field ## _M << field ## _S))) | \
219                  ((unsigned)(bits) << field ## _S))
220
221 /* define BCMSMALL to remove misc features for memory-constrained environments */
222 #define BCMSPACE
223 #define bcmspace        TRUE    /* if (bcmspace) code is retained */
224
225 /* Max. nvram variable table size */
226 #define MAXSZ_NVRAM_VARS        4096
227
228 #define LOCATOR_EXTERN static
229
230 #endif                          /* _bcmdefs_h_ */