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