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