aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/wireless/bcmdhd/wl_iw.h
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/net/wireless/bcmdhd/wl_iw.h')
-rw-r--r--drivers/net/wireless/bcmdhd/wl_iw.h306
1 files changed, 306 insertions, 0 deletions
diff --git a/drivers/net/wireless/bcmdhd/wl_iw.h b/drivers/net/wireless/bcmdhd/wl_iw.h
new file mode 100644
index 00000000000..c0cc14bdde4
--- /dev/null
+++ b/drivers/net/wireless/bcmdhd/wl_iw.h
@@ -0,0 +1,306 @@
1/*
2 * Linux Wireless Extensions support
3 *
4 * Copyright (C) 1999-2011, Broadcom Corporation
5 *
6 * Unless you and Broadcom execute a separate written software license
7 * agreement governing use of this software, this software is licensed to you
8 * under the terms of the GNU General Public License version 2 (the "GPL"),
9 * available at http://www.broadcom.com/licenses/GPLv2.php, with the
10 * following added to such license:
11 *
12 * As a special exception, the copyright holders of this software give you
13 * permission to link this software with independent modules, and to copy and
14 * distribute the resulting executable under terms of your choice, provided that
15 * you also meet, for each linked independent module, the terms and conditions of
16 * the license of that module. An independent module is a module which is not
17 * derived from this software. The special exception does not apply to any
18 * modifications of the software.
19 *
20 * Notwithstanding the above, under no circumstances may you combine this
21 * software in any way with any other Broadcom software provided under a license
22 * other than the GPL, without Broadcom's express prior written consent.
23 *
24 * $Id: wl_iw.h,v 1.15.80.6 2010-12-23 01:13:23 Exp $
25 */
26
27
28#ifndef _wl_iw_h_
29#define _wl_iw_h_
30
31#include <linux/wireless.h>
32
33#include <typedefs.h>
34#include <proto/ethernet.h>
35#include <wlioctl.h>
36
37#define WL_SCAN_PARAMS_SSID_MAX 10
38#define GET_SSID "SSID="
39#define GET_CHANNEL "CH="
40#define GET_NPROBE "NPROBE="
41#define GET_ACTIVE_ASSOC_DWELL "ACTIVE="
42#define GET_PASSIVE_ASSOC_DWELL "PASSIVE="
43#define GET_HOME_DWELL "HOME="
44#define GET_SCAN_TYPE "TYPE="
45
46#define BAND_GET_CMD "GETBAND"
47#define BAND_SET_CMD "SETBAND"
48#define DTIM_SKIP_GET_CMD "DTIMSKIPGET"
49#define DTIM_SKIP_SET_CMD "DTIMSKIPSET"
50#define SETSUSPEND_CMD "SETSUSPENDOPT"
51#define PNOSSIDCLR_SET_CMD "PNOSSIDCLR"
52
53#define PNOSETUP_SET_CMD "PNOSETUP "
54#define PNOENABLE_SET_CMD "PNOFORCE"
55#define PNODEBUG_SET_CMD "PNODEBUG"
56#define TXPOWER_SET_CMD "TXPOWER"
57
58#define MAC2STR(a) (a)[0], (a)[1], (a)[2], (a)[3], (a)[4], (a)[5]
59#define MACSTR "%02x:%02x:%02x:%02x:%02x:%02x"
60
61
62typedef struct wl_iw_extra_params {
63 int target_channel;
64} wl_iw_extra_params_t;
65
66struct cntry_locales_custom {
67 char iso_abbrev[WLC_CNTRY_BUF_SZ];
68 char custom_locale[WLC_CNTRY_BUF_SZ];
69 int32 custom_locale_rev;
70};
71
72
73#define WL_IW_RSSI_MINVAL -200
74#define WL_IW_RSSI_NO_SIGNAL -91
75#define WL_IW_RSSI_VERY_LOW -80
76#define WL_IW_RSSI_LOW -70
77#define WL_IW_RSSI_GOOD -68
78#define WL_IW_RSSI_VERY_GOOD -58
79#define WL_IW_RSSI_EXCELLENT -57
80#define WL_IW_RSSI_INVALID 0
81#define MAX_WX_STRING 80
82#define isprint(c) bcm_isprint(c)
83#define WL_IW_SET_ACTIVE_SCAN (SIOCIWFIRSTPRIV+1)
84#define WL_IW_GET_RSSI (SIOCIWFIRSTPRIV+3)
85#define WL_IW_SET_PASSIVE_SCAN (SIOCIWFIRSTPRIV+5)
86#define WL_IW_GET_LINK_SPEED (SIOCIWFIRSTPRIV+7)
87#define WL_IW_GET_CURR_MACADDR (SIOCIWFIRSTPRIV+9)
88#define WL_IW_SET_STOP (SIOCIWFIRSTPRIV+11)
89#define WL_IW_SET_START (SIOCIWFIRSTPRIV+13)
90
91
92#define WL_SET_AP_CFG (SIOCIWFIRSTPRIV+15)
93#define WL_AP_STA_LIST (SIOCIWFIRSTPRIV+17)
94#define WL_AP_MAC_FLTR (SIOCIWFIRSTPRIV+19)
95#define WL_AP_BSS_START (SIOCIWFIRSTPRIV+21)
96#define AP_LPB_CMD (SIOCIWFIRSTPRIV+23)
97#define WL_AP_STOP (SIOCIWFIRSTPRIV+25)
98#define WL_FW_RELOAD (SIOCIWFIRSTPRIV+27)
99#define WL_AP_STA_DISASSOC (SIOCIWFIRSTPRIV+29)
100#define WL_COMBO_SCAN (SIOCIWFIRSTPRIV+31)
101
102
103#define G_SCAN_RESULTS 8*1024
104#define WE_ADD_EVENT_FIX 0x80
105#define G_WLAN_SET_ON 0
106#define G_WLAN_SET_OFF 1
107
108#define CHECK_EXTRA_FOR_NULL(extra) \
109if (!extra) { \
110 WL_ERROR(("%s: error : extra is null pointer\n", __FUNCTION__)); \
111 return -EINVAL; \
112}
113
114typedef struct wl_iw {
115 char nickname[IW_ESSID_MAX_SIZE];
116
117 struct iw_statistics wstats;
118
119 int spy_num;
120 int wpaversion;
121 int pcipher;
122 int gcipher;
123 int privacy_invoked;
124
125 struct ether_addr spy_addr[IW_MAX_SPY];
126 struct iw_quality spy_qual[IW_MAX_SPY];
127 void *wlinfo;
128 dhd_pub_t * pub;
129} wl_iw_t;
130
131int wl_control_wl_start(struct net_device *dev);
132#define WLC_IW_SS_CACHE_MAXLEN 2048
133#define WLC_IW_SS_CACHE_CTRL_FIELD_MAXLEN 32
134#define WLC_IW_BSS_INFO_MAXLEN \
135 (WLC_IW_SS_CACHE_MAXLEN - WLC_IW_SS_CACHE_CTRL_FIELD_MAXLEN)
136
137typedef struct wl_iw_ss_cache {
138 struct wl_iw_ss_cache *next;
139 int dirty;
140 uint32 buflen;
141 uint32 version;
142 uint32 count;
143 wl_bss_info_t bss_info[1];
144} wl_iw_ss_cache_t;
145
146typedef struct wl_iw_ss_cache_ctrl {
147 wl_iw_ss_cache_t *m_cache_head;
148 int m_link_down;
149 int m_timer_expired;
150 char m_active_bssid[ETHER_ADDR_LEN];
151 uint m_prev_scan_mode;
152 uint m_cons_br_scan_cnt;
153 struct timer_list *m_timer;
154} wl_iw_ss_cache_ctrl_t;
155
156typedef enum broadcast_first_scan {
157 BROADCAST_SCAN_FIRST_IDLE = 0,
158 BROADCAST_SCAN_FIRST_STARTED,
159 BROADCAST_SCAN_FIRST_RESULT_READY,
160 BROADCAST_SCAN_FIRST_RESULT_CONSUMED
161} broadcast_first_scan_t;
162#ifdef SOFTAP
163#define SSID_LEN 33
164#define SEC_LEN 16
165#define KEY_LEN 65
166#define PROFILE_OFFSET 32
167struct ap_profile {
168 uint8 ssid[SSID_LEN];
169 uint8 sec[SEC_LEN];
170 uint8 key[KEY_LEN];
171 uint32 channel;
172 uint32 preamble;
173 uint32 max_scb;
174 uint32 closednet;
175 char country_code[WLC_CNTRY_BUF_SZ];
176};
177
178
179#define MACLIST_MODE_DISABLED 0
180#define MACLIST_MODE_DENY 1
181#define MACLIST_MODE_ALLOW 2
182struct mflist {
183 uint count;
184 struct ether_addr ea[16];
185};
186struct mac_list_set {
187 uint32 mode;
188 struct mflist mac_list;
189};
190#endif
191
192#if WIRELESS_EXT > 12
193#include <net/iw_handler.h>
194extern const struct iw_handler_def wl_iw_handler_def;
195#endif
196
197extern int wl_iw_ioctl(struct net_device *dev, struct ifreq *rq, int cmd);
198extern void wl_iw_event(struct net_device *dev, wl_event_msg_t *e, void* data);
199extern int wl_iw_get_wireless_stats(struct net_device *dev, struct iw_statistics *wstats);
200int wl_iw_attach(struct net_device *dev, void * dhdp);
201void wl_iw_detach(void);
202
203extern int net_os_wake_lock(struct net_device *dev);
204extern int net_os_wake_unlock(struct net_device *dev);
205extern int net_os_wake_lock_timeout(struct net_device *dev);
206extern int net_os_wake_lock_timeout_enable(struct net_device *dev, int val);
207extern int net_os_set_suspend_disable(struct net_device *dev, int val);
208extern int net_os_set_suspend(struct net_device *dev, int val);
209extern int net_os_set_dtim_skip(struct net_device *dev, int val);
210extern int net_os_send_hang_message(struct net_device *dev);
211extern void get_customized_country_code(char *country_iso_code, wl_country_t *cspec);
212
213#if LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 27)
214#define IWE_STREAM_ADD_EVENT(info, stream, ends, iwe, extra) \
215 iwe_stream_add_event(info, stream, ends, iwe, extra)
216#define IWE_STREAM_ADD_VALUE(info, event, value, ends, iwe, event_len) \
217 iwe_stream_add_value(info, event, value, ends, iwe, event_len)
218#define IWE_STREAM_ADD_POINT(info, stream, ends, iwe, extra) \
219 iwe_stream_add_point(info, stream, ends, iwe, extra)
220#else
221#define IWE_STREAM_ADD_EVENT(info, stream, ends, iwe, extra) \
222 iwe_stream_add_event(stream, ends, iwe, extra)
223#define IWE_STREAM_ADD_VALUE(info, event, value, ends, iwe, event_len) \
224 iwe_stream_add_value(event, value, ends, iwe, event_len)
225#define IWE_STREAM_ADD_POINT(info, stream, ends, iwe, extra) \
226 iwe_stream_add_point(stream, ends, iwe, extra)
227#endif
228
229void dhd_bus_country_set(struct net_device *dev, wl_country_t *cspec);
230
231#define PNO_TLV_PREFIX 'S'
232#define PNO_TLV_VERSION '1'
233#define PNO_TLV_SUBVERSION '2'
234#define PNO_TLV_RESERVED '0'
235#define PNO_TLV_TYPE_SSID_IE 'S'
236#define PNO_TLV_TYPE_TIME 'T'
237#define PNO_TLV_FREQ_REPEAT 'R'
238#define PNO_TLV_FREQ_EXPO_MAX 'M'
239#define PNO_EVENT_UP "PNO_EVENT"
240
241typedef struct cmd_tlv {
242 char prefix;
243 char version;
244 char subver;
245 char reserved;
246} cmd_tlv_t;
247
248
249
250
251typedef struct cscan_tlv {
252 char prefix;
253 char version;
254 char subver;
255 char reserved;
256} cscan_tlv_t;
257
258#define CSCAN_COMMAND "CSCAN "
259#define CSCAN_TLV_PREFIX 'S'
260#define CSCAN_TLV_VERSION 1
261#define CSCAN_TLV_SUBVERSION 0
262#define CSCAN_TLV_TYPE_SSID_IE 'S'
263#define CSCAN_TLV_TYPE_CHANNEL_IE 'C'
264#define CSCAN_TLV_TYPE_NPROBE_IE 'N'
265#define CSCAN_TLV_TYPE_ACTIVE_IE 'A'
266#define CSCAN_TLV_TYPE_PASSIVE_IE 'P'
267#define CSCAN_TLV_TYPE_HOME_IE 'H'
268#define CSCAN_TLV_TYPE_STYPE_IE 'T'
269
270#ifdef SOFTAP_TLV_CFG
271
272#define SOFTAP_SET_CMD "SOFTAPSET "
273#define SOFTAP_TLV_PREFIX 'A'
274#define SOFTAP_TLV_VERSION '1'
275#define SOFTAP_TLV_SUBVERSION '0'
276#define SOFTAP_TLV_RESERVED '0'
277
278#define TLV_TYPE_SSID 'S'
279#define TLV_TYPE_SECUR 'E'
280#define TLV_TYPE_KEY 'K'
281#define TLV_TYPE_CHANNEL 'C'
282#endif
283
284extern int wl_iw_parse_channel_list_tlv(char** list_str, uint16* channel_list,
285 int channel_num, int *bytes_left);
286
287extern int wl_iw_parse_data_tlv(char** list_str, void *dst, int dst_size,
288 const char token, int input_size, int *bytes_left);
289
290extern int wl_iw_parse_ssid_list_tlv(char** list_str, wlc_ssid_t* ssid,
291 int max, int *bytes_left);
292
293extern int wl_iw_parse_ssid_list(char** list_str, wlc_ssid_t* ssid, int idx, int max);
294
295extern int wl_iw_parse_channel_list(char** list_str, uint16* channel_list, int channel_num);
296
297
298#define NETDEV_PRIV(dev) (*(wl_iw_t **)netdev_priv(dev))
299
300#ifdef CONFIG_WPS2
301#define WPS_ADD_PROBE_REQ_IE_CMD "ADD_WPS_PROBE_REQ_IE "
302#define WPS_DEL_PROBE_REQ_IE_CMD "DEL_WPS_PROBE_REQ_IE "
303#define WPS_PROBE_REQ_IE_CMD_LENGTH 21
304#endif
305
306#endif