blob: edbf61f30b471f93a67a9d61eea5ff9c66f9fa4a [file] [log] [blame]
Henry Ptasinskicf2b4482010-09-20 22:33:12 -07001/*
2 * Copyright (c) 2010 Broadcom Corporation
3 *
4 * Permission to use, copy, modify, and/or distribute this software for any
5 * purpose with or without fee is hereby granted, provided that the above
6 * copyright notice and this permission notice appear in all copies.
7 *
8 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
11 * SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
13 * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
14 * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 */
16
17#ifndef _wl_iw_h_
18#define _wl_iw_h_
19
20#include <linux/wireless.h>
21
Henry Ptasinskicf2b4482010-09-20 22:33:12 -070022#include <proto/ethernet.h>
23#include <wlioctl.h>
24
25#define WL_SCAN_PARAMS_SSID_MAX 10
26#define GET_SSID "SSID="
27#define GET_CHANNEL "CH="
28#define GET_NPROBE "NPROBE="
29#define GET_ACTIVE_ASSOC_DWELL "ACTIVE="
30#define GET_PASSIVE_ASSOC_DWELL "PASSIVE="
31#define GET_HOME_DWELL "HOME="
32#define GET_SCAN_TYPE "TYPE="
33
34#define BAND_GET_CMD "BANDGET"
35#define BAND_SET_CMD "BANDSET"
36#define DTIM_SKIP_GET_CMD "DTIMSKIPGET"
37#define DTIM_SKIP_SET_CMD "DTIMSKIPSET"
38#define SETSUSPEND_CMD "SETSUSPENDOPT"
39#define PNOSSIDCLR_SET_CMD "PNOSSIDCLR"
40#define PNOSETUP_SET_CMD "PNOSETUP"
41#define PNOENABLE_SET_CMD "PNOFORCE"
42#define PNODEBUG_SET_CMD "PNODEBUG"
43
Henry Ptasinskicf2b4482010-09-20 22:33:12 -070044typedef struct wl_iw_extra_params {
45 int target_channel;
46} wl_iw_extra_params_t;
47
48#define WL_IW_RSSI_MINVAL -200
49#define WL_IW_RSSI_NO_SIGNAL -91
50#define WL_IW_RSSI_VERY_LOW -80
51#define WL_IW_RSSI_LOW -70
52#define WL_IW_RSSI_GOOD -68
53#define WL_IW_RSSI_VERY_GOOD -58
54#define WL_IW_RSSI_EXCELLENT -57
55#define WL_IW_RSSI_INVALID 0
56#define MAX_WX_STRING 80
Henry Ptasinskicf2b4482010-09-20 22:33:12 -070057#define WL_IW_SET_ACTIVE_SCAN (SIOCIWFIRSTPRIV+1)
58#define WL_IW_GET_RSSI (SIOCIWFIRSTPRIV+3)
59#define WL_IW_SET_PASSIVE_SCAN (SIOCIWFIRSTPRIV+5)
60#define WL_IW_GET_LINK_SPEED (SIOCIWFIRSTPRIV+7)
61#define WL_IW_GET_CURR_MACADDR (SIOCIWFIRSTPRIV+9)
62#define WL_IW_SET_STOP (SIOCIWFIRSTPRIV+11)
63#define WL_IW_SET_START (SIOCIWFIRSTPRIV+13)
64
65#define WL_SET_AP_CFG (SIOCIWFIRSTPRIV+15)
66#define WL_AP_STA_LIST (SIOCIWFIRSTPRIV+17)
67#define WL_AP_MAC_FLTR (SIOCIWFIRSTPRIV+19)
68#define WL_AP_BSS_START (SIOCIWFIRSTPRIV+21)
69#define AP_LPB_CMD (SIOCIWFIRSTPRIV+23)
70#define WL_AP_STOP (SIOCIWFIRSTPRIV+25)
71#define WL_FW_RELOAD (SIOCIWFIRSTPRIV+27)
72#define WL_COMBO_SCAN (SIOCIWFIRSTPRIV+29)
73#define WL_AP_SPARE3 (SIOCIWFIRSTPRIV+31)
Jason Cooper5a505da2010-10-06 10:08:03 -040074#define G_SCAN_RESULTS (8*1024)
Henry Ptasinskicf2b4482010-09-20 22:33:12 -070075#define WE_ADD_EVENT_FIX 0x80
76#define G_WLAN_SET_ON 0
77#define G_WLAN_SET_OFF 1
78
79#define CHECK_EXTRA_FOR_NULL(extra) \
80if (!extra) { \
81 WL_ERROR(("%s: error : extra is null pointer\n", __func__)); \
82 return -EINVAL; \
83}
84
85typedef struct wl_iw {
86 char nickname[IW_ESSID_MAX_SIZE];
87
88 struct iw_statistics wstats;
89
90 int spy_num;
Greg Kroah-Hartman66cbd3a2010-10-08 11:05:47 -070091 u32 pwsec;
92 u32 gwsec;
Henry Ptasinskicf2b4482010-09-20 22:33:12 -070093 bool privacy_invoked;
94
95 struct ether_addr spy_addr[IW_MAX_SPY];
96 struct iw_quality spy_qual[IW_MAX_SPY];
97 void *wlinfo;
98 dhd_pub_t *pub;
99} wl_iw_t;
100
101#if WIRELESS_EXT > 12
102#include <net/iw_handler.h>
103extern const struct iw_handler_def wl_iw_handler_def;
104#endif
105
106extern int wl_iw_ioctl(struct net_device *dev, struct ifreq *rq, int cmd);
107extern void wl_iw_event(struct net_device *dev, wl_event_msg_t *e, void *data);
108extern int wl_iw_get_wireless_stats(struct net_device *dev,
109 struct iw_statistics *wstats);
110int wl_iw_attach(struct net_device *dev, void *dhdp);
111void wl_iw_detach(void);
112extern int net_os_set_suspend_disable(struct net_device *dev, int val);
113extern int net_os_set_suspend(struct net_device *dev, int val);
114extern int net_os_set_dtim_skip(struct net_device *dev, int val);
115extern int net_os_set_packet_filter(struct net_device *dev, int val);
116
117#define IWE_STREAM_ADD_EVENT(info, stream, ends, iwe, extra) \
118 iwe_stream_add_event(info, stream, ends, iwe, extra)
119#define IWE_STREAM_ADD_VALUE(info, event, value, ends, iwe, event_len) \
120 iwe_stream_add_value(info, event, value, ends, iwe, event_len)
121#define IWE_STREAM_ADD_POINT(info, stream, ends, iwe, extra) \
122 iwe_stream_add_point(info, stream, ends, iwe, extra)
123
124extern int dhd_pno_enable(dhd_pub_t *dhd, int pfn_enabled);
125extern int dhd_pno_clean(dhd_pub_t *dhd);
126extern int dhd_pno_set(dhd_pub_t *dhd, wlc_ssid_t *ssids_local, int nssid,
Greg Kroah-Hartman580a0bd2010-10-05 11:09:48 -0700127 unsigned char scan_fr);
Henry Ptasinskicf2b4482010-09-20 22:33:12 -0700128extern int dhd_pno_get_status(dhd_pub_t *dhd);
129extern int dhd_dev_pno_reset(struct net_device *dev);
130extern int dhd_dev_pno_set(struct net_device *dev, wlc_ssid_t *ssids_local,
Greg Kroah-Hartman580a0bd2010-10-05 11:09:48 -0700131 int nssid, unsigned char scan_fr);
Henry Ptasinskicf2b4482010-09-20 22:33:12 -0700132extern int dhd_dev_pno_enable(struct net_device *dev, int pfn_enabled);
133extern int dhd_dev_get_pno_status(struct net_device *dev);
134
135#define PNO_TLV_PREFIX 'S'
136#define PNO_TLV_VERSION 1
137#define PNO_TLV_SUBVERSION 0
138#define PNO_TLV_RESERVED 0
139#define PNO_TLV_TYPE_SSID_IE 'S'
140#define PNO_TLV_TYPE_TIME 'T'
141#define PNO_EVENT_UP "PNO_EVENT"
142
143typedef struct cmd_tlv {
144 char prefix;
145 char version;
146 char subver;
147 char reserved;
148} cmd_tlv_t;
149#endif /* _wl_iw_h_ */