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