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