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