blob: 730fe7329ec28869dfe877fa2b224177d2603304 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
|
/*
** Id: //Department/DaVinci/BRANCHES/MT6620_WIFI_DRIVER_V2_3/include/mgmt/wapi.h#1
*/
/*! \file wapi.h
\brief The wapi related define, macro and structure are described here.
*/
/*
** Log: wapi.h
**
** 09 17 2012 cm.chang
** [BORA00002149] [MT6630 Wi-Fi] Initial software development
** Duplicate source from MT6620 v2.3 driver branch
** (Davinci label: MT6620_WIFI_Driver_V2_3_120913_1942_As_MT6630_Base)
*
* 07 20 2010 wh.su
*
* .
*
* 01 27 2010 wh.su
* [BORA00000476][Wi-Fi][firmware] Add the security module initialize code
* add and fixed some security function.
*
* Dec 8 2009 mtk01088
* [BORA00000476] [Wi-Fi][firmware] Add the security module initialize code
* change the wapi function name and adding the generate wapi ie function
*
* Dec 7 2009 mtk01088
* [BORA00000476] [Wi-Fi][firmware] Add the security module initialize code
* adding some wapi structure define
*
* Nov 23 2009 mtk01088
* [BORA00000476] [Wi-Fi][firmware] Add the security module initialize code
*
** \main\maintrunk.MT5921\1 2009-10-09 17:06:29 GMT mtk01088
**
*/
#ifndef _WAPI_H
#define _WAPI_H
#if CFG_SUPPORT_WAPI
/*******************************************************************************
* C O M P I L E R F L A G S
********************************************************************************
*/
/*******************************************************************************
* E X T E R N A L R E F E R E N C E S
********************************************************************************
*/
/*******************************************************************************
* C O N S T A N T S
********************************************************************************
*/
/*******************************************************************************
* D A T A T Y P E S
********************************************************************************
*/
/*******************************************************************************
* P U B L I C D A T A
********************************************************************************
*/
/*******************************************************************************
* P R I V A T E D A T A
********************************************************************************
*/
/*******************************************************************************
* M A C R O S
********************************************************************************
*/
#define WAPI_CIPHER_SUITE_WPI 0x01721400 /* WPI_SMS4 */
#define WAPI_AKM_SUITE_802_1X 0x01721400 /* WAI */
#define WAPI_AKM_SUITE_PSK 0x02721400 /* WAI_PSK */
#define ELEM_ID_WAPI 68 /* WAPI IE */
#define WAPI_IE(fp) ((P_WAPI_INFO_ELEM_T) fp)
/*******************************************************************************
* F U N C T I O N D E C L A R A T I O N S
********************************************************************************
*/
VOID wapiGenerateWAPIIE(IN P_ADAPTER_T prAdapter, IN P_MSDU_INFO_T prMsduInfo);
BOOLEAN wapiParseWapiIE(IN P_WAPI_INFO_ELEM_T prInfoElem, OUT P_WAPI_INFO_T prWapiInfo);
BOOLEAN wapiPerformPolicySelection(IN P_ADAPTER_T prAdapter, IN P_BSS_DESC_T prBss);
/* BOOLEAN */
/* wapiUpdateTxKeyIdx ( */
/* IN P_STA_RECORD_T prStaRec, */
/* IN UINT_8 ucWlanIdx */
/* ); */
/*******************************************************************************
* F U N C T I O N S
********************************************************************************
*/
#endif
#endif /* _WAPI_H */
|