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