blob: 7e0d3160f610cfb85cd3eac317714883c7b94fa0 [file] [log] [blame]
Bing Zhao5e6e3a92011-03-21 18:00:50 -07001/*
2 * Marvell Wireless LAN device driver: ioctl data structures & APIs
3 *
4 * Copyright (C) 2011, Marvell International Ltd.
5 *
6 * This software file (the "File") is distributed by Marvell International
7 * Ltd. under the terms of the GNU General Public License Version 2, June 1991
8 * (the "License"). You may use, redistribute and/or modify this File in
9 * accordance with the terms and conditions of the License, a copy of which
10 * is available by writing to the Free Software Foundation, Inc.,
11 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the
12 * worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt.
13 *
14 * THE FILE IS DISTRIBUTED AS-IS, WITHOUT WARRANTY OF ANY KIND, AND THE
15 * IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE
16 * ARE EXPRESSLY DISCLAIMED. The License provides additional details about
17 * this warranty disclaimer.
18 */
19
20#ifndef _MWIFIEX_IOCTL_H_
21#define _MWIFIEX_IOCTL_H_
22
23#include <net/mac80211.h>
24
25enum {
26 MWIFIEX_SCAN_MODE_UNCHANGED = 0,
27 MWIFIEX_SCAN_MODE_BSS,
28 MWIFIEX_SCAN_MODE_IBSS,
29 MWIFIEX_SCAN_MODE_ANY
30};
31
32enum {
33 MWIFIEX_SCAN_TYPE_UNCHANGED = 0,
34 MWIFIEX_SCAN_TYPE_ACTIVE,
35 MWIFIEX_SCAN_TYPE_PASSIVE
36};
37
38struct mwifiex_get_scan_table_fixed {
39 u8 bssid[ETH_ALEN];
40 u8 channel;
41 u8 rssi;
42 long long network_tsf;
43};
44
45struct mwifiex_scan_time_params {
46 u32 specific_scan_time;
47 u32 active_scan_time;
48 u32 passive_scan_time;
49};
50
51struct mwifiex_user_scan {
52 u32 scan_cfg_len;
53 u8 scan_cfg_buf[1];
54};
55
56struct mwifiex_scan_req {
57 u32 scan_mode;
58 u32 scan_type;
59 struct mwifiex_802_11_ssid scan_ssid;
60 struct mwifiex_scan_time_params scan_time;
61 struct mwifiex_user_scan user_scan;
62};
63
64struct mwifiex_scan_resp {
65 u32 num_in_scan_table;
66 u8 *scan_table;
67};
68
Bing Zhao5e6e3a92011-03-21 18:00:50 -070069#define MWIFIEX_PROMISC_MODE 1
70#define MWIFIEX_MULTICAST_MODE 2
71#define MWIFIEX_ALL_MULTI_MODE 4
72#define MWIFIEX_MAX_MULTICAST_LIST_SIZE 32
73
74struct mwifiex_multicast_list {
75 u32 mode;
76 u32 num_multicast_addr;
77 u8 mac_list[MWIFIEX_MAX_MULTICAST_LIST_SIZE][ETH_ALEN];
78};
79
80#define MWIFIEX_MAX_CHANNEL_NUM 128
81
82struct mwifiex_chan_freq {
83 u32 channel;
84 u32 freq;
85};
86
87struct mwifiex_chan_list {
88 u32 num_of_chan;
89 struct mwifiex_chan_freq cf[MWIFIEX_MAX_CHANNEL_NUM];
90};
91
92struct mwifiex_ssid_bssid {
93 struct mwifiex_802_11_ssid ssid;
94 u8 bssid[ETH_ALEN];
95};
96
97enum {
98 BAND_B = 1,
99 BAND_G = 2,
100 BAND_A = 4,
101 BAND_GN = 8,
102 BAND_AN = 16,
103};
104
105#define NO_SEC_CHANNEL 0
106#define SEC_CHANNEL_ABOVE 1
107#define SEC_CHANNEL_BELOW 3
108
109struct mwifiex_ds_band_cfg {
110 u32 config_bands;
111 u32 adhoc_start_band;
112 u32 adhoc_channel;
113 u32 sec_chan_offset;
114};
115
116enum {
117 ADHOC_IDLE,
118 ADHOC_STARTED,
119 ADHOC_JOINED,
120 ADHOC_COALESCED
121};
122
123struct mwifiex_ds_get_stats {
124 u32 mcast_tx_frame;
125 u32 failed;
126 u32 retry;
127 u32 multi_retry;
128 u32 frame_dup;
129 u32 rts_success;
130 u32 rts_failure;
131 u32 ack_failure;
132 u32 rx_frag;
133 u32 mcast_rx_frame;
134 u32 fcs_error;
135 u32 tx_frame;
136 u32 wep_icv_error[4];
137};
138
139#define BCN_RSSI_LAST_MASK 0x00000001
140#define BCN_RSSI_AVG_MASK 0x00000002
141#define DATA_RSSI_LAST_MASK 0x00000004
142#define DATA_RSSI_AVG_MASK 0x00000008
143#define BCN_SNR_LAST_MASK 0x00000010
144#define BCN_SNR_AVG_MASK 0x00000020
145#define DATA_SNR_LAST_MASK 0x00000040
146#define DATA_SNR_AVG_MASK 0x00000080
147#define BCN_NF_LAST_MASK 0x00000100
148#define BCN_NF_AVG_MASK 0x00000200
149#define DATA_NF_LAST_MASK 0x00000400
150#define DATA_NF_AVG_MASK 0x00000800
151#define ALL_RSSI_INFO_MASK 0x00000fff
152
153struct mwifiex_ds_get_signal {
154 /*
155 * Bit0: Last Beacon RSSI, Bit1: Average Beacon RSSI,
156 * Bit2: Last Data RSSI, Bit3: Average Data RSSI,
157 * Bit4: Last Beacon SNR, Bit5: Average Beacon SNR,
158 * Bit6: Last Data SNR, Bit7: Average Data SNR,
159 * Bit8: Last Beacon NF, Bit9: Average Beacon NF,
160 * Bit10: Last Data NF, Bit11: Average Data NF
161 */
162 u16 selector;
163 s16 bcn_rssi_last;
164 s16 bcn_rssi_avg;
165 s16 data_rssi_last;
166 s16 data_rssi_avg;
167 s16 bcn_snr_last;
168 s16 bcn_snr_avg;
169 s16 data_snr_last;
170 s16 data_snr_avg;
171 s16 bcn_nf_last;
172 s16 bcn_nf_avg;
173 s16 data_nf_last;
174 s16 data_nf_avg;
175};
176
177struct mwifiex_fw_info {
178 u32 fw_ver;
179 u8 mac_addr[ETH_ALEN];
180};
181
182#define MWIFIEX_MAX_VER_STR_LEN 128
183
184struct mwifiex_ver_ext {
185 u32 version_str_sel;
186 char version_str[MWIFIEX_MAX_VER_STR_LEN];
187};
188
189struct mwifiex_bss_info {
190 u32 bss_mode;
191 struct mwifiex_802_11_ssid ssid;
192 u32 scan_table_idx;
193 u32 bss_chan;
194 u32 region_code;
195 u32 media_connected;
196 u32 radio_on;
197 u32 max_power_level;
198 u32 min_power_level;
199 u32 adhoc_state;
200 signed int bcn_nf_last;
201 u32 wep_status;
202 u32 is_hs_configured;
203 u32 is_deep_sleep;
204 u8 bssid[ETH_ALEN];
205};
206
207#define MAX_NUM_TID 8
208
209#define MAX_RX_WINSIZE 64
210
211struct mwifiex_ds_rx_reorder_tbl {
212 u16 tid;
213 u8 ta[ETH_ALEN];
214 u32 start_win;
215 u32 win_size;
216 u32 buffer[MAX_RX_WINSIZE];
217};
218
219struct mwifiex_ds_tx_ba_stream_tbl {
220 u16 tid;
221 u8 ra[ETH_ALEN];
222};
223
224#define DBG_CMD_NUM 5
225
226struct mwifiex_debug_info {
227 u32 int_counter;
228 u32 packets_out[MAX_NUM_TID];
229 u32 max_tx_buf_size;
230 u32 tx_buf_size;
231 u32 curr_tx_buf_size;
232 u32 tx_tbl_num;
233 struct mwifiex_ds_tx_ba_stream_tbl
234 tx_tbl[MWIFIEX_MAX_TX_BASTREAM_SUPPORTED];
235 u32 rx_tbl_num;
236 struct mwifiex_ds_rx_reorder_tbl rx_tbl
237 [MWIFIEX_MAX_RX_BASTREAM_SUPPORTED];
238 u16 ps_mode;
239 u32 ps_state;
240 u8 is_deep_sleep;
241 u8 pm_wakeup_card_req;
242 u32 pm_wakeup_fw_try;
243 u8 is_hs_configured;
244 u8 hs_activated;
245 u32 num_cmd_host_to_card_failure;
246 u32 num_cmd_sleep_cfm_host_to_card_failure;
247 u32 num_tx_host_to_card_failure;
248 u32 num_event_deauth;
249 u32 num_event_disassoc;
250 u32 num_event_link_lost;
251 u32 num_cmd_deauth;
252 u32 num_cmd_assoc_success;
253 u32 num_cmd_assoc_failure;
254 u32 num_tx_timeout;
255 u32 num_cmd_timeout;
256 u16 timeout_cmd_id;
257 u16 timeout_cmd_act;
258 u16 last_cmd_id[DBG_CMD_NUM];
259 u16 last_cmd_act[DBG_CMD_NUM];
260 u16 last_cmd_index;
261 u16 last_cmd_resp_id[DBG_CMD_NUM];
262 u16 last_cmd_resp_index;
263 u16 last_event[DBG_CMD_NUM];
264 u16 last_event_index;
265 u8 data_sent;
266 u8 cmd_sent;
267 u8 cmd_resp_received;
268 u8 event_received;
269};
270
271enum {
Bing Zhao5e6e3a92011-03-21 18:00:50 -0700272 MWIFIEX_ENCRYPTION_MODE_NONE = 0,
273 MWIFIEX_ENCRYPTION_MODE_WEP40 = 1,
274 MWIFIEX_ENCRYPTION_MODE_TKIP = 2,
275 MWIFIEX_ENCRYPTION_MODE_CCMP = 3,
276 MWIFIEX_ENCRYPTION_MODE_WEP104 = 4,
277};
278
279#define MWIFIEX_KEY_INDEX_UNICAST 0x40000000
280#define MWIFIEX_MAX_KEY_LENGTH 32
281#define WAPI_RXPN_LEN 16
282
283struct mwifiex_ds_encrypt_key {
284 u32 key_disable;
285 u32 key_index;
286 u32 key_len;
287 u8 key_material[MWIFIEX_MAX_KEY_LENGTH];
288 u8 mac_addr[ETH_ALEN];
289 u32 is_wapi_key;
290 u8 wapi_rxpn[WAPI_RXPN_LEN];
291};
292
293struct mwifiex_rate_cfg {
294 u32 action;
295 u32 is_rate_auto;
296 u32 rate;
297};
298
299struct mwifiex_data_rate {
300 u32 tx_data_rate;
301 u32 rx_data_rate;
302};
303
304struct mwifiex_power_cfg {
305 u32 is_power_auto;
306 u32 power_level;
307};
308
309struct mwifiex_ds_hs_cfg {
310 u32 is_invoke_hostcmd;
311 /* Bit0: non-unicast data
312 * Bit1: unicast data
313 * Bit2: mac events
314 * Bit3: magic packet
315 */
316 u32 conditions;
317 u32 gpio;
318 u32 gap;
319};
320
321#define DEEP_SLEEP_ON 1
322#define DEEP_SLEEP_OFF 0
323
324#define DEEP_SLEEP_IDLE_TIME 100
325
326struct mwifiex_ds_auto_ds {
327 u16 auto_ds;
328 u16 idle_time;
329};
330
331#define PS_MODE_UNCHANGED 0
332#define PS_MODE_AUTO 1
333#define PS_MODE_POLL 2
334#define PS_MODE_NULL 3
335
336
337struct mwifiex_ds_pm_cfg {
338 union {
339 u32 ps_mode;
340 struct mwifiex_ds_hs_cfg hs_cfg;
341 struct mwifiex_ds_auto_ds auto_deep_sleep;
342 u32 sleep_period;
343 } param;
344};
345
346struct mwifiex_ioctl_wmm_queue_status_ac {
347 u8 wmm_acm;
348 u8 flow_required;
349 u8 flow_created;
350 u8 disabled;
351};
352
353struct mwifiex_ds_wmm_queue_status {
354 struct mwifiex_ioctl_wmm_queue_status_ac
355 ac_status[IEEE80211_MAX_QUEUES];
356};
357
358struct mwifiex_ds_11n_tx_cfg {
359 u16 tx_htcap;
360 u16 tx_htinfo;
361};
362
363struct mwifiex_ds_11n_amsdu_aggr_ctrl {
364 u16 enable;
365 u16 curr_buf_size;
366};
367
368#define MWIFIEX_NUM_OF_CMD_BUFFER 20
369#define MWIFIEX_SIZE_OF_CMD_BUFFER 2048
370
371enum {
372 MWIFIEX_IE_TYPE_GEN_IE = 0,
373 MWIFIEX_IE_TYPE_ARP_FILTER,
374};
375
376enum {
377 MWIFIEX_REG_MAC = 1,
378 MWIFIEX_REG_BBP,
379 MWIFIEX_REG_RF,
380 MWIFIEX_REG_PMIC,
381 MWIFIEX_REG_CAU,
382};
383
384struct mwifiex_ds_reg_rw {
385 __le32 type;
386 __le32 offset;
387 __le32 value;
388};
389
390#define MAX_EEPROM_DATA 256
391
392struct mwifiex_ds_read_eeprom {
393 __le16 offset;
394 __le16 byte_count;
395 u8 value[MAX_EEPROM_DATA];
396};
397
398struct mwifiex_ds_misc_gen_ie {
399 u32 type;
400 u32 len;
401 u8 ie_data[IW_CUSTOM_MAX];
402};
403
404struct mwifiex_ds_misc_cmd {
405 u32 len;
406 u8 cmd[MWIFIEX_SIZE_OF_CMD_BUFFER];
407};
408
409#define MWIFIEX_MAX_VSIE_LEN (256)
410#define MWIFIEX_MAX_VSIE_NUM (8)
411#define MWIFIEX_VSIE_MASK_SCAN 0x01
412#define MWIFIEX_VSIE_MASK_ASSOC 0x02
413#define MWIFIEX_VSIE_MASK_ADHOC 0x04
414
415enum {
416 MWIFIEX_FUNC_INIT = 1,
417 MWIFIEX_FUNC_SHUTDOWN,
418};
419
420#endif /* !_MWIFIEX_IOCTL_H_ */