staging: wilc1000: remove pointer variables of txq_add_to_head_cs
[firefly-linux-kernel-4.4.55.git] / drivers / staging / wilc1000 / wilc_wlan_if.h
1 /* ///////////////////////////////////////////////////////////////////////// */
2 /*  */
3 /* Copyright (c) Atmel Corporation.  All rights reserved. */
4 /*  */
5 /* Module Name:  wilc_wlan_if.h */
6 /*  */
7 /*  */
8 /* ///////////////////////////////////////////////////////////////////////// */
9
10 #ifndef WILC_WLAN_IF_H
11 #define WILC_WLAN_IF_H
12
13 /* #define MEMORY_STATIC */
14 /* #define USE_OLD_SPI_SW */
15
16 #include "wilc_oswrapper.h"
17 #include "linux_wlan_common.h"
18
19 /********************************************
20  *
21  *      Debug Flags
22  *
23  ********************************************/
24
25 #define N_INIT                  0x00000001
26 #define N_ERR                   0x00000002
27 #define N_TXQ                   0x00000004
28 #define N_INTR                  0x00000008
29 #define N_RXQ                   0x00000010
30
31 /********************************************
32  *
33  *      Host Interface Defines
34  *
35  ********************************************/
36
37 #define HIF_SDIO                (0)
38 #define HIF_SPI                 BIT(0)
39 #define HIF_SDIO_GPIO_IRQ       BIT(2)
40
41 /********************************************
42  *
43  *      Tx/Rx Buffer Size Defines
44  *
45  ********************************************/
46
47 #define CE_TX_BUFFER_SIZE       (64 * 1024)
48 #define CE_RX_BUFFER_SIZE       (384 * 1024)
49
50 /********************************************
51  *
52  *      Wlan Interface Defines
53  *
54  ********************************************/
55
56 typedef struct {
57         u32 read_write:         1;
58         u32 function:           3;
59         u32 raw:                1;
60         u32 address:            17;
61         u32 data:               8;
62 } sdio_cmd52_t;
63
64 typedef struct {
65         /* struct { */
66         u32 read_write:         1;
67         u32 function:           3;
68         u32 block_mode:         1;
69         u32 increment:          1;
70         u32 address:            17;
71         u32 count:              9;
72         /* } bit; */
73         u8 *buffer;
74         u32 block_size;
75 } sdio_cmd53_t;
76
77 typedef struct {
78         int (*os_wait)(void *, u32);
79 } wilc_wlan_os_func_t;
80
81 typedef struct {
82         int io_type;
83         int (*io_init)(void *);
84         void (*io_deinit)(void *);
85         union {
86                 struct {
87                         int (*sdio_cmd52)(sdio_cmd52_t *);
88                         int (*sdio_cmd53)(sdio_cmd53_t *);
89                         int (*sdio_set_max_speed)(void);
90                         int (*sdio_set_default_speed)(void);
91                 } sdio;
92                 struct {
93                         int (*spi_max_speed)(void);
94                         int (*spi_tx)(u8 *, u32);
95                         int (*spi_rx)(u8 *, u32);
96                         int (*spi_trx)(u8 *, u8 *, u32);
97                 } spi;
98         } u;
99 } wilc_wlan_io_func_t;
100
101 #define WILC_MAC_INDICATE_STATUS        0x1
102 #define WILC_MAC_STATUS_INIT            -1
103 #define WILC_MAC_STATUS_READY           0
104 #define WILC_MAC_STATUS_CONNECT         1
105
106 #define WILC_MAC_INDICATE_SCAN          0x2
107
108 typedef struct {
109         void *os_private;
110
111         struct mutex *hif_critical_section;
112
113         u32 tx_buffer_size;
114         void *txq_critical_section;
115 #if defined(MEMORY_STATIC)
116         u32 rx_buffer_size;
117 #endif
118 } wilc_wlan_os_context_t;
119
120 typedef struct {
121         wilc_wlan_os_context_t os_context;
122         wilc_wlan_os_func_t os_func;
123         wilc_wlan_io_func_t io_func;
124 } wilc_wlan_inp_t;
125
126 struct tx_complete_data {
127         int size;
128         void *buff;
129         u8 *pBssid;
130         struct sk_buff *skb;
131 };
132
133 typedef void (*wilc_tx_complete_func_t)(void *, int);
134
135 #define WILC_TX_ERR_NO_BUF      (-2)
136
137 typedef struct {
138         int (*wlan_firmware_download)(const u8 *, u32);
139         int (*wlan_start)(void);
140         int (*wlan_stop)(void);
141         int (*wlan_add_to_tx_que)(void *, u8 *, u32, wilc_tx_complete_func_t);
142         int (*wlan_handle_tx_que)(u32 *);
143         void (*wlan_handle_rx_isr)(void);
144         void (*wlan_cleanup)(void);
145         int (*wlan_cfg_set)(int, u32, u8 *, u32, int, u32);
146         int (*wlan_cfg_get)(int, u32, int, u32);
147         int (*wlan_cfg_get_value)(u32, u8 *, u32);
148         int (*wlan_add_mgmt_to_tx_que)(void *, u8 *, u32,
149                                        wilc_tx_complete_func_t);
150 } wilc_wlan_oup_t;
151
152 /********************************************
153  *
154  *      Wlan Configuration ID
155  *
156  ********************************************/
157
158 #define MAX_SSID_LEN            33
159 #define MAX_RATES_SUPPORTED     12
160
161 #define INFINITE_SLEEP_TIME     ((u32)0xFFFFFFFF)
162
163 #ifdef WILC_PARSE_SCAN_IN_HOST
164 typedef enum {
165         SUPP_RATES_IE           = 1,
166         EXT_SUPP_RATES_IE       = 50,
167         HT_CAPABILITY_IE        = 45,
168         RSN_IE                  = 48,
169         WPA_IE                  = 221,
170         WMM_IE                  = 221,
171         P2P_IE                  = 221,
172 } BEACON_IE;
173 #endif
174 typedef enum {
175         INFRASTRUCTURE          = 0,
176         INDEPENDENT,
177         AP,
178 } BSSTYPE_T;
179
180 typedef enum {
181         RATE_AUTO               = 0,
182         RATE_1MB                = 1,
183         RATE_2MB                = 2,
184         RATE_5MB                = 5,
185         RATE_6MB                = 6,
186         RATE_9MB                = 9,
187         RATE_11MB               = 11,
188         RATE_12MB               = 12,
189         RATE_18MB               = 18,
190         RATE_24MB               = 24,
191         RATE_26MB               = 36,
192         RATE_48MB               = 48,
193         RATE_54MB               = 54
194 } TX_RATE_T;
195
196 typedef enum {
197         B_ONLY_MODE             = 0,    /* 1, 2 M, otherwise 5, 11 M */
198         G_ONLY_MODE,                    /* 6,12,24 otherwise 9,18,36,48,54 */
199         G_MIXED_11B_1_MODE,             /* 1,2,5.5,11 otherwise all on */
200         G_MIXED_11B_2_MODE,             /* 1,2,5,11,6,12,24 otherwise all on */
201 } G_OPERATING_MODE_T;
202
203 typedef enum {
204         G_SHORT_PREAMBLE        = 0,    /* Short Preamble */
205         G_LONG_PREAMBLE         = 1,    /* Long Preamble */
206         G_AUTO_PREAMBLE         = 2,    /* Auto Preamble Selection */
207 } G_PREAMBLE_T;
208
209 #define MAC_CONNECTED           1
210 #define MAC_DISCONNECTED        0
211
212 #define SCAN_DONE               TRUE
213 typedef enum {
214         PASSIVE_SCAN            = 0,
215         ACTIVE_SCAN             = 1,
216 } SCANTYPE_T;
217
218 typedef enum {
219         NO_POWERSAVE            = 0,
220         MIN_FAST_PS             = 1,
221         MAX_FAST_PS             = 2,
222         MIN_PSPOLL_PS           = 3,
223         MAX_PSPOLL_PS           = 4
224 } USER_PS_MODE_T;
225
226 typedef enum {
227         CHIP_WAKEDUP            = 0,
228         CHIP_SLEEPING_AUTO      = 1,
229         CHIP_SLEEPING_MANUAL    = 2
230 } CHIP_PS_STATE_T;
231
232 typedef enum {
233         ACQUIRE_ONLY            = 0,
234         ACQUIRE_AND_WAKEUP      = 1,
235 } BUS_ACQUIRE_T;
236
237 typedef enum {
238         RELEASE_ONLY            = 0,
239         RELEASE_ALLOW_SLEEP     = 1,
240 } BUS_RELEASE_T;
241
242 typedef enum {
243         NO_SECURITY             = 0,
244         WEP_40                  = 0x3,
245         WEP_104                 = 0x7,
246         WPA_AES                 = 0x29,
247         WPA_TKIP                = 0x49,
248         WPA_AES_TKIP            = 0x69, /* Aes or Tkip */
249         WPA2_AES                = 0x31,
250         WPA2_TKIP               = 0x51,
251         WPA2_AES_TKIP           = 0x71, /* Aes or Tkip */
252 } SECURITY_T;
253
254 typedef enum {
255         OPEN_SYSTEM             = 1,
256         SHARED_KEY              = 2,
257         ANY                     = 3,
258         IEEE8021                = 5
259 } AUTHTYPE_T;
260
261 typedef enum {
262         SITE_SURVEY_1CH         = 0,
263         SITE_SURVEY_ALL_CH      = 1,
264         SITE_SURVEY_OFF         = 2
265 } SITE_SURVEY_T;
266
267 typedef enum {
268         NORMAL_ACK              = 0,
269         NO_ACK,
270 } ACK_POLICY_T;
271
272 typedef enum {
273         DONT_RESET              = 0,
274         DO_RESET                = 1,
275         NO_REQUEST              = 2,
276 } RESET_REQ_T;
277
278 typedef enum {
279         REKEY_DISABLE           = 1,
280         REKEY_TIME_BASE,
281         REKEY_PKT_BASE,
282         REKEY_TIME_PKT_BASE
283 } RSNA_REKEY_POLICY_T;
284
285 typedef enum {
286         FILTER_NO               = 0x00,
287         FILTER_AP_ONLY          = 0x01,
288         FILTER_STA_ONLY         = 0x02
289 } SCAN_CLASS_FITLER_T;
290
291 typedef enum {
292         PRI_HIGH_RSSI           = 0x00,
293         PRI_LOW_RSSI            = 0x04,
294         PRI_DETECT              = 0x08
295 } SCAN_PRI_T;
296
297 typedef enum {
298         CH_FILTER_OFF           = 0x00,
299         CH_FILTER_ON            = 0x10
300 } CH_FILTER_T;
301
302 typedef enum {
303         AUTO_PROT               = 0,    /* Auto */
304         NO_PROT,                        /* Do not use any protection */
305         ERP_PROT,                       /* Protect all ERP frame exchanges */
306         HT_PROT,                        /* Protect all HT frame exchanges  */
307         GF_PROT,                        /* Protect all GF frame exchanges  */
308 } N_PROTECTION_MODE_T;
309
310 typedef enum {
311         G_SELF_CTS_PROT,
312         G_RTS_CTS_PROT,
313 } G_PROTECTION_MODE_T;
314
315 typedef enum {
316         HT_MIXED_MODE           = 1,
317         HT_ONLY_20MHZ_MODE,
318         HT_ONLY_20_40MHZ_MODE,
319 } N_OPERATING_MODE_T;
320
321 typedef enum {
322         NO_DETECT               = 0,
323         DETECT_ONLY             = 1,
324         DETECT_PROTECT          = 2,
325         DETECT_PROTECT_REPORT   = 3,
326 } N_OBSS_DETECTION_T;
327
328 typedef enum {
329         RTS_CTS_NONHT_PROT      = 0,    /* RTS-CTS at non-HT rate */
330         FIRST_FRAME_NONHT_PROT,         /* First frame at non-HT rate */
331         LSIG_TXOP_PROT,                 /* LSIG TXOP Protection */
332         FIRST_FRAME_MIXED_PROT,         /* First frame at Mixed format */
333 } N_PROTECTION_TYPE_T;
334
335 typedef enum {
336         STATIC_MODE             = 1,
337         DYNAMIC_MODE            = 2,
338         MIMO_MODE               = 3,    /* power save disable */
339 } N_SMPS_MODE_T;
340
341 typedef enum {
342         DISABLE_SELF_CTS,
343         ENABLE_SELF_CTS,
344         DISABLE_TX_ABORT,
345         ENABLE_TX_ABORT,
346         HW_TRIGGER_ABORT,
347         SW_TRIGGER_ABORT,
348 } TX_ABORT_OPTION_T;
349
350 typedef enum {
351         WID_CHAR                = 0,
352         WID_SHORT               = 1,
353         WID_INT                 = 2,
354         WID_STR                 = 3,
355         WID_BIN_DATA            = 4,
356         WID_BIN                 = 5,
357         WID_IP                  = 6,
358         WID_ADR                 = 7,
359         WID_UNDEF               = 8,
360         WID_TYPE_FORCE_32BIT    = 0xFFFFFFFF
361
362 } WID_TYPE_T, tenuWIDtype;
363
364 typedef enum {
365         WID_NIL                         = 0xffff,
366
367         /*
368          *  BSS Type
369          *  -----------------------------------------------------------
370          *  Configuration : Infrastructure   Independent   Access Point
371          *  Values to set :         0               1            2
372          *  -----------------------------------------------------------
373          */
374         WID_BSS_TYPE                    = 0x0000,
375
376         /*
377          *  Transmit Rate
378          *  -----------------------------------------------------------
379          *  Configuration : 1  2  5.5  11  6  9  12  18  24  36  48  54
380          *  Values to set : 1  2    5  11  6  9  12  18  24  36  48  54
381          *  -----------------------------------------------------------
382          */
383         WID_CURRENT_TX_RATE             = 0x0001,
384
385         /*
386          *  Channel
387          *  -----------------------------------------------------------
388          *  Configuration(g) : 1  2  3  4  5  6  7  8  9 10 11 12 13 14
389          *  Values to set    : 1  2  3  4  5  6  7  8  9 10 11 12 13 14
390          *  -----------------------------------------------------------
391          */
392         WID_CURRENT_CHANNEL             = 0x0002,
393
394         /*
395          *  Preamble
396          *  -----------------------------------------------------------
397          *  Configuration :    short    long      Auto
398          *  Values to set :       0       1         2
399          *  -----------------------------------------------------------
400          */
401         WID_PREAMBLE                    = 0x0003,
402
403         /*
404          * 11g operating mode (ignored if 11g not present)
405          *  -----------------------------------------------------------
406          *  Configuration :   HighPerf  Compat(RSet #1) Compat(RSet #2)
407          *  Values to set :          1               2               3
408          *  -----------------------------------------------------------
409          */
410         WID_11G_OPERATING_MODE          = 0x0004,
411
412         /*
413          *  Mac status (response only)
414          *  -----------------------------------------------------------
415          *  Configuration :   disconnect  connect
416          *  Values to get :          0       1
417          *  -----------------------------------------------------------
418          */
419         WID_STATUS                      = 0x0005,
420
421         /*
422          *  Scan type
423          *  -----------------------------------------------------------
424          *  Configuration :   Passive Scanning   Active Scanning
425          *  Values to set :                  0                 1
426          *  -----------------------------------------------------------
427          */
428         WID_SCAN_TYPE                   = 0x0007,
429
430         /*
431          *  Key Id (WEP default key Id)
432          *  -----------------------------------------------------------
433          *  Configuration :   Any value between 0 to 3
434          *  Values to set :   Same value. Default is 0
435          *  -----------------------------------------------------------
436          */
437         WID_KEY_ID                      = 0x0009,
438
439         /*
440          *  QoS Enable
441          *  -----------------------------------------------------------
442          *  Configuration :   QoS Disable   WMM Enable
443          *  Values to set :   0             1
444          *  -----------------------------------------------------------
445          */
446         WID_QOS_ENABLE                  = 0x000A,
447
448         /*
449          *  Power Management
450          *  -----------------------------------------------------------
451          *  Configuration : NO_POWERSAVE MIN_POWERSAVE MAX_POWERSAVE
452          *  Values to set : 0            1             2
453          *  -----------------------------------------------------------
454          */
455         WID_POWER_MANAGEMENT            = 0x000B,
456
457         /*
458          *  WEP/802 11I Configuration
459          *  -----------------------------------------------------------
460          *  Configuration:Disable WP40 WP104 WPA-AES WPA-TKIP RSN-AES RSN-TKIP
461          *  Values (0x)  :   00     03   07     29       49       31      51
462          *  Configuration:WPA-AES+TKIP RSN-AES+TKIP
463          *  Values (0x)  :      69        71
464          *  -----------------------------------------------------------
465          */
466         WID_11I_MODE                    = 0x000C,
467
468         /*
469          *  WEP Configuration: Used in BSS STA mode only when WEP is enabled
470          *  -----------------------------------------------------------
471          *  Configuration : Open System Shared Key Any Type | 802.1x Auth
472          *  Values (0x)   :    01             02         03 |    BIT2
473          *  -----------------------------------------------------------
474          */
475         WID_AUTH_TYPE                   = 0x000D,
476
477         /*
478          *  Site Survey Type
479          *  -----------------------------------------------------------
480          *  Configuration       :  Values to set
481          *  Survey 1 Channel    :  0
482          *  survey all Channels :  1
483          *  Disable Site Survey :  2
484          *  -----------------------------------------------------------
485          */
486         WID_SITE_SURVEY                 = 0x000E,
487
488         /*
489          *  Listen Interval
490          *  -----------------------------------------------------------
491          *  Configuration :   Any value between 1 to 255
492          *  Values to set :   Same value. Default is 3
493          *  -----------------------------------------------------------
494          */
495         WID_LISTEN_INTERVAL             = 0x000F,
496
497         /*
498          *  DTIM Period
499          *  -----------------------------------------------------------
500          *  Configuration :   Any value between 1 to 255
501          *  Values to set :   Same value. Default is 3
502          *  -----------------------------------------------------------
503          */
504         WID_DTIM_PERIOD                 = 0x0010,
505
506         /*
507          *  ACK Policy
508          *  -----------------------------------------------------------
509          *  Configuration :   Normal Ack            No Ack
510          *  Values to set :       0                   1
511          *  -----------------------------------------------------------
512          */
513         WID_ACK_POLICY                  = 0x0011,
514
515         /*
516          *  Reset MAC (Set only)
517          *  -----------------------------------------------------------
518          *  Configuration :   Don't Reset       Reset   No Request
519          *  Values to set :       0               1         2
520          *  -----------------------------------------------------------
521          */
522         WID_RESET                       = 0x0012,
523
524         /*
525          *  Broadcast SSID Option: Setting this will adhere to "" SSID element
526          *  -----------------------------------------------------------
527          *  Configuration :   Enable             Disable
528          *  Values to set :   1                  0
529          *  -----------------------------------------------------------
530          */
531         WID_BCAST_SSID                  = 0x0015,
532
533         /*
534          *  Disconnect (Station)
535          *  -----------------------------------------------------------
536          *  Configuration :   Association ID
537          *  Values to set :   Association ID
538          *  -----------------------------------------------------------
539          */
540         WID_DISCONNECT                  = 0x0016,
541
542         /*
543          *  11a Tx Power Level
544          *  -----------------------------------------------------------
545          *  Configuration : Sets TX Power (Higher the value greater the power)
546          *  Values to set : Any value between 0 and 63 (inclusive Default 48)
547          *  -----------------------------------------------------------
548          */
549         WID_TX_POWER_LEVEL_11A          = 0x0018,
550
551         /*
552          *  Group Key Update Policy Selection
553          *  -----------------------------------------------------------
554          *  Configuration : Disabled timeBased packetBased timePacketBased
555          *  Values to set :   1            2          3              4
556          *  -----------------------------------------------------------
557          */
558         WID_REKEY_POLICY                = 0x0019,
559
560         /*
561          *  Allow Short Slot
562          *  -----------------------------------------------------------
563          *  Configuration : Disallow Short Slot      Allow Short Slot
564          *          (Enable Only Long Slot) (Enable Short Slot if applicable)
565          *  Values to set :    0         1
566          *  -----------------------------------------------------------
567          */
568         WID_SHORT_SLOT_ALLOWED          = 0x001A,
569
570         WID_PHY_ACTIVE_REG              = 0x001B,
571
572         /*
573          *  11b Tx Power Level
574          *  -----------------------------------------------------------
575          *  Configuration : Sets TX Power (Higher the value greater the power)
576          *  Values to set : Any value between 0 and 63 (inclusive Default 48)
577          *  -----------------------------------------------------------
578          */
579         WID_TX_POWER_LEVEL_11B          = 0x001D,
580
581         /*
582          *  Scan Request
583          *  -----------------------------------------------------------
584          *  Configuration : Request default scan
585          *  Values to set : 0
586          *  -----------------------------------------------------------
587          */
588         WID_START_SCAN_REQ              = 0x001E,
589
590         /*
591          *  Rssi (get only)
592          *  -----------------------------------------------------------
593          *  Configuration :
594          *  Values to get : Rssi value
595          *  -----------------------------------------------------------
596          */
597         WID_RSSI                        = 0x001F,
598
599         /*
600          * Join Request
601          *  -----------------------------------------------------------
602          *  Configuration : Request to join
603          *  Values to set : index of scan result
604          *  -----------------------------------------------------------
605          */
606         WID_JOIN_REQ                    = 0x0020,
607
608         WID_LINKSPEED                   = 0x0026,
609
610         /*
611          *  Enable User Control of TX Power
612          *  -----------------------------------------------------------
613          *  Configuration : Disable                  Enable
614          *  Values to set :    0                       1
615          *  -----------------------------------------------------------
616          */
617         WID_USER_CONTROL_ON_TX_POWER    = 0x0027,
618
619         WID_MEMORY_ACCESS_8BIT          = 0x0029,
620
621         /*
622          *  Enable Auto RX Sensitivity feature
623          *  -----------------------------------------------------------
624          *  Configuration : Disable                  Enable
625          *  Values to set :    0                       1
626          *  -----------------------------------------------------------
627          */
628         WID_AUTO_RX_SENSITIVITY         = 0x0032,
629
630         /*
631          *  Receive Buffer Based Ack
632          *  -----------------------------------------------------------
633          *  Configuration : Disable                  Enable
634          *  Values to set :    0                       1
635          *  -----------------------------------------------------------
636          */
637         WID_DATAFLOW_CONTROL            = 0x0033,
638
639         /*
640          *  Scan Filter
641          *  -----------------------------------------------------------
642          *  Configuration : Class       No filter   AP only   Station Only
643          *  Values to set :                0           1           2
644          *  Configuration : Priority    High Rssi   Low Rssi     Detect
645          *  Values to set :                0          0x4         0x0
646          *  Configuration : Channel     filter off  filter on
647          *  Values to set :                0          0x10
648          *  -----------------------------------------------------------
649          */
650         WID_SCAN_FILTER                 = 0x0036,
651
652         /*
653          *  Link Loss Threshold (measure in the beacon period)
654          *  -----------------------------------------------------------
655          *  Configuration : Any value between 10 and 254(Set to 255 disable)
656          *  Values to set : Same value. Default is 10
657          *  -----------------------------------------------------------
658          */
659         WID_LINK_LOSS_THRESHOLD         = 0x0037,
660
661         WID_ABORT_RUNNING_SCAN          = 0x003E,
662
663         /* NMAC Character WID list */
664         WID_WPS_START                   = 0x0043,
665
666         /*
667          *  Protection mode for MAC
668          *  -----------------------------------------------------------
669          *  Configuration :  Auto  No protection  ERP    HT    GF
670          *  Values to set :  0     1              2      3     4
671          *  -----------------------------------------------------------
672          */
673         WID_11N_PROT_MECH               = 0x0080,
674
675         /*
676          *  ERP Protection type for MAC
677          *  -----------------------------------------------------------
678          *  Configuration :  Self-CTS   RTS-CTS
679          *  Values to set :  0          1
680          *  -----------------------------------------------------------
681          */
682         WID_11N_ERP_PROT_TYPE           = 0x0081,
683
684         /*
685          *  HT Option Enable
686          *  -----------------------------------------------------------
687          *  Configuration :   HT Enable          HT Disable
688          *  Values to set :   1                  0
689          *  -----------------------------------------------------------
690          */
691         WID_11N_ENABLE                  = 0x0082,
692
693         /*
694          *  11n Operating mode (Note that 11g operating mode will also be
695          *  used in addition to this, if this is set to HT Mixed mode)
696          *  -----------------------------------------------------------
697          *   Configuration :  HT Mixed  HT Only-20MHz   HT Only-20/40MHz
698          *  Values to set :     1         2               3
699          *  -----------------------------------------------------------
700          */
701         WID_11N_OPERATING_MODE          = 0x0083,
702
703         /*
704          *  11n OBSS non-HT STA Detection flag
705          *  -----------------------------------------------------------
706          *  Configuration :  Do not detect
707          *  Values to set :  0
708          *  Configuration :  Detect, do not protect or report
709          *  Values to set :  1
710          *  Configuration :  Detect, protect and do not report
711          *  Values to set :  2
712          *  Configuration :  Detect, protect and report to other BSS
713          *  Values to set :  3
714          *  -----------------------------------------------------------
715          */
716         WID_11N_OBSS_NONHT_DETECTION    = 0x0084,
717
718         /*
719          *  11n HT Protection Type
720          *  -----------------------------------------------------------
721          *  Configuration :  RTS-CTS   First Frame Exchange at non-HT-rate
722          *  Values to set :  0         1
723          *  Configuration :  LSIG TXOP First Frame Exchange in Mixed Fmt
724          *  Values to set :  2         3
725          *  -----------------------------------------------------------
726          */
727         WID_11N_HT_PROT_TYPE            = 0x0085,
728
729         /*
730          *  11n RIFS Protection Enable Flag
731          *  -----------------------------------------------------------
732          *  Configuration :  Disable    Enable
733          *  Values to set :  0          1
734          *  -----------------------------------------------------------
735          */
736         WID_11N_RIFS_PROT_ENABLE        = 0x0086,
737
738         /*
739          *  SMPS Mode
740          *  -----------------------------------------------------------
741          *  Configuration :  Static   Dynamic   MIMO (Power Save Disabled)
742          *  Values to set :  1        2         3
743          *  -----------------------------------------------------------
744          */
745         WID_11N_SMPS_MODE               = 0x0087,
746
747         /*
748          *  Current transmit MCS
749          *  -----------------------------------------------------------
750          *  Configuration :  MCS Index for data rate
751          *  Values to set :  0 to 7
752          *  -----------------------------------------------------------
753          */
754         WID_11N_CURRENT_TX_MCS          = 0x0088,
755
756         WID_11N_PRINT_STATS             = 0x0089,
757
758         /*
759          *  11n Short GI Enable Flag
760          *  -----------------------------------------------------------
761          *  Configuration :  Disable    Enable
762          *  Values to set :  0          1
763          *  -----------------------------------------------------------
764          */
765         WID_11N_SHORT_GI_ENABLE         = 0x008D,
766
767         /*
768          *  11n RIFS Enable Flag
769          *  -----------------------------------------------------------
770          *  Configuration :  Disable    Enable
771          *  Values to set :  0          1
772          *  -----------------------------------------------------------
773          */
774         WID_RIFS_MODE                   = 0x0094,
775
776         /*
777          *  TX Abort Feature
778          *  -----------------------------------------------------------
779          *  Configuration :  Disable Self CTS    Enable Self CTS
780          *  Values to set :             0                      1
781          *  Configuration :  Disable TX Abort    Enable TX Abort
782          *  Values to set :             2                      3
783          *  Configuration :  Enable HW TX Abort Enable SW TX Abort
784          *  Values to set :             4                      5
785          *  -----------------------------------------------------------
786          */
787         WID_TX_ABORT_CONFIG             = 0x00A1,
788
789         WID_REG_TSSI_11B_VALUE          = 0x00A6,
790         WID_REG_TSSI_11G_VALUE          = 0x00A7,
791         WID_REG_TSSI_11N_VALUE          = 0x00A8,
792         WID_TX_CALIBRATION              = 0x00A9,
793         WID_DSCR_TSSI_11B_VALUE         = 0x00AA,
794         WID_DSCR_TSSI_11G_VALUE         = 0x00AB,
795         WID_DSCR_TSSI_11N_VALUE         = 0x00AC,
796
797         /*
798          *  Immediate Block-Ack Support
799          *  -----------------------------------------------------------
800          *  Configuration : Disable                  Enable
801          *  Values to set :    0                       1
802          *  -----------------------------------------------------------
803          */
804         WID_11N_IMMEDIATE_BA_ENABLED    = 0x00AF,
805
806         /*
807          *  TXOP Disable Flag
808          *  -----------------------------------------------------------
809          *  Configuration : Disable                  Enable
810          *  Values to set :    1                        0
811          *  -----------------------------------------------------------
812          */
813         WID_11N_TXOP_PROT_DISABLE       = 0x00B0,
814
815         WID_TX_POWER_LEVEL_11N          = 0x00B1,
816
817         /* Custom Character WID list */
818         WID_PC_TEST_MODE                = 0x00C8,
819         /* SCAN Complete notification WID*/
820         WID_SCAN_COMPLETE               = 0x00C9,
821
822         WID_DEL_BEACON                  = 0x00CA,
823
824         WID_LOGTerminal_Switch          = 0x00CD,
825         /*  EMAC Short WID list */
826         /*  RTS Threshold */
827         /*
828          *  -----------------------------------------------------------
829          *  Configuration :   Any value between 256 to 2347
830          *  Values to set :   Same value. Default is 2347
831          *  -----------------------------------------------------------
832          */
833         WID_RTS_THRESHOLD               = 0x1000,
834
835         /*
836          *  Fragmentation Threshold
837          *  -----------------------------------------------------------
838          *  Configuration :   Any value between 256 to 2346
839          *  Values to set :   Same value. Default is 2346
840          *  -----------------------------------------------------------
841          */
842         WID_FRAG_THRESHOLD              = 0x1001,
843
844         WID_SHORT_RETRY_LIMIT           = 0x1002,
845         WID_LONG_RETRY_LIMIT            = 0x1003,
846         WID_BEACON_INTERVAL             = 0x1006,
847         WID_MEMORY_ACCESS_16BIT         = 0x1008,
848         WID_RX_SENSE                    = 0x100B,
849         WID_ACTIVE_SCAN_TIME            = 0x100C,
850         WID_PASSIVE_SCAN_TIME           = 0x100D,
851
852         WID_SITE_SURVEY_SCAN_TIME       = 0x100E,
853         WID_JOIN_START_TIMEOUT          = 0x100F,
854         WID_AUTH_TIMEOUT                = 0x1010,
855         WID_ASOC_TIMEOUT                = 0x1011,
856         WID_11I_PROTOCOL_TIMEOUT        = 0x1012,
857         WID_EAPOL_RESPONSE_TIMEOUT      = 0x1013,
858
859         /* NMAC Short WID list */
860         WID_11N_SIG_QUAL_VAL            = 0x1085,
861         WID_CCA_THRESHOLD               = 0x1087,
862
863         /* Custom Short WID list */
864
865         /* EMAC Integer WID list */
866         WID_FAILED_COUNT                = 0x2000,
867         WID_RETRY_COUNT                 = 0x2001,
868         WID_MULTIPLE_RETRY_COUNT        = 0x2002,
869         WID_FRAME_DUPLICATE_COUNT       = 0x2003,
870         WID_ACK_FAILURE_COUNT           = 0x2004,
871         WID_RECEIVED_FRAGMENT_COUNT     = 0x2005,
872         WID_MCAST_RECEIVED_FRAME_COUNT  = 0x2006,
873         WID_FCS_ERROR_COUNT             = 0x2007,
874         WID_SUCCESS_FRAME_COUNT         = 0x2008,
875         WID_HUT_TX_COUNT                = 0x200A,
876         WID_TX_FRAGMENT_COUNT           = 0x200B,
877         WID_TX_MULTICAST_FRAME_COUNT    = 0x200C,
878         WID_RTS_SUCCESS_COUNT           = 0x200D,
879         WID_RTS_FAILURE_COUNT           = 0x200E,
880         WID_WEP_UNDECRYPTABLE_COUNT     = 0x200F,
881         WID_REKEY_PERIOD                = 0x2010,
882         WID_REKEY_PACKET_COUNT          = 0x2011,
883         WID_1X_SERV_ADDR                = 0x2012,
884         WID_STACK_IP_ADDR               = 0x2013,
885         WID_STACK_NETMASK_ADDR          = 0x2014,
886         WID_HW_RX_COUNT                 = 0x2015,
887         WID_MEMORY_ADDRESS              = 0x201E,
888         WID_MEMORY_ACCESS_32BIT         = 0x201F,
889         WID_RF_REG_VAL                  = 0x2021,
890
891         /* NMAC Integer WID list */
892         WID_11N_PHY_ACTIVE_REG_VAL      = 0x2080,
893
894         /* Custom Integer WID list */
895         WID_GET_INACTIVE_TIME           = 0x2084,
896         WID_SET_DRV_HANDLER             = 0X2085,
897         WID_SET_OPERATION_MODE          = 0X2086,
898         /* EMAC String WID list */
899         WID_SSID                        = 0x3000,
900         WID_FIRMWARE_VERSION            = 0x3001,
901         WID_OPERATIONAL_RATE_SET        = 0x3002,
902         WID_BSSID                       = 0x3003,
903         WID_WEP_KEY_VALUE               = 0x3004,
904         WID_11I_PSK                     = 0x3008,
905         WID_11E_P_ACTION_REQ            = 0x3009,
906         WID_1X_KEY                      = 0x300A,
907         WID_HARDWARE_VERSION            = 0x300B,
908         WID_MAC_ADDR                    = 0x300C,
909         WID_HUT_DEST_ADDR               = 0x300D,
910         WID_PHY_VERSION                 = 0x300F,
911         WID_SUPP_USERNAME               = 0x3010,
912         WID_SUPP_PASSWORD               = 0x3011,
913         WID_SITE_SURVEY_RESULTS         = 0x3012,
914         WID_RX_POWER_LEVEL              = 0x3013,
915         WID_DEL_ALL_RX_BA               = 0x3014,
916         WID_SET_STA_MAC_INACTIVE_TIME   = 0x3017,
917         WID_ADD_WEP_KEY                 = 0x3019,
918         WID_REMOVE_WEP_KEY              = 0x301A,
919         WID_ADD_PTK                     = 0x301B,
920         WID_ADD_RX_GTK                  = 0x301C,
921         WID_ADD_TX_GTK                  = 0x301D,
922         WID_REMOVE_KEY                  = 0x301E,
923         WID_ASSOC_REQ_INFO              = 0x301F,
924         WID_ASSOC_RES_INFO              = 0x3020,
925         WID_MANUFACTURER                = 0x3026, /*Added for CAPI tool */
926         WID_MODEL_NAME                  = 0x3027, /*Added for CAPI tool */
927         WID_MODEL_NUM                   = 0x3028, /*Added for CAPI tool */
928         WID_DEVICE_NAME                 = 0x3029, /*Added for CAPI tool */
929
930         /* NMAC String WID list */
931         WID_11N_P_ACTION_REQ            = 0x3080,
932         WID_HUT_TEST_ID                 = 0x3081,
933         WID_PMKID_INFO                  = 0x3082,
934         WID_FIRMWARE_INFO               = 0x3083,
935         WID_REGISTER_FRAME              = 0x3084,
936         WID_DEL_ALL_STA                 = 0x3085,
937         WID_REMAIN_ON_CHAN              = 0x3996,
938         WID_SSID_PROBE_REQ              = 0x3997,
939         WID_JOIN_REQ_EXTENDED           = 0x3998,
940
941         WID_IP_ADDRESS                  = 0x3999,
942
943         /* Custom String WID list */
944
945         /* EMAC Binary WID list */
946         WID_UAPSD_CONFIG                = 0x4001,
947         WID_UAPSD_STATUS                = 0x4002,
948         WID_WMM_AP_AC_PARAMS            = 0x4003,
949         WID_WMM_STA_AC_PARAMS           = 0x4004,
950         WID_NETWORK_INFO                = 0x4005,
951         WID_STA_JOIN_INFO               = 0x4006,
952         WID_CONNECTED_STA_LIST          = 0x4007,
953
954         /* NMAC Binary WID list */
955         WID_11N_AUTORATE_TABLE          = 0x4080,
956
957         WID_SCAN_CHANNEL_LIST           = 0x4084,
958
959         WID_INFO_ELEMENT_PROBE          = 0x4085,
960         WID_INFO_ELEMENT_ASSOCIATE      = 0x4086,
961         WID_ADD_STA                     = 0X4087,
962         WID_REMOVE_STA                  = 0X4088,
963         WID_EDIT_STA                    = 0X4089,
964         WID_ADD_BEACON                  = 0x408a,
965
966         WID_SETUP_MULTICAST_FILTER      = 0x408b,
967
968         /* Miscellaneous WIDs */
969         WID_ALL                         = 0x7FFE,
970         WID_MAX                         = 0xFFFF
971 } WID_T;
972
973 int wilc_wlan_init(wilc_wlan_inp_t *inp, wilc_wlan_oup_t *oup);
974
975 void wilc_bus_set_max_speed(void);
976 void wilc_bus_set_default_speed(void);
977 u32 wilc_get_chipid(u8 update);
978 extern wilc_wlan_oup_t *gpstrWlanOps;
979
980 #endif