3 * Defines the constants and data structures for the hfa384x
5 * Copyright (C) 1999 AbsoluteValue Systems, Inc. All Rights Reserved.
6 * --------------------------------------------------------------------
10 * The contents of this file are subject to the Mozilla Public
11 * License Version 1.1 (the "License"); you may not use this file
12 * except in compliance with the License. You may obtain a copy of
13 * the License at http://www.mozilla.org/MPL/
15 * Software distributed under the License is distributed on an "AS
16 * IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
17 * implied. See the License for the specific language governing
18 * rights and limitations under the License.
20 * Alternatively, the contents of this file may be used under the
21 * terms of the GNU Public License version 2 (the "GPL"), in which
22 * case the provisions of the GPL are applicable instead of the
23 * above. If you wish to allow the use of your version of this file
24 * only under the terms of the GPL and not to allow others to use
25 * your version of this file under the MPL, indicate your decision
26 * by deleting the provisions above and replace them with the notice
27 * and other provisions required by the GPL. If you do not delete
28 * the provisions above, a recipient may use your version of this
29 * file under either the MPL or the GPL.
31 * --------------------------------------------------------------------
33 * Inquiries regarding the linux-wlan Open Source project can be
36 * AbsoluteValue Systems Inc.
38 * http://www.linux-wlan.com
40 * --------------------------------------------------------------------
42 * Portions of the development of this software were funded by
43 * Intersil Corporation as part of PRISM(R) chipset product development.
45 * --------------------------------------------------------------------
47 * [Implementation and usage notes]
50 * CW10 Programmer's Manual v1.5
53 * --------------------------------------------------------------------
59 #define HFA384x_FIRMWARE_VERSION(a, b, c) (((a) << 16) + ((b) << 8) + (c))
61 #include <linux/if_ether.h>
62 #include <linux/usb.h>
64 /*--- Mins & Maxs -----------------------------------*/
65 #define HFA384x_PORTID_MAX ((u16)7)
66 #define HFA384x_NUMPORTS_MAX ((u16)(HFA384x_PORTID_MAX+1))
67 #define HFA384x_PDR_LEN_MAX ((u16)512) /* in bytes, from EK */
68 #define HFA384x_PDA_RECS_MAX ((u16)200) /* a guess */
69 #define HFA384x_PDA_LEN_MAX ((u16)1024) /* in bytes, from EK*/
70 #define HFA384x_SCANRESULT_MAX ((u16)31)
71 #define HFA384x_HSCANRESULT_MAX ((u16)31)
72 #define HFA384x_CHINFORESULT_MAX ((u16)16)
73 #define HFA384x_RID_GUESSING_MAXLEN 2048 /* I'm not really sure */
74 #define HFA384x_RIDDATA_MAXLEN HFA384x_RID_GUESSING_MAXLEN
75 #define HFA384x_USB_RWMEM_MAXLEN 2048
77 /*--- Support Constants -----------------------------*/
78 #define HFA384x_PORTTYPE_IBSS ((u16)0)
79 #define HFA384x_PORTTYPE_BSS ((u16)1)
80 #define HFA384x_PORTTYPE_PSUEDOIBSS ((u16)3)
81 #define HFA384x_WEPFLAGS_PRIVINVOKED ((u16)BIT(0))
82 #define HFA384x_WEPFLAGS_EXCLUDE ((u16)BIT(1))
83 #define HFA384x_WEPFLAGS_DISABLE_TXCRYPT ((u16)BIT(4))
84 #define HFA384x_WEPFLAGS_DISABLE_RXCRYPT ((u16)BIT(7))
85 #define HFA384x_ROAMMODE_HOSTSCAN_HOSTROAM ((u16)3)
86 #define HFA384x_PORTSTATUS_DISABLED ((u16)1)
87 #define HFA384x_RATEBIT_1 ((u16)1)
88 #define HFA384x_RATEBIT_2 ((u16)2)
89 #define HFA384x_RATEBIT_5dot5 ((u16)4)
90 #define HFA384x_RATEBIT_11 ((u16)8)
92 /*--- MAC Internal memory constants and macros ------*/
93 /* masks and macros used to manipulate MAC internal memory addresses. */
94 /* MAC internal memory addresses are 23 bit quantities. The MAC uses
95 * a paged address space where the upper 16 bits are the page number
96 * and the lower 7 bits are the offset. There are various Host API
97 * elements that require two 16-bit quantities to specify a MAC
98 * internal memory address. Unfortunately, some of the API's use a
99 * page/offset format where the offset value is JUST the lower seven
100 * bits and the page is the remaining 16 bits. Some of the API's
101 * assume that the 23 bit address has been split at the 16th bit. We
102 * refer to these two formats as AUX format and CMD format. The
103 * macros below help handle some of this.
106 /* Mask bits for discarding unwanted pieces in a flat address */
107 #define HFA384x_ADDR_FLAT_AUX_PAGE_MASK (0x007fff80)
108 #define HFA384x_ADDR_FLAT_AUX_OFF_MASK (0x0000007f)
109 #define HFA384x_ADDR_FLAT_CMD_PAGE_MASK (0xffff0000)
110 #define HFA384x_ADDR_FLAT_CMD_OFF_MASK (0x0000ffff)
112 /* Mask bits for discarding unwanted pieces in AUX format
113 16-bit address parts */
114 #define HFA384x_ADDR_AUX_PAGE_MASK (0xffff)
115 #define HFA384x_ADDR_AUX_OFF_MASK (0x007f)
117 /* Make a 32-bit flat address from AUX format 16-bit page and offset */
118 #define HFA384x_ADDR_AUX_MKFLAT(p, o) \
119 ((((u32)(((u16)(p))&HFA384x_ADDR_AUX_PAGE_MASK)) << 7) | \
120 ((u32)(((u16)(o))&HFA384x_ADDR_AUX_OFF_MASK)))
122 /* Make CMD format offset and page from a 32-bit flat address */
123 #define HFA384x_ADDR_CMD_MKPAGE(f) \
124 ((u16)((((u32)(f))&HFA384x_ADDR_FLAT_CMD_PAGE_MASK)>>16))
125 #define HFA384x_ADDR_CMD_MKOFF(f) \
126 ((u16)(((u32)(f))&HFA384x_ADDR_FLAT_CMD_OFF_MASK))
128 /*--- Controller Memory addresses -------------------*/
129 #define HFA3842_PDA_BASE (0x007f0000UL)
130 #define HFA3841_PDA_BASE (0x003f0000UL)
131 #define HFA3841_PDA_BOGUS_BASE (0x00390000UL)
133 /*--- Driver Download states -----------------------*/
134 #define HFA384x_DLSTATE_DISABLED 0
135 #define HFA384x_DLSTATE_RAMENABLED 1
136 #define HFA384x_DLSTATE_FLASHENABLED 2
138 /*--- Register Field Masks --------------------------*/
139 #define HFA384x_CMD_AINFO ((u16)(BIT(14) | BIT(13) \
140 | BIT(12) | BIT(11) \
143 #define HFA384x_CMD_MACPORT ((u16)(BIT(10) | BIT(9) | \
145 #define HFA384x_CMD_PROGMODE ((u16)(BIT(9) | BIT(8)))
146 #define HFA384x_CMD_CMDCODE ((u16)(BIT(5) | BIT(4) | \
150 #define HFA384x_STATUS_RESULT ((u16)(BIT(14) | BIT(13) \
151 | BIT(12) | BIT(11) \
155 /*--- Command Code Constants --------------------------*/
156 /*--- Controller Commands --------------------------*/
157 #define HFA384x_CMDCODE_INIT ((u16)0x00)
158 #define HFA384x_CMDCODE_ENABLE ((u16)0x01)
159 #define HFA384x_CMDCODE_DISABLE ((u16)0x02)
161 /*--- Regulate Commands --------------------------*/
162 #define HFA384x_CMDCODE_INQ ((u16)0x11)
164 /*--- Configure Commands --------------------------*/
165 #define HFA384x_CMDCODE_DOWNLD ((u16)0x22)
167 /*--- Debugging Commands -----------------------------*/
168 #define HFA384x_CMDCODE_MONITOR ((u16)(0x38))
169 #define HFA384x_MONITOR_ENABLE ((u16)(0x0b))
170 #define HFA384x_MONITOR_DISABLE ((u16)(0x0f))
172 /*--- Result Codes --------------------------*/
173 #define HFA384x_CMD_ERR ((u16)(0x7F))
175 /*--- Programming Modes --------------------------
176 MODE 0: Disable programming
177 MODE 1: Enable volatile memory programming
178 MODE 2: Enable non-volatile memory programming
179 MODE 3: Program non-volatile memory section
180 --------------------------------------------------*/
181 #define HFA384x_PROGMODE_DISABLE ((u16)0x00)
182 #define HFA384x_PROGMODE_RAM ((u16)0x01)
183 #define HFA384x_PROGMODE_NV ((u16)0x02)
184 #define HFA384x_PROGMODE_NVWRITE ((u16)0x03)
186 /*--- Record ID Constants --------------------------*/
187 /*--------------------------------------------------------------------
188 Configuration RIDs: Network Parameters, Static Configuration Entities
189 --------------------------------------------------------------------*/
190 #define HFA384x_RID_CNFPORTTYPE ((u16)0xFC00)
191 #define HFA384x_RID_CNFOWNMACADDR ((u16)0xFC01)
192 #define HFA384x_RID_CNFDESIREDSSID ((u16)0xFC02)
193 #define HFA384x_RID_CNFOWNCHANNEL ((u16)0xFC03)
194 #define HFA384x_RID_CNFOWNSSID ((u16)0xFC04)
195 #define HFA384x_RID_CNFMAXDATALEN ((u16)0xFC07)
197 /*--------------------------------------------------------------------
198 Configuration RID lengths: Network Params, Static Config Entities
199 This is the length of JUST the DATA part of the RID (does not
200 include the len or code fields)
201 --------------------------------------------------------------------*/
202 #define HFA384x_RID_CNFOWNMACADDR_LEN ((u16)6)
203 #define HFA384x_RID_CNFDESIREDSSID_LEN ((u16)34)
204 #define HFA384x_RID_CNFOWNSSID_LEN ((u16)34)
206 /*--------------------------------------------------------------------
207 Configuration RIDs: Network Parameters, Dynamic Configuration Entities
208 --------------------------------------------------------------------*/
209 #define HFA384x_RID_CREATEIBSS ((u16)0xFC81)
210 #define HFA384x_RID_FRAGTHRESH ((u16)0xFC82)
211 #define HFA384x_RID_RTSTHRESH ((u16)0xFC83)
212 #define HFA384x_RID_TXRATECNTL ((u16)0xFC84)
213 #define HFA384x_RID_PROMISCMODE ((u16)0xFC85)
215 /*----------------------------------------------------------------------
216 Information RIDs: NIC Information
217 --------------------------------------------------------------------*/
218 #define HFA384x_RID_MAXLOADTIME ((u16)0xFD00)
219 #define HFA384x_RID_DOWNLOADBUFFER ((u16)0xFD01)
220 #define HFA384x_RID_PRIIDENTITY ((u16)0xFD02)
221 #define HFA384x_RID_PRISUPRANGE ((u16)0xFD03)
222 #define HFA384x_RID_PRI_CFIACTRANGES ((u16)0xFD04)
223 #define HFA384x_RID_NICSERIALNUMBER ((u16)0xFD0A)
224 #define HFA384x_RID_NICIDENTITY ((u16)0xFD0B)
225 #define HFA384x_RID_MFISUPRANGE ((u16)0xFD0C)
226 #define HFA384x_RID_CFISUPRANGE ((u16)0xFD0D)
227 #define HFA384x_RID_STAIDENTITY ((u16)0xFD20)
228 #define HFA384x_RID_STASUPRANGE ((u16)0xFD21)
229 #define HFA384x_RID_STA_MFIACTRANGES ((u16)0xFD22)
230 #define HFA384x_RID_STA_CFIACTRANGES ((u16)0xFD23)
232 /*----------------------------------------------------------------------
233 Information RID Lengths: NIC Information
234 This is the length of JUST the DATA part of the RID (does not
235 include the len or code fields)
236 --------------------------------------------------------------------*/
237 #define HFA384x_RID_NICSERIALNUMBER_LEN ((u16)12)
239 /*--------------------------------------------------------------------
240 Information RIDs: MAC Information
241 --------------------------------------------------------------------*/
242 #define HFA384x_RID_PORTSTATUS ((u16)0xFD40)
243 #define HFA384x_RID_CURRENTSSID ((u16)0xFD41)
244 #define HFA384x_RID_CURRENTBSSID ((u16)0xFD42)
245 #define HFA384x_RID_CURRENTTXRATE ((u16)0xFD44)
246 #define HFA384x_RID_SHORTRETRYLIMIT ((u16)0xFD48)
247 #define HFA384x_RID_LONGRETRYLIMIT ((u16)0xFD49)
248 #define HFA384x_RID_MAXTXLIFETIME ((u16)0xFD4A)
249 #define HFA384x_RID_PRIVACYOPTIMP ((u16)0xFD4F)
250 #define HFA384x_RID_DBMCOMMSQUALITY ((u16)0xFD51)
252 /*--------------------------------------------------------------------
253 Information RID Lengths: MAC Information
254 This is the length of JUST the DATA part of the RID (does not
255 include the len or code fields)
256 --------------------------------------------------------------------*/
257 #define HFA384x_RID_DBMCOMMSQUALITY_LEN \
258 ((u16) sizeof(hfa384x_dbmcommsquality_t))
259 #define HFA384x_RID_JOINREQUEST_LEN \
260 ((u16)sizeof(hfa384x_JoinRequest_data_t))
262 /*--------------------------------------------------------------------
263 Information RIDs: Modem Information
264 --------------------------------------------------------------------*/
265 #define HFA384x_RID_CURRENTCHANNEL ((u16)0xFDC1)
267 /*--------------------------------------------------------------------
268 API ENHANCEMENTS (NOT ALREADY IMPLEMENTED)
269 --------------------------------------------------------------------*/
270 #define HFA384x_RID_CNFWEPDEFAULTKEYID ((u16)0xFC23)
271 #define HFA384x_RID_CNFWEPDEFAULTKEY0 ((u16)0xFC24)
272 #define HFA384x_RID_CNFWEPDEFAULTKEY1 ((u16)0xFC25)
273 #define HFA384x_RID_CNFWEPDEFAULTKEY2 ((u16)0xFC26)
274 #define HFA384x_RID_CNFWEPDEFAULTKEY3 ((u16)0xFC27)
275 #define HFA384x_RID_CNFWEPFLAGS ((u16)0xFC28)
276 #define HFA384x_RID_CNFAUTHENTICATION ((u16)0xFC2A)
277 #define HFA384x_RID_CNFROAMINGMODE ((u16)0xFC2D)
278 #define HFA384x_RID_CNFAPBCNint ((u16)0xFC33)
279 #define HFA384x_RID_CNFDBMADJUST ((u16)0xFC46)
280 #define HFA384x_RID_CNFWPADATA ((u16)0xFC48)
281 #define HFA384x_RID_CNFBASICRATES ((u16)0xFCB3)
282 #define HFA384x_RID_CNFSUPPRATES ((u16)0xFCB4)
283 #define HFA384x_RID_CNFPASSIVESCANCTRL ((u16)0xFCBA)
284 #define HFA384x_RID_TXPOWERMAX ((u16)0xFCBE)
285 #define HFA384x_RID_JOINREQUEST ((u16)0xFCE2)
286 #define HFA384x_RID_AUTHENTICATESTA ((u16)0xFCE3)
287 #define HFA384x_RID_HOSTSCAN ((u16)0xFCE5)
289 #define HFA384x_RID_CNFWEPDEFAULTKEY_LEN ((u16)6)
290 #define HFA384x_RID_CNFWEP128DEFAULTKEY_LEN ((u16)14)
292 /*--------------------------------------------------------------------
294 --------------------------------------------------------------------*/
295 #define HFA384x_PDR_PCB_PARTNUM ((u16)0x0001)
296 #define HFA384x_PDR_PDAVER ((u16)0x0002)
297 #define HFA384x_PDR_NIC_SERIAL ((u16)0x0003)
298 #define HFA384x_PDR_MKK_MEASUREMENTS ((u16)0x0004)
299 #define HFA384x_PDR_NIC_RAMSIZE ((u16)0x0005)
300 #define HFA384x_PDR_MFISUPRANGE ((u16)0x0006)
301 #define HFA384x_PDR_CFISUPRANGE ((u16)0x0007)
302 #define HFA384x_PDR_NICID ((u16)0x0008)
303 #define HFA384x_PDR_MAC_ADDRESS ((u16)0x0101)
304 #define HFA384x_PDR_REGDOMAIN ((u16)0x0103)
305 #define HFA384x_PDR_ALLOWED_CHANNEL ((u16)0x0104)
306 #define HFA384x_PDR_DEFAULT_CHANNEL ((u16)0x0105)
307 #define HFA384x_PDR_TEMPTYPE ((u16)0x0107)
308 #define HFA384x_PDR_IFR_SETTING ((u16)0x0200)
309 #define HFA384x_PDR_RFR_SETTING ((u16)0x0201)
310 #define HFA384x_PDR_HFA3861_BASELINE ((u16)0x0202)
311 #define HFA384x_PDR_HFA3861_SHADOW ((u16)0x0203)
312 #define HFA384x_PDR_HFA3861_IFRF ((u16)0x0204)
313 #define HFA384x_PDR_HFA3861_CHCALSP ((u16)0x0300)
314 #define HFA384x_PDR_HFA3861_CHCALI ((u16)0x0301)
315 #define HFA384x_PDR_MAX_TX_POWER ((u16)0x0302)
316 #define HFA384x_PDR_MASTER_CHAN_LIST ((u16)0x0303)
317 #define HFA384x_PDR_3842_NIC_CONFIG ((u16)0x0400)
318 #define HFA384x_PDR_USB_ID ((u16)0x0401)
319 #define HFA384x_PDR_PCI_ID ((u16)0x0402)
320 #define HFA384x_PDR_PCI_IFCONF ((u16)0x0403)
321 #define HFA384x_PDR_PCI_PMCONF ((u16)0x0404)
322 #define HFA384x_PDR_RFENRGY ((u16)0x0406)
323 #define HFA384x_PDR_USB_POWER_TYPE ((u16)0x0407)
324 #define HFA384x_PDR_USB_MAX_POWER ((u16)0x0409)
325 #define HFA384x_PDR_USB_MANUFACTURER ((u16)0x0410)
326 #define HFA384x_PDR_USB_PRODUCT ((u16)0x0411)
327 #define HFA384x_PDR_ANT_DIVERSITY ((u16)0x0412)
328 #define HFA384x_PDR_HFO_DELAY ((u16)0x0413)
329 #define HFA384x_PDR_SCALE_THRESH ((u16)0x0414)
331 #define HFA384x_PDR_HFA3861_MANF_TESTSP ((u16)0x0900)
332 #define HFA384x_PDR_HFA3861_MANF_TESTI ((u16)0x0901)
333 #define HFA384x_PDR_END_OF_PDA ((u16)0x0000)
335 /*--- Register Test/Get/Set Field macros ------------------------*/
337 #define HFA384x_CMD_AINFO_SET(value) ((u16)((u16)(value) << 8))
338 #define HFA384x_CMD_MACPORT_SET(value) \
339 ((u16)HFA384x_CMD_AINFO_SET(value))
340 #define HFA384x_CMD_PROGMODE_SET(value) \
341 ((u16)HFA384x_CMD_AINFO_SET((u16)value))
342 #define HFA384x_CMD_CMDCODE_SET(value) ((u16)(value))
344 #define HFA384x_STATUS_RESULT_SET(value) (((u16)(value)) << 8)
346 /* Host Maintained State Info */
347 #define HFA384x_STATE_PREINIT 0
348 #define HFA384x_STATE_INIT 1
349 #define HFA384x_STATE_RUNNING 2
351 /*-------------------------------------------------------------*/
352 /* Commonly used basic types */
353 struct hfa384x_bytestr
{
358 typedef struct hfa384x_bytestr32
{
361 } __packed hfa384x_bytestr32_t
;
363 /*--------------------------------------------------------------------
364 Configuration Record Structures:
365 Network Parameters, Static Configuration Entities
366 --------------------------------------------------------------------*/
368 /*-- Hardware/Firmware Component Information ----------*/
369 typedef struct hfa384x_compident
{
374 } __packed hfa384x_compident_t
;
376 typedef struct hfa384x_caplevel
{
382 } __packed hfa384x_caplevel_t
;
384 /*-- Configuration Record: cnfAuthentication --*/
385 #define HFA384x_CNFAUTHENTICATION_OPENSYSTEM 0x0001
386 #define HFA384x_CNFAUTHENTICATION_SHAREDKEY 0x0002
387 #define HFA384x_CNFAUTHENTICATION_LEAP 0x0004
389 /*--------------------------------------------------------------------
390 Configuration Record Structures:
391 Network Parameters, Dynamic Configuration Entities
392 --------------------------------------------------------------------*/
394 #define HFA384x_CREATEIBSS_JOINCREATEIBSS 0
396 /*-- Configuration Record: HostScanRequest (data portion only) --*/
397 typedef struct hfa384x_HostScanRequest_data
{
400 hfa384x_bytestr32_t ssid
;
401 } __packed hfa384x_HostScanRequest_data_t
;
403 /*-- Configuration Record: JoinRequest (data portion only) --*/
404 typedef struct hfa384x_JoinRequest_data
{
405 u8 bssid
[WLAN_BSSID_LEN
];
407 } __packed hfa384x_JoinRequest_data_t
;
409 /*-- Configuration Record: authenticateStation (data portion only) --*/
410 typedef struct hfa384x_authenticateStation_data
{
411 u8 address
[ETH_ALEN
];
414 } __packed hfa384x_authenticateStation_data_t
;
416 /*-- Configuration Record: WPAData (data portion only) --*/
417 typedef struct hfa384x_WPAData
{
419 u8 data
[0]; /* max 80 */
420 } __packed hfa384x_WPAData_t
;
422 /*--------------------------------------------------------------------
423 Information Record Structures: NIC Information
424 --------------------------------------------------------------------*/
426 /*-- Information Record: DownLoadBuffer --*/
427 /* NOTE: The page and offset are in AUX format */
428 typedef struct hfa384x_downloadbuffer
{
432 } __packed hfa384x_downloadbuffer_t
;
434 /*--------------------------------------------------------------------
435 Information Record Structures: NIC Information
436 --------------------------------------------------------------------*/
438 #define HFA384x_PSTATUS_CONN_IBSS ((u16)3)
440 /*-- Information Record: commsquality --*/
441 typedef struct hfa384x_commsquality
{
445 } __packed hfa384x_commsquality_t
;
447 /*-- Information Record: dmbcommsquality --*/
448 typedef struct hfa384x_dbmcommsquality
{
452 } __packed hfa384x_dbmcommsquality_t
;
454 /*--------------------------------------------------------------------
455 FRAME STRUCTURES: Communication Frames
456 ----------------------------------------------------------------------
457 Communication Frames: Transmit Frames
458 --------------------------------------------------------------------*/
459 /*-- Communication Frame: Transmit Frame Structure --*/
460 typedef struct hfa384x_tx_frame
{
469 /*-- 802.11 Header Information --*/
476 u16 sequence_control
;
478 u16 data_len
; /* little endian format */
480 /*-- 802.3 Header Information --*/
484 u16 data_length
; /* big endian format */
485 } __packed hfa384x_tx_frame_t
;
486 /*--------------------------------------------------------------------
487 Communication Frames: Field Masks for Transmit Frames
488 --------------------------------------------------------------------*/
489 /*-- Status Field --*/
490 #define HFA384x_TXSTATUS_ACKERR ((u16)BIT(5))
491 #define HFA384x_TXSTATUS_FORMERR ((u16)BIT(3))
492 #define HFA384x_TXSTATUS_DISCON ((u16)BIT(2))
493 #define HFA384x_TXSTATUS_AGEDERR ((u16)BIT(1))
494 #define HFA384x_TXSTATUS_RETRYERR ((u16)BIT(0))
495 /*-- Transmit Control Field --*/
496 #define HFA384x_TX_MACPORT ((u16)(BIT(10) | \
498 #define HFA384x_TX_STRUCTYPE ((u16)(BIT(4) | BIT(3)))
499 #define HFA384x_TX_TXEX ((u16)BIT(2))
500 #define HFA384x_TX_TXOK ((u16)BIT(1))
501 /*--------------------------------------------------------------------
502 Communication Frames: Test/Get/Set Field Values for Transmit Frames
503 --------------------------------------------------------------------*/
504 /*-- Status Field --*/
505 #define HFA384x_TXSTATUS_ISERROR(v) \
507 (HFA384x_TXSTATUS_ACKERR|HFA384x_TXSTATUS_FORMERR|\
508 HFA384x_TXSTATUS_DISCON|HFA384x_TXSTATUS_AGEDERR|\
509 HFA384x_TXSTATUS_RETRYERR))
511 #define HFA384x_TX_SET(v, m, s) ((((u16)(v))<<((u16)(s)))&((u16)(m)))
513 #define HFA384x_TX_MACPORT_SET(v) HFA384x_TX_SET(v, HFA384x_TX_MACPORT, 8)
514 #define HFA384x_TX_STRUCTYPE_SET(v) HFA384x_TX_SET(v, \
515 HFA384x_TX_STRUCTYPE, 3)
516 #define HFA384x_TX_TXEX_SET(v) HFA384x_TX_SET(v, HFA384x_TX_TXEX, 2)
517 #define HFA384x_TX_TXOK_SET(v) HFA384x_TX_SET(v, HFA384x_TX_TXOK, 1)
518 /*--------------------------------------------------------------------
519 Communication Frames: Receive Frames
520 --------------------------------------------------------------------*/
521 /*-- Communication Frame: Receive Frame Structure --*/
522 typedef struct hfa384x_rx_frame
{
523 /*-- MAC rx descriptor (hfa384x byte order) --*/
533 /*-- 802.11 Header Information (802.11 byte order) --*/
534 __le16 frame_control
;
539 u16 sequence_control
;
541 __le16 data_len
; /* hfa384x (little endian) format */
543 /*-- 802.3 Header Information --*/
546 u16 data_length
; /* IEEE? (big endian) format */
547 } __packed hfa384x_rx_frame_t
;
548 /*--------------------------------------------------------------------
549 Communication Frames: Field Masks for Receive Frames
550 --------------------------------------------------------------------*/
552 /*-- Status Fields --*/
553 #define HFA384x_RXSTATUS_MACPORT ((u16)(BIT(10) | \
556 #define HFA384x_RXSTATUS_FCSERR ((u16)BIT(0))
557 /*--------------------------------------------------------------------
558 Communication Frames: Test/Get/Set Field Values for Receive Frames
559 --------------------------------------------------------------------*/
560 #define HFA384x_RXSTATUS_MACPORT_GET(value) ((u16)((((u16)(value)) \
561 & HFA384x_RXSTATUS_MACPORT) >> 8))
562 #define HFA384x_RXSTATUS_ISFCSERR(value) ((u16)(((u16)(value)) \
563 & HFA384x_RXSTATUS_FCSERR))
564 /*--------------------------------------------------------------------
565 FRAME STRUCTURES: Information Types and Information Frame Structures
566 ----------------------------------------------------------------------
568 --------------------------------------------------------------------*/
569 #define HFA384x_IT_HANDOVERADDR ((u16)0xF000UL)
570 #define HFA384x_IT_COMMTALLIES ((u16)0xF100UL)
571 #define HFA384x_IT_SCANRESULTS ((u16)0xF101UL)
572 #define HFA384x_IT_CHINFORESULTS ((u16)0xF102UL)
573 #define HFA384x_IT_HOSTSCANRESULTS ((u16)0xF103UL)
574 #define HFA384x_IT_LINKSTATUS ((u16)0xF200UL)
575 #define HFA384x_IT_ASSOCSTATUS ((u16)0xF201UL)
576 #define HFA384x_IT_AUTHREQ ((u16)0xF202UL)
577 #define HFA384x_IT_PSUSERCNT ((u16)0xF203UL)
578 #define HFA384x_IT_KEYIDCHANGED ((u16)0xF204UL)
579 #define HFA384x_IT_ASSOCREQ ((u16)0xF205UL)
580 #define HFA384x_IT_MICFAILURE ((u16)0xF206UL)
582 /*--------------------------------------------------------------------
583 Information Frames Structures
584 ----------------------------------------------------------------------
585 Information Frames: Notification Frame Structures
586 --------------------------------------------------------------------*/
588 /*-- Inquiry Frame, Diagnose: Communication Tallies --*/
589 typedef struct hfa384x_CommTallies16
{
591 u16 txmulticastframes
;
594 u16 txmulticastoctets
;
596 u16 txsingleretryframes
;
597 u16 txmultipleretryframes
;
598 u16 txretrylimitexceeded
;
601 u16 rxmulticastframes
;
604 u16 rxmulticastoctets
;
606 u16 rxdiscardsnobuffer
;
607 u16 txdiscardswrongsa
;
608 u16 rxdiscardswepundecr
;
610 u16 rxmsginbadmsgfrag
;
611 } __packed hfa384x_CommTallies16_t
;
613 typedef struct hfa384x_CommTallies32
{
615 u32 txmulticastframes
;
618 u32 txmulticastoctets
;
620 u32 txsingleretryframes
;
621 u32 txmultipleretryframes
;
622 u32 txretrylimitexceeded
;
625 u32 rxmulticastframes
;
628 u32 rxmulticastoctets
;
630 u32 rxdiscardsnobuffer
;
631 u32 txdiscardswrongsa
;
632 u32 rxdiscardswepundecr
;
634 u32 rxmsginbadmsgfrag
;
635 } __packed hfa384x_CommTallies32_t
;
637 /*-- Inquiry Frame, Diagnose: Scan Results & Subfields--*/
638 typedef struct hfa384x_ScanResultSub
{
642 u8 bssid
[WLAN_BSSID_LEN
];
645 hfa384x_bytestr32_t ssid
;
646 u8 supprates
[10]; /* 802.11 info element */
648 } __packed hfa384x_ScanResultSub_t
;
650 typedef struct hfa384x_ScanResult
{
653 hfa384x_ScanResultSub_t result
[HFA384x_SCANRESULT_MAX
];
654 } __packed hfa384x_ScanResult_t
;
656 /*-- Inquiry Frame, Diagnose: ChInfo Results & Subfields--*/
657 typedef struct hfa384x_ChInfoResultSub
{
662 } __packed hfa384x_ChInfoResultSub_t
;
664 #define HFA384x_CHINFORESULT_BSSACTIVE BIT(0)
665 #define HFA384x_CHINFORESULT_PCFACTIVE BIT(1)
667 typedef struct hfa384x_ChInfoResult
{
669 hfa384x_ChInfoResultSub_t result
[HFA384x_CHINFORESULT_MAX
];
670 } __packed hfa384x_ChInfoResult_t
;
672 /*-- Inquiry Frame, Diagnose: Host Scan Results & Subfields--*/
673 typedef struct hfa384x_HScanResultSub
{
677 u8 bssid
[WLAN_BSSID_LEN
];
680 hfa384x_bytestr32_t ssid
;
681 u8 supprates
[10]; /* 802.11 info element */
684 } __packed hfa384x_HScanResultSub_t
;
686 typedef struct hfa384x_HScanResult
{
689 hfa384x_HScanResultSub_t result
[HFA384x_HSCANRESULT_MAX
];
690 } __packed hfa384x_HScanResult_t
;
692 /*-- Unsolicited Frame, MAC Mgmt: LinkStatus --*/
694 #define HFA384x_LINK_NOTCONNECTED ((u16)0)
695 #define HFA384x_LINK_CONNECTED ((u16)1)
696 #define HFA384x_LINK_DISCONNECTED ((u16)2)
697 #define HFA384x_LINK_AP_CHANGE ((u16)3)
698 #define HFA384x_LINK_AP_OUTOFRANGE ((u16)4)
699 #define HFA384x_LINK_AP_INRANGE ((u16)5)
700 #define HFA384x_LINK_ASSOCFAIL ((u16)6)
702 typedef struct hfa384x_LinkStatus
{
704 } __packed hfa384x_LinkStatus_t
;
706 /*-- Unsolicited Frame, MAC Mgmt: AssociationStatus (--*/
708 #define HFA384x_ASSOCSTATUS_STAASSOC ((u16)1)
709 #define HFA384x_ASSOCSTATUS_REASSOC ((u16)2)
710 #define HFA384x_ASSOCSTATUS_AUTHFAIL ((u16)5)
712 typedef struct hfa384x_AssocStatus
{
714 u8 sta_addr
[ETH_ALEN
];
715 /* old_ap_addr is only valid if assocstatus == 2 */
716 u8 old_ap_addr
[ETH_ALEN
];
719 } __packed hfa384x_AssocStatus_t
;
721 /*-- Unsolicited Frame, MAC Mgmt: AuthRequest (AP Only) --*/
723 typedef struct hfa384x_AuthRequest
{
724 u8 sta_addr
[ETH_ALEN
];
726 } __packed hfa384x_AuthReq_t
;
728 /*-- Unsolicited Frame, MAC Mgmt: PSUserCount (AP Only) --*/
730 typedef struct hfa384x_PSUserCount
{
732 } __packed hfa384x_PSUserCount_t
;
734 typedef struct hfa384x_KeyIDChanged
{
735 u8 sta_addr
[ETH_ALEN
];
737 } __packed hfa384x_KeyIDChanged_t
;
739 /*-- Collection of all Inf frames ---------------*/
740 typedef union hfa384x_infodata
{
741 hfa384x_CommTallies16_t commtallies16
;
742 hfa384x_CommTallies32_t commtallies32
;
743 hfa384x_ScanResult_t scanresult
;
744 hfa384x_ChInfoResult_t chinforesult
;
745 hfa384x_HScanResult_t hscanresult
;
746 hfa384x_LinkStatus_t linkstatus
;
747 hfa384x_AssocStatus_t assocstatus
;
748 hfa384x_AuthReq_t authreq
;
749 hfa384x_PSUserCount_t psusercnt
;
750 hfa384x_KeyIDChanged_t keyidchanged
;
751 } __packed hfa384x_infodata_t
;
753 typedef struct hfa384x_InfFrame
{
756 hfa384x_infodata_t info
;
757 } __packed hfa384x_InfFrame_t
;
759 /*--------------------------------------------------------------------
760 USB Packet structures and constants.
761 --------------------------------------------------------------------*/
763 /* Should be sent to the bulkout endpoint */
764 #define HFA384x_USB_TXFRM 0
765 #define HFA384x_USB_CMDREQ 1
766 #define HFA384x_USB_WRIDREQ 2
767 #define HFA384x_USB_RRIDREQ 3
768 #define HFA384x_USB_WMEMREQ 4
769 #define HFA384x_USB_RMEMREQ 5
771 /* Received from the bulkin endpoint */
772 #define HFA384x_USB_ISTXFRM(a) (((a) & 0x9000) == 0x1000)
773 #define HFA384x_USB_ISRXFRM(a) (!((a) & 0x9000))
774 #define HFA384x_USB_INFOFRM 0x8000
775 #define HFA384x_USB_CMDRESP 0x8001
776 #define HFA384x_USB_WRIDRESP 0x8002
777 #define HFA384x_USB_RRIDRESP 0x8003
778 #define HFA384x_USB_WMEMRESP 0x8004
779 #define HFA384x_USB_RMEMRESP 0x8005
780 #define HFA384x_USB_BUFAVAIL 0x8006
781 #define HFA384x_USB_ERROR 0x8007
783 /*------------------------------------*/
784 /* Request (bulk OUT) packet contents */
786 typedef struct hfa384x_usb_txfrm
{
787 hfa384x_tx_frame_t desc
;
788 u8 data
[WLAN_DATA_MAXLEN
];
789 } __packed hfa384x_usb_txfrm_t
;
791 typedef struct hfa384x_usb_cmdreq
{
798 } __packed hfa384x_usb_cmdreq_t
;
800 typedef struct hfa384x_usb_wridreq
{
804 u8 data
[HFA384x_RIDDATA_MAXLEN
];
805 } __packed hfa384x_usb_wridreq_t
;
807 typedef struct hfa384x_usb_rridreq
{
812 } __packed hfa384x_usb_rridreq_t
;
814 typedef struct hfa384x_usb_wmemreq
{
819 u8 data
[HFA384x_USB_RWMEM_MAXLEN
];
820 } __packed hfa384x_usb_wmemreq_t
;
822 typedef struct hfa384x_usb_rmemreq
{
828 } __packed hfa384x_usb_rmemreq_t
;
830 /*------------------------------------*/
831 /* Response (bulk IN) packet contents */
833 typedef struct hfa384x_usb_rxfrm
{
834 hfa384x_rx_frame_t desc
;
835 u8 data
[WLAN_DATA_MAXLEN
];
836 } __packed hfa384x_usb_rxfrm_t
;
838 typedef struct hfa384x_usb_infofrm
{
840 hfa384x_InfFrame_t info
;
841 } __packed hfa384x_usb_infofrm_t
;
843 typedef struct hfa384x_usb_statusresp
{
849 } __packed hfa384x_usb_cmdresp_t
;
851 typedef hfa384x_usb_cmdresp_t hfa384x_usb_wridresp_t
;
853 typedef struct hfa384x_usb_rridresp
{
857 u8 data
[HFA384x_RIDDATA_MAXLEN
];
858 } __packed hfa384x_usb_rridresp_t
;
860 typedef hfa384x_usb_cmdresp_t hfa384x_usb_wmemresp_t
;
862 typedef struct hfa384x_usb_rmemresp
{
865 u8 data
[HFA384x_USB_RWMEM_MAXLEN
];
866 } __packed hfa384x_usb_rmemresp_t
;
868 typedef struct hfa384x_usb_bufavail
{
871 } __packed hfa384x_usb_bufavail_t
;
873 typedef struct hfa384x_usb_error
{
876 } __packed hfa384x_usb_error_t
;
878 /*----------------------------------------------------------*/
879 /* Unions for packaging all the known packet types together */
881 typedef union hfa384x_usbout
{
883 hfa384x_usb_txfrm_t txfrm
;
884 hfa384x_usb_cmdreq_t cmdreq
;
885 hfa384x_usb_wridreq_t wridreq
;
886 hfa384x_usb_rridreq_t rridreq
;
887 hfa384x_usb_wmemreq_t wmemreq
;
888 hfa384x_usb_rmemreq_t rmemreq
;
889 } __packed hfa384x_usbout_t
;
891 typedef union hfa384x_usbin
{
893 hfa384x_usb_rxfrm_t rxfrm
;
894 hfa384x_usb_txfrm_t txfrm
;
895 hfa384x_usb_infofrm_t infofrm
;
896 hfa384x_usb_cmdresp_t cmdresp
;
897 hfa384x_usb_wridresp_t wridresp
;
898 hfa384x_usb_rridresp_t rridresp
;
899 hfa384x_usb_wmemresp_t wmemresp
;
900 hfa384x_usb_rmemresp_t rmemresp
;
901 hfa384x_usb_bufavail_t bufavail
;
902 hfa384x_usb_error_t usberror
;
904 } __packed hfa384x_usbin_t
;
906 /*--------------------------------------------------------------------
907 PD record structures.
908 --------------------------------------------------------------------*/
910 typedef struct hfa384x_pdr_pcb_partnum
{
912 } __packed hfa384x_pdr_pcb_partnum_t
;
914 typedef struct hfa384x_pdr_pcb_tracenum
{
916 } __packed hfa384x_pdr_pcb_tracenum_t
;
918 typedef struct hfa384x_pdr_nic_serial
{
920 } __packed hfa384x_pdr_nic_serial_t
;
922 typedef struct hfa384x_pdr_mkk_measurements
{
924 double occupied_band
;
925 double power_density
;
938 } __packed hfa384x_pdr_mkk_measurements_t
;
940 typedef struct hfa384x_pdr_nic_ramsize
{
941 u8 size
[12]; /* units of KB */
942 } __packed hfa384x_pdr_nic_ramsize_t
;
944 typedef struct hfa384x_pdr_mfisuprange
{
949 } __packed hfa384x_pdr_mfisuprange_t
;
951 typedef struct hfa384x_pdr_cfisuprange
{
956 } __packed hfa384x_pdr_cfisuprange_t
;
958 typedef struct hfa384x_pdr_nicid
{
963 } __packed hfa384x_pdr_nicid_t
;
965 typedef struct hfa384x_pdr_refdac_measurements
{
967 } __packed hfa384x_pdr_refdac_measurements_t
;
969 typedef struct hfa384x_pdr_vgdac_measurements
{
971 } __packed hfa384x_pdr_vgdac_measurements_t
;
973 typedef struct hfa384x_pdr_level_comp_measurements
{
975 } __packed hfa384x_pdr_level_compc_measurements_t
;
977 typedef struct hfa384x_pdr_mac_address
{
979 } __packed hfa384x_pdr_mac_address_t
;
981 typedef struct hfa384x_pdr_mkk_callname
{
983 } __packed hfa384x_pdr_mkk_callname_t
;
985 typedef struct hfa384x_pdr_regdomain
{
988 } __packed hfa384x_pdr_regdomain_t
;
990 typedef struct hfa384x_pdr_allowed_channel
{
992 } __packed hfa384x_pdr_allowed_channel_t
;
994 typedef struct hfa384x_pdr_default_channel
{
996 } __packed hfa384x_pdr_default_channel_t
;
998 typedef struct hfa384x_pdr_privacy_option
{
1000 } __packed hfa384x_pdr_privacy_option_t
;
1002 typedef struct hfa384x_pdr_temptype
{
1004 } __packed hfa384x_pdr_temptype_t
;
1006 typedef struct hfa384x_pdr_refdac_setup
{
1008 } __packed hfa384x_pdr_refdac_setup_t
;
1010 typedef struct hfa384x_pdr_vgdac_setup
{
1012 } __packed hfa384x_pdr_vgdac_setup_t
;
1014 typedef struct hfa384x_pdr_level_comp_setup
{
1016 } __packed hfa384x_pdr_level_comp_setup_t
;
1018 typedef struct hfa384x_pdr_trimdac_setup
{
1021 } __packed hfa384x_pdr_trimdac_setup_t
;
1023 typedef struct hfa384x_pdr_ifr_setting
{
1025 } __packed hfa384x_pdr_ifr_setting_t
;
1027 typedef struct hfa384x_pdr_rfr_setting
{
1029 } __packed hfa384x_pdr_rfr_setting_t
;
1031 typedef struct hfa384x_pdr_hfa3861_baseline
{
1033 } __packed hfa384x_pdr_hfa3861_baseline_t
;
1035 typedef struct hfa384x_pdr_hfa3861_shadow
{
1037 } __packed hfa384x_pdr_hfa3861_shadow_t
;
1039 typedef struct hfa384x_pdr_hfa3861_ifrf
{
1041 } __packed hfa384x_pdr_hfa3861_ifrf_t
;
1043 typedef struct hfa384x_pdr_hfa3861_chcalsp
{
1045 } __packed hfa384x_pdr_hfa3861_chcalsp_t
;
1047 typedef struct hfa384x_pdr_hfa3861_chcali
{
1049 } __packed hfa384x_pdr_hfa3861_chcali_t
;
1051 typedef struct hfa384x_pdr_hfa3861_nic_config
{
1053 } __packed hfa384x_pdr_nic_config_t
;
1055 typedef struct hfa384x_pdr_hfo_delay
{
1057 } __packed hfa384x_hfo_delay_t
;
1059 typedef struct hfa384x_pdr_hfa3861_manf_testsp
{
1061 } __packed hfa384x_pdr_hfa3861_manf_testsp_t
;
1063 typedef struct hfa384x_pdr_hfa3861_manf_testi
{
1065 } __packed hfa384x_pdr_hfa3861_manf_testi_t
;
1067 typedef struct hfa384x_end_of_pda
{
1069 } __packed hfa384x_pdr_end_of_pda_t
;
1071 typedef struct hfa384x_pdrec
{
1072 u16 len
; /* in words */
1075 hfa384x_pdr_pcb_partnum_t pcb_partnum
;
1076 hfa384x_pdr_pcb_tracenum_t pcb_tracenum
;
1077 hfa384x_pdr_nic_serial_t nic_serial
;
1078 hfa384x_pdr_mkk_measurements_t mkk_measurements
;
1079 hfa384x_pdr_nic_ramsize_t nic_ramsize
;
1080 hfa384x_pdr_mfisuprange_t mfisuprange
;
1081 hfa384x_pdr_cfisuprange_t cfisuprange
;
1082 hfa384x_pdr_nicid_t nicid
;
1083 hfa384x_pdr_refdac_measurements_t refdac_measurements
;
1084 hfa384x_pdr_vgdac_measurements_t vgdac_measurements
;
1085 hfa384x_pdr_level_compc_measurements_t level_compc_measurements
;
1086 hfa384x_pdr_mac_address_t mac_address
;
1087 hfa384x_pdr_mkk_callname_t mkk_callname
;
1088 hfa384x_pdr_regdomain_t regdomain
;
1089 hfa384x_pdr_allowed_channel_t allowed_channel
;
1090 hfa384x_pdr_default_channel_t default_channel
;
1091 hfa384x_pdr_privacy_option_t privacy_option
;
1092 hfa384x_pdr_temptype_t temptype
;
1093 hfa384x_pdr_refdac_setup_t refdac_setup
;
1094 hfa384x_pdr_vgdac_setup_t vgdac_setup
;
1095 hfa384x_pdr_level_comp_setup_t level_comp_setup
;
1096 hfa384x_pdr_trimdac_setup_t trimdac_setup
;
1097 hfa384x_pdr_ifr_setting_t ifr_setting
;
1098 hfa384x_pdr_rfr_setting_t rfr_setting
;
1099 hfa384x_pdr_hfa3861_baseline_t hfa3861_baseline
;
1100 hfa384x_pdr_hfa3861_shadow_t hfa3861_shadow
;
1101 hfa384x_pdr_hfa3861_ifrf_t hfa3861_ifrf
;
1102 hfa384x_pdr_hfa3861_chcalsp_t hfa3861_chcalsp
;
1103 hfa384x_pdr_hfa3861_chcali_t hfa3861_chcali
;
1104 hfa384x_pdr_nic_config_t nic_config
;
1105 hfa384x_hfo_delay_t hfo_delay
;
1106 hfa384x_pdr_hfa3861_manf_testsp_t hfa3861_manf_testsp
;
1107 hfa384x_pdr_hfa3861_manf_testi_t hfa3861_manf_testi
;
1108 hfa384x_pdr_end_of_pda_t end_of_pda
;
1111 } __packed hfa384x_pdrec_t
;
1114 /*--------------------------------------------------------------------
1115 --- MAC state structure, argument to all functions --
1116 --- Also, a collection of support types --
1117 --------------------------------------------------------------------*/
1118 typedef struct hfa384x_statusresult
{
1123 } hfa384x_cmdresult_t
;
1125 /* USB Control Exchange (CTLX):
1126 * A queue of the structure below is maintained for all of the
1127 * Request/Response type USB packets supported by Prism2.
1129 /* The following hfa384x_* structures are arguments to
1130 * the usercb() for the different CTLX types.
1132 typedef struct hfa384x_rridresult
{
1134 const void *riddata
;
1135 unsigned int riddata_len
;
1136 } hfa384x_rridresult_t
;
1139 CTLX_START
= 0, /* Start state, not queued */
1141 CTLX_COMPLETE
, /* CTLX successfully completed */
1142 CTLX_REQ_FAILED
, /* OUT URB completed w/ error */
1144 CTLX_PENDING
, /* Queued, data valid */
1145 CTLX_REQ_SUBMITTED
, /* OUT URB submitted */
1146 CTLX_REQ_COMPLETE
, /* OUT URB complete */
1147 CTLX_RESP_COMPLETE
/* IN URB received */
1149 typedef enum ctlx_state CTLX_STATE
;
1151 struct hfa384x_usbctlx
;
1154 typedef void (*ctlx_cmdcb_t
) (struct hfa384x
*, const struct hfa384x_usbctlx
*);
1156 typedef void (*ctlx_usercb_t
) (struct hfa384x
*hw
,
1157 void *ctlxresult
, void *usercb_data
);
1159 typedef struct hfa384x_usbctlx
{
1160 struct list_head list
;
1163 hfa384x_usbout_t outbuf
; /* pkt buf for OUT */
1164 hfa384x_usbin_t inbuf
; /* pkt buf for IN(a copy) */
1166 CTLX_STATE state
; /* Tracks running state */
1168 struct completion done
;
1169 volatile int reapable
; /* Food for the reaper task */
1171 ctlx_cmdcb_t cmdcb
; /* Async command callback */
1172 ctlx_usercb_t usercb
; /* Async user callback, */
1173 void *usercb_data
; /* at CTLX completion */
1175 int variant
; /* Identifies cmd variant */
1176 } hfa384x_usbctlx_t
;
1178 typedef struct hfa384x_usbctlxq
{
1180 struct list_head pending
;
1181 struct list_head active
;
1182 struct list_head completing
;
1183 struct list_head reapable
;
1184 } hfa384x_usbctlxq_t
;
1186 typedef struct hfa484x_metacmd
{
1193 hfa384x_cmdresult_t result
;
1194 } hfa384x_metacmd_t
;
1196 #define MAX_GRP_ADDR 32
1197 #define WLAN_COMMENT_MAX 80 /* Max. length of user comment string. */
1199 #define WLAN_AUTH_MAX 60 /* Max. # of authenticated stations. */
1200 #define WLAN_ACCESS_MAX 60 /* Max. # of stations in an access list. */
1201 #define WLAN_ACCESS_NONE 0 /* No stations may be authenticated. */
1202 #define WLAN_ACCESS_ALL 1 /* All stations may be authenticated. */
1203 #define WLAN_ACCESS_ALLOW 2 /* Authenticate only "allowed" stations. */
1204 #define WLAN_ACCESS_DENY 3 /* Do not authenticate "denied" stations. */
1206 /* XXX These are going away ASAP */
1207 typedef struct prism2sta_authlist
{
1209 u8 addr
[WLAN_AUTH_MAX
][ETH_ALEN
];
1210 u8 assoc
[WLAN_AUTH_MAX
];
1211 } prism2sta_authlist_t
;
1213 typedef struct prism2sta_accesslist
{
1214 unsigned int modify
;
1216 u8 addr
[WLAN_ACCESS_MAX
][ETH_ALEN
];
1218 u8 addr1
[WLAN_ACCESS_MAX
][ETH_ALEN
];
1219 } prism2sta_accesslist_t
;
1221 typedef struct hfa384x
{
1222 /* USB support data */
1223 struct usb_device
*usb
;
1225 struct sk_buff
*rx_urb_skb
;
1227 struct urb ctlx_urb
;
1228 hfa384x_usbout_t txbuff
;
1229 hfa384x_usbctlxq_t ctlxq
;
1230 struct timer_list reqtimer
;
1231 struct timer_list resptimer
;
1233 struct timer_list throttle
;
1235 struct tasklet_struct reaper_bh
;
1236 struct tasklet_struct completion_bh
;
1238 struct work_struct usb_work
;
1240 unsigned long usb_flags
;
1241 #define THROTTLE_RX 0
1242 #define THROTTLE_TX 1
1243 #define WORK_RX_HALT 2
1244 #define WORK_TX_HALT 3
1245 #define WORK_RX_RESUME 4
1246 #define WORK_TX_RESUME 5
1248 unsigned short req_timer_done
:1;
1249 unsigned short resp_timer_done
:1;
1259 wait_queue_head_t cmdq
; /* wait queue itself */
1261 /* Controller state */
1264 u8 port_enabled
[HFA384x_NUMPORTS_MAX
];
1266 /* Download support */
1267 unsigned int dlstate
;
1268 hfa384x_downloadbuffer_t bufinfo
;
1271 int scanflag
; /* to signal scan comlete */
1272 int join_ap
; /* are we joined to a specific ap */
1273 int join_retries
; /* number of join retries till we fail */
1274 hfa384x_JoinRequest_data_t joinreq
; /* join request saved data */
1276 wlandevice_t
*wlandev
;
1277 /* Timer to allow for the deferred processing of linkstatus messages */
1278 struct work_struct link_bh
;
1280 struct work_struct commsqual_bh
;
1281 hfa384x_commsquality_t qual
;
1282 struct timer_list commsqual_timer
;
1285 u16 link_status_new
;
1286 struct sk_buff_head authq
;
1290 /* And here we have stuff that used to be in priv */
1292 /* State variables */
1293 unsigned int presniff_port_type
;
1294 u16 presniff_wepflags
;
1295 u32 dot11_desired_bss_type
;
1299 /* Group Addresses - right now, there are up to a total
1300 of MAX_GRP_ADDR group addresses */
1301 u8 dot11_grp_addr
[MAX_GRP_ADDR
][ETH_ALEN
];
1302 unsigned int dot11_grpcnt
;
1304 /* Component Identities */
1305 hfa384x_compident_t ident_nic
;
1306 hfa384x_compident_t ident_pri_fw
;
1307 hfa384x_compident_t ident_sta_fw
;
1308 hfa384x_compident_t ident_ap_fw
;
1311 /* Supplier compatibility ranges */
1312 hfa384x_caplevel_t cap_sup_mfi
;
1313 hfa384x_caplevel_t cap_sup_cfi
;
1314 hfa384x_caplevel_t cap_sup_pri
;
1315 hfa384x_caplevel_t cap_sup_sta
;
1316 hfa384x_caplevel_t cap_sup_ap
;
1318 /* Actor compatibility ranges */
1319 hfa384x_caplevel_t cap_act_pri_cfi
; /*
1320 * pri f/w to controller
1324 hfa384x_caplevel_t cap_act_sta_cfi
; /*
1325 * sta f/w to controller
1329 hfa384x_caplevel_t cap_act_sta_mfi
; /* sta f/w to modem interface */
1331 hfa384x_caplevel_t cap_act_ap_cfi
; /*
1332 * ap f/w to controller
1336 hfa384x_caplevel_t cap_act_ap_mfi
; /* ap f/w to modem interface */
1338 u32 psusercount
; /* Power save user count. */
1339 hfa384x_CommTallies32_t tallies
; /* Communication tallies. */
1340 u8 comment
[WLAN_COMMENT_MAX
+ 1]; /* User comment */
1342 /* Channel Info request results (AP only) */
1346 hfa384x_ChInfoResult_t results
;
1349 hfa384x_InfFrame_t
*scanresults
;
1351 prism2sta_authlist_t authlist
; /* Authenticated station list. */
1352 unsigned int accessmode
; /* Access mode. */
1353 prism2sta_accesslist_t allow
; /* Allowed station list. */
1354 prism2sta_accesslist_t deny
; /* Denied station list. */
1358 void hfa384x_create(hfa384x_t
*hw
, struct usb_device
*usb
);
1359 void hfa384x_destroy(hfa384x_t
*hw
);
1362 hfa384x_corereset(hfa384x_t
*hw
, int holdtime
, int settletime
, int genesis
);
1363 int hfa384x_drvr_commtallies(hfa384x_t
*hw
);
1364 int hfa384x_drvr_disable(hfa384x_t
*hw
, u16 macport
);
1365 int hfa384x_drvr_enable(hfa384x_t
*hw
, u16 macport
);
1366 int hfa384x_drvr_flashdl_enable(hfa384x_t
*hw
);
1367 int hfa384x_drvr_flashdl_disable(hfa384x_t
*hw
);
1368 int hfa384x_drvr_flashdl_write(hfa384x_t
*hw
, u32 daddr
, void *buf
, u32 len
);
1369 int hfa384x_drvr_getconfig(hfa384x_t
*hw
, u16 rid
, void *buf
, u16 len
);
1370 int hfa384x_drvr_ramdl_enable(hfa384x_t
*hw
, u32 exeaddr
);
1371 int hfa384x_drvr_ramdl_disable(hfa384x_t
*hw
);
1372 int hfa384x_drvr_ramdl_write(hfa384x_t
*hw
, u32 daddr
, void *buf
, u32 len
);
1373 int hfa384x_drvr_readpda(hfa384x_t
*hw
, void *buf
, unsigned int len
);
1374 int hfa384x_drvr_setconfig(hfa384x_t
*hw
, u16 rid
, void *buf
, u16 len
);
1376 static inline int hfa384x_drvr_getconfig16(hfa384x_t
*hw
, u16 rid
, void *val
)
1379 result
= hfa384x_drvr_getconfig(hw
, rid
, val
, sizeof(u16
));
1381 *((u16
*) val
) = le16_to_cpu(*((u16
*) val
));
1385 static inline int hfa384x_drvr_setconfig16(hfa384x_t
*hw
, u16 rid
, u16 val
)
1387 u16 value
= cpu_to_le16(val
);
1388 return hfa384x_drvr_setconfig(hw
, rid
, &value
, sizeof(value
));
1392 hfa384x_drvr_getconfig_async(hfa384x_t
*hw
,
1393 u16 rid
, ctlx_usercb_t usercb
, void *usercb_data
);
1396 hfa384x_drvr_setconfig_async(hfa384x_t
*hw
,
1399 u16 len
, ctlx_usercb_t usercb
, void *usercb_data
);
1402 hfa384x_drvr_setconfig16_async(hfa384x_t
*hw
, u16 rid
, u16 val
)
1404 u16 value
= cpu_to_le16(val
);
1405 return hfa384x_drvr_setconfig_async(hw
, rid
, &value
, sizeof(value
),
1409 int hfa384x_drvr_start(hfa384x_t
*hw
);
1410 int hfa384x_drvr_stop(hfa384x_t
*hw
);
1412 hfa384x_drvr_txframe(hfa384x_t
*hw
, struct sk_buff
*skb
,
1413 union p80211_hdr
*p80211_hdr
, struct p80211_metawep
*p80211_wep
);
1414 void hfa384x_tx_timeout(wlandevice_t
*wlandev
);
1416 int hfa384x_cmd_initialize(hfa384x_t
*hw
);
1417 int hfa384x_cmd_enable(hfa384x_t
*hw
, u16 macport
);
1418 int hfa384x_cmd_disable(hfa384x_t
*hw
, u16 macport
);
1419 int hfa384x_cmd_allocate(hfa384x_t
*hw
, u16 len
);
1420 int hfa384x_cmd_monitor(hfa384x_t
*hw
, u16 enable
);
1422 hfa384x_cmd_download(hfa384x_t
*hw
,
1423 u16 mode
, u16 lowaddr
, u16 highaddr
, u16 codelen
);
1425 #endif /*__KERNEL__ */
1427 #endif /*_HFA384x_H */