]> git.karo-electronics.de Git - karo-tx-linux.git/blob - drivers/staging/wilc1000/host_interface.h
41ca349c47cace4a938414bfe2aa07ec8cbac2a4
[karo-tx-linux.git] / drivers / staging / wilc1000 / host_interface.h
1 #ifndef HOST_INT_H
2 #define HOST_INT_H
3
4 #include "coreconfigurator.h"
5
6 #define IP_ALEN  4
7
8 #define IDLE_MODE       0x00
9 #define AP_MODE         0x01
10 #define STATION_MODE    0x02
11 #define GO_MODE         0x03
12 #define CLIENT_MODE     0x04
13 #define ACTION          0xD0
14 #define PROBE_REQ       0x40
15 #define PROBE_RESP      0x50
16
17 #define ACTION_FRM_IDX                          0
18 #define PROBE_REQ_IDX                           1
19 #define MAX_NUM_STA                             9
20 #define ACTIVE_SCAN_TIME                        10
21 #define PASSIVE_SCAN_TIME                       1200
22 #define MIN_SCAN_TIME                           10
23 #define MAX_SCAN_TIME                           1200
24 #define DEFAULT_SCAN                            0
25 #define USER_SCAN                               BIT(0)
26 #define OBSS_PERIODIC_SCAN                      BIT(1)
27 #define OBSS_ONETIME_SCAN                       BIT(2)
28 #define GTK_RX_KEY_BUFF_LEN                     24
29 #define ADDKEY                                  0x1
30 #define REMOVEKEY                               0x2
31 #define DEFAULTKEY                              0x4
32 #define ADDKEY_AP                               0x8
33 #define MAX_NUM_SCANNED_NETWORKS                100
34 #define MAX_NUM_SCANNED_NETWORKS_SHADOW         130
35 #define MAX_NUM_PROBED_SSID                     10
36 #define CHANNEL_SCAN_TIME                       250
37
38 #define TX_MIC_KEY_LEN                          8
39 #define RX_MIC_KEY_LEN                          8
40 #define PTK_KEY_LEN                             16
41
42 #define TX_MIC_KEY_MSG_LEN                      26
43 #define RX_MIC_KEY_MSG_LEN                      48
44 #define PTK_KEY_MSG_LEN                         39
45
46 #define PMKSA_KEY_LEN                           22
47 #define ETH_ALEN                                6
48 #define PMKID_LEN                               16
49 #define WILC_MAX_NUM_PMKIDS                     16
50 #define WILC_SUPP_MCS_SET_SIZE                  16
51 #define WILC_ADD_STA_LENGTH                     40
52 #define SCAN_EVENT_DONE_ABORTED
53 #define NUM_CONCURRENT_IFC                      2
54
55 struct rf_info {
56         u8 link_speed;
57         s8 rssi;
58         u32 tx_cnt;
59         u32 rx_cnt;
60         u32 tx_fail_cnt;
61 };
62
63 enum host_if_state {
64         HOST_IF_IDLE                    = 0,
65         HOST_IF_SCANNING                = 1,
66         HOST_IF_CONNECTING              = 2,
67         HOST_IF_WAITING_CONN_RESP       = 3,
68         HOST_IF_CONNECTED               = 4,
69         HOST_IF_P2P_LISTEN              = 5,
70         HOST_IF_FORCE_32BIT             = 0xFFFFFFFF
71 };
72
73 struct host_if_pmkid {
74         u8 bssid[ETH_ALEN];
75         u8 pmkid[PMKID_LEN];
76 };
77
78 struct host_if_pmkid_attr {
79         u8 numpmkid;
80         struct host_if_pmkid pmkidlist[WILC_MAX_NUM_PMKIDS];
81 };
82
83 enum CURRENT_TXRATE {
84         AUTORATE        = 0,
85         MBPS_1          = 1,
86         MBPS_2          = 2,
87         MBPS_5_5        = 5,
88         MBPS_11         = 11,
89         MBPS_6          = 6,
90         MBPS_9          = 9,
91         MBPS_12         = 12,
92         MBPS_18         = 18,
93         MBPS_24         = 24,
94         MBPS_36         = 36,
95         MBPS_48         = 48,
96         MBPS_54         = 54
97 };
98
99 struct cfg_param_val {
100         u32 flag;
101         u8 ht_enable;
102         u8 bss_type;
103         u8 auth_type;
104         u16 auth_timeout;
105         u8 power_mgmt_mode;
106         u16 short_retry_limit;
107         u16 long_retry_limit;
108         u16 frag_threshold;
109         u16 rts_threshold;
110         u16 preamble_type;
111         u8 short_slot_allowed;
112         u8 txop_prot_disabled;
113         u16 beacon_interval;
114         u16 dtim_period;
115         enum SITESURVEY site_survey_enabled;
116         u16 site_survey_scan_time;
117         u8 scan_source;
118         u16 active_scan_time;
119         u16 passive_scan_time;
120         enum CURRENT_TXRATE curr_tx_rate;
121
122 };
123
124 enum cfg_param {
125         RETRY_SHORT             = BIT(0),
126         RETRY_LONG              = BIT(1),
127         FRAG_THRESHOLD          = BIT(2),
128         RTS_THRESHOLD           = BIT(3),
129         BSS_TYPE                = BIT(4),
130         AUTH_TYPE               = BIT(5),
131         AUTHEN_TIMEOUT          = BIT(6),
132         POWER_MANAGEMENT        = BIT(7),
133         PREAMBLE                = BIT(8),
134         SHORT_SLOT_ALLOWED      = BIT(9),
135         TXOP_PROT_DISABLE       = BIT(10),
136         BEACON_INTERVAL         = BIT(11),
137         DTIM_PERIOD             = BIT(12),
138         SITE_SURVEY             = BIT(13),
139         SITE_SURVEY_SCAN_TIME   = BIT(14),
140         ACTIVE_SCANTIME         = BIT(15),
141         PASSIVE_SCANTIME        = BIT(16),
142         CURRENT_TX_RATE         = BIT(17),
143         HT_ENABLE               = BIT(18),
144 };
145
146 struct found_net_info {
147         u8 au8bssid[6];
148         s8 s8rssi;
149 };
150
151 enum scan_event {
152         SCAN_EVENT_NETWORK_FOUND        = 0,
153         SCAN_EVENT_DONE                 = 1,
154         SCAN_EVENT_ABORTED              = 2,
155         SCAN_EVENT_FORCE_32BIT          = 0xFFFFFFFF
156 };
157
158 enum conn_event {
159         CONN_DISCONN_EVENT_CONN_RESP            = 0,
160         CONN_DISCONN_EVENT_DISCONN_NOTIF        = 1,
161         CONN_DISCONN_EVENT_FORCE_32BIT          = 0xFFFFFFFF
162 };
163
164 enum KEY_TYPE {
165         WEP,
166         WPA_RX_GTK,
167         WPA_PTK,
168         PMKSA,
169 };
170
171 typedef void (*wilc_scan_result)(enum scan_event, tstrNetworkInfo *,
172                                   void *, void *);
173
174 typedef void (*wilc_connect_result)(enum conn_event,
175                                      tstrConnectInfo *,
176                                      u8,
177                                      tstrDisconnectNotifInfo *,
178                                      void *);
179
180 typedef void (*wilc_remain_on_chan_expired)(void *, u32);
181 typedef void (*wilc_remain_on_chan_ready)(void *);
182
183 struct rcvd_net_info {
184         u8 *buffer;
185         u32 len;
186 };
187
188 struct hidden_net_info {
189         u8  *pu8ssid;
190         u8 u8ssidlen;
191 };
192
193 struct hidden_network {
194         struct hidden_net_info *pstrHiddenNetworkInfo;
195         u8 u8ssidnum;
196 };
197
198 struct user_scan_req {
199         wilc_scan_result scan_result;
200         void *arg;
201         u32 rcvd_ch_cnt;
202         struct found_net_info net_info[MAX_NUM_SCANNED_NETWORKS];
203 };
204
205 struct user_conn_req {
206         u8 *pu8bssid;
207         u8 *pu8ssid;
208         u8 u8security;
209         enum AUTHTYPE auth_type;
210         size_t ssid_len;
211         u8 *ies;
212         size_t ies_len;
213         wilc_connect_result conn_result;
214         bool ht_capable;
215         void *arg;
216 };
217
218 struct drv_handler {
219         u32 handler;
220 };
221
222 struct op_mode {
223         u32 mode;
224 };
225
226 struct set_mac_addr {
227         u8 mac_addr[ETH_ALEN];
228 };
229
230 struct get_mac_addr {
231         u8 *mac_addr;
232 };
233
234 struct ba_session_info {
235         u8 bssid[ETH_ALEN];
236         u8 tid;
237         u16 buf_size;
238         u16 time_out;
239 };
240
241 struct remain_ch {
242         u16 ch;
243         u32 u32duration;
244         wilc_remain_on_chan_expired expired;
245         wilc_remain_on_chan_ready ready;
246         void *arg;
247         u32 id;
248 };
249
250 struct reg_frame {
251         bool reg;
252         u16 frame_type;
253         u8 reg_id;
254 };
255
256 enum p2p_listen_state {
257         P2P_IDLE,
258         P2P_LISTEN,
259         P2P_GRP_FORMATION
260 };
261
262 struct host_if_drv {
263         struct user_scan_req usr_scan_req;
264         struct user_conn_req usr_conn_req;
265         struct remain_ch remain_on_ch;
266         u8 remain_on_ch_pending;
267         u64 p2p_timeout;
268         u8 p2p_connect;
269
270         enum host_if_state hif_state;
271
272         u8 assoc_bssid[ETH_ALEN];
273         struct cfg_param_val cfg_values;
274
275         struct semaphore sem_cfg_values;
276         struct semaphore sem_test_key_block;
277         struct semaphore sem_test_disconn_block;
278         struct semaphore sem_get_rssi;
279         struct semaphore sem_get_link_speed;
280         struct semaphore sem_get_chnl;
281         struct semaphore sem_inactive_time;
282
283         struct timer_list scan_timer;
284         struct timer_list connect_timer;
285         struct timer_list remain_on_ch_timer;
286
287         bool IFC_UP;
288 };
289
290 struct add_sta_param {
291         u8 bssid[ETH_ALEN];
292         u16 aid;
293         u8 rates_len;
294         const u8 *rates;
295         bool ht_supported;
296         u16 ht_capa_info;
297         u8 ht_ampdu_params;
298         u8 ht_supp_mcs_set[16];
299         u16 ht_ext_params;
300         u32 ht_tx_bf_cap;
301         u8 ht_ante_sel;
302         u16 flags_mask;
303         u16 flags_set;
304 };
305
306 s32 host_int_remove_key(struct host_if_drv *hWFIDrv, const u8 *pu8StaAddress);
307 int host_int_remove_wep_key(struct host_if_drv *wfi_drv, u8 index);
308 int host_int_set_wep_default_key(struct host_if_drv *hif_drv, u8 index);
309 int host_int_add_wep_key_bss_sta(struct host_if_drv *hif_drv,
310                                  const u8 *key, u8 len, u8 index);
311 int host_int_add_wep_key_bss_ap(struct host_if_drv *hif_drv,
312                                 const u8 *key, u8 len, u8 index, u8 mode,
313                                 enum AUTHTYPE auth_type);
314 int host_int_add_ptk(struct host_if_drv *hif_drv, const u8 *ptk,
315                      u8 ptk_key_len, const u8 *mac_addr,
316                      const u8 *rx_mic, const u8 *tx_mic,
317                      u8 mode, u8 cipher_mode, u8 index);
318 s32 host_int_get_inactive_time(struct host_if_drv *hWFIDrv, const u8 *mac,
319                                u32 *pu32InactiveTime);
320 int host_int_add_rx_gtk(struct host_if_drv *hif_drv, const u8 *rx_gtk,
321                         u8 gtk_key_len, u8 index,
322                         u32 u32KeyRSClen, const u8 *KeyRSC,
323                         const u8 *pu8RxMic, const u8 *pu8TxMic,
324                         u8 mode, u8 u8Ciphermode);
325 s32 host_int_add_tx_gtk(struct host_if_drv *hWFIDrv, u8 u8KeyLen,
326                         u8 *pu8TxGtk, u8 u8KeyIdx);
327 s32 host_int_set_pmkid_info(struct host_if_drv *hWFIDrv,
328                             struct host_if_pmkid_attr *pu8PmkidInfoArray);
329 s32 host_int_get_pmkid_info(struct host_if_drv *hWFIDrv, u8 *pu8PmkidInfoArray,
330                             u32 u32PmkidInfoLen);
331 s32 host_int_set_RSNAConfigPSKPassPhrase(struct host_if_drv *hWFIDrv,
332                                          u8 *pu8PassPhrase,
333                                          u8 u8Psklength);
334 s32 host_int_get_RSNAConfigPSKPassPhrase(struct host_if_drv *hWFIDrv,
335                                          u8 *pu8PassPhrase, u8 u8Psklength);
336 s32 hif_get_mac_address(struct host_if_drv *hWFIDrv, u8 *pu8MacAddress);
337 s32 host_int_set_MacAddress(struct host_if_drv *hWFIDrv, u8 *pu8MacAddress);
338 int host_int_wait_msg_queue_idle(void);
339 s32 host_int_set_start_scan_req(struct host_if_drv *hWFIDrv, u8 scanSource);
340 s32 host_int_get_start_scan_req(struct host_if_drv *hWFIDrv, u8 *pu8ScanSource);
341 s32 host_int_set_join_req(struct host_if_drv *hWFIDrv, u8 *pu8bssid,
342                           const u8 *pu8ssid, size_t ssidLen,
343                           const u8 *pu8IEs, size_t IEsLen,
344                           wilc_connect_result pfConnectResult, void *pvUserArg,
345                           u8 u8security, enum AUTHTYPE tenuAuth_type,
346                           u8 u8channel, void *pJoinParams);
347 s32 host_int_flush_join_req(struct host_if_drv *hWFIDrv);
348 s32 host_int_disconnect(struct host_if_drv *hWFIDrv, u16 u16ReasonCode);
349 s32 host_int_disconnect_station(struct host_if_drv *hWFIDrv, u8 assoc_id);
350 s32 host_int_get_assoc_req_info(struct host_if_drv *hWFIDrv,
351                                 u8 *pu8AssocReqInfo,
352                                 u32 u32AssocReqInfoLen);
353 s32 host_int_get_assoc_res_info(struct host_if_drv *hWFIDrv,
354                                 u8 *pu8AssocRespInfo,
355                                 u32 u32MaxAssocRespInfoLen,
356                                 u32 *pu32RcvdAssocRespInfoLen);
357 s32 host_int_get_rx_power_level(struct host_if_drv *hWFIDrv,
358                                 u8 *pu8RxPowerLevel,
359                                 u32 u32RxPowerLevelLen);
360 int host_int_set_mac_chnl_num(struct host_if_drv *wfi_drv, u8 channel);
361 s32 host_int_get_host_chnl_num(struct host_if_drv *hWFIDrv, u8 *pu8ChNo);
362 s32 host_int_get_rssi(struct host_if_drv *hWFIDrv, s8 *ps8Rssi);
363 s32 host_int_get_link_speed(struct host_if_drv *hWFIDrv, s8 *ps8lnkspd);
364 s32 host_int_scan(struct host_if_drv *hWFIDrv, u8 u8ScanSource,
365                   u8 u8ScanType, u8 *pu8ChnlFreqList,
366                   u8 u8ChnlListLen, const u8 *pu8IEs,
367                   size_t IEsLen, wilc_scan_result ScanResult,
368                   void *pvUserArg, struct hidden_network *pstrHiddenNetwork);
369 s32 hif_set_cfg(struct host_if_drv *hWFIDrv,
370                 struct cfg_param_val *pstrCfgParamVal);
371 s32 hif_get_cfg(struct host_if_drv *hWFIDrv, u16 u16WID, u16 *pu16WID_Value);
372 s32 host_int_init(struct net_device *dev, struct host_if_drv **phWFIDrv);
373 s32 host_int_deinit(struct host_if_drv *hWFIDrv);
374 s32 host_int_add_beacon(struct host_if_drv *hWFIDrv, u32 u32Interval,
375                         u32 u32DTIMPeriod,
376                         u32 u32HeadLen,
377                         u8 *pu8Head,
378                         u32 u32TailLen,
379                         u8 *pu8tail);
380 int host_int_del_beacon(struct host_if_drv *hif_drv);
381 int host_int_add_station(struct host_if_drv *hif_drv,
382                          struct add_sta_param *sta_param);
383 s32 host_int_del_allstation(struct host_if_drv *hWFIDrv,
384                             u8 pu8MacAddr[][ETH_ALEN]);
385 int host_int_del_station(struct host_if_drv *hif_drv, const u8 *mac_addr);
386 s32 host_int_edit_station(struct host_if_drv *hWFIDrv,
387                           struct add_sta_param *pstrStaParams);
388 s32 host_int_set_power_mgmt(struct host_if_drv *hWFIDrv,
389                             bool bIsEnabled,
390                             u32 u32Timeout);
391 s32 host_int_setup_multicast_filter(struct host_if_drv *hWFIDrv,
392                                     bool bIsEnabled,
393                                     u32 u32count);
394 s32 host_int_setup_ipaddress(struct host_if_drv *hWFIDrv,
395                              u8 *pu8IPAddr,
396                              u8 idx);
397 s32 host_int_delBASession(struct host_if_drv *hWFIDrv, char *pBSSID, char TID);
398 s32 host_int_del_All_Rx_BASession(struct host_if_drv *hWFIDrv,
399                                   char *pBSSID,
400                                   char TID);
401 s32 host_int_get_ipaddress(struct host_if_drv *hWFIDrv, u8 *pu8IPAddr, u8 idx);
402 s32 host_int_remain_on_channel(struct host_if_drv *hWFIDrv,
403                                u32 u32SessionID,
404                                u32 u32duration,
405                                u16 chan,
406                                wilc_remain_on_chan_expired RemainOnChanExpired,
407                                wilc_remain_on_chan_ready RemainOnChanReady,
408                                void *pvUserArg);
409 s32 host_int_ListenStateExpired(struct host_if_drv *hWFIDrv, u32 u32SessionID);
410 s32 host_int_frame_register(struct host_if_drv *hWFIDrv,
411                             u16 u16FrameType,
412                             bool bReg);
413 int host_int_set_wfi_drv_handler(struct host_if_drv *address);
414 int host_int_set_operation_mode(struct host_if_drv *wfi_drv, u32 mode);
415
416 static s32 Handle_ScanDone(struct host_if_drv *drvHandler,
417                            enum scan_event enuEvent);
418
419 void host_int_freeJoinParams(void *pJoinParams);
420
421 s32 host_int_get_statistics(struct host_if_drv *hWFIDrv,
422                             struct rf_info *pstrStatistics);
423 void resolve_disconnect_aberration(struct host_if_drv *hif_drv);
424 #endif