cfg80211.h 12.3 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
/*
 * Copyright (c) 2010 Broadcom Corporation
 *
 * Permission to use, copy, modify, and/or distribute this software for any
 * purpose with or without fee is hereby granted, provided that the above
 * copyright notice and this permission notice appear in all copies.
 *
 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
 * SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
 * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
 * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
 */

17 18
#ifndef BRCMFMAC_CFG80211_H
#define BRCMFMAC_CFG80211_H
19

F
Franky Lin 已提交
20 21 22
/* for brcmu_d11inf */
#include <brcmu_d11.h>

23
#define WL_NUM_SCAN_MAX			10
24 25
#define WL_TLV_INFO_MAX			1024
#define WL_BSS_INFO_MAX			2048
26 27
#define WL_ASSOC_INFO_MAX		512	/* assoc related fil max buf */
#define WL_EXTRA_BUF_MAX		2048
28 29 30
#define WL_ROAM_TRIGGER_LEVEL		-75
#define WL_ROAM_DELTA			20

H
Hante Meuleman 已提交
31
#define WL_ESCAN_BUF_SIZE		(1024 * 64)
32
#define WL_ESCAN_TIMER_INTERVAL_MS	10000 /* E-Scan timeout */
H
Hante Meuleman 已提交
33 34 35 36 37

#define WL_ESCAN_ACTION_START		1
#define WL_ESCAN_ACTION_CONTINUE	2
#define WL_ESCAN_ACTION_ABORT		3

38
#define WL_AUTH_SHARED_KEY		1	/* d11 shared authentication */
H
Hante Meuleman 已提交
39
#define IE_MAX_LEN			512
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
/* IE TLV processing */
#define TLV_LEN_OFF			1	/* length offset */
#define TLV_HDR_LEN			2	/* header length */
#define TLV_BODY_OFF			2	/* body offset */
#define TLV_OUI_LEN			3	/* oui id length */

/* 802.11 Mgmt Packet flags */
#define BRCMF_VNDR_IE_BEACON_FLAG	0x1
#define BRCMF_VNDR_IE_PRBRSP_FLAG	0x2
#define BRCMF_VNDR_IE_ASSOCRSP_FLAG	0x4
#define BRCMF_VNDR_IE_AUTHRSP_FLAG	0x8
#define BRCMF_VNDR_IE_PRBREQ_FLAG	0x10
#define BRCMF_VNDR_IE_ASSOCREQ_FLAG	0x20
/* vendor IE in IW advertisement protocol ID field */
#define BRCMF_VNDR_IE_IWAPID_FLAG	0x40
/* allow custom IE id */
#define BRCMF_VNDR_IE_CUSTOM_FLAG	0x100

/* P2P Action Frames flags (spec ordered) */
#define BRCMF_VNDR_IE_GONREQ_FLAG     0x001000
#define BRCMF_VNDR_IE_GONRSP_FLAG     0x002000
#define BRCMF_VNDR_IE_GONCFM_FLAG     0x004000
#define BRCMF_VNDR_IE_INVREQ_FLAG     0x008000
#define BRCMF_VNDR_IE_INVRSP_FLAG     0x010000
#define BRCMF_VNDR_IE_DISREQ_FLAG     0x020000
#define BRCMF_VNDR_IE_DISRSP_FLAG     0x040000
#define BRCMF_VNDR_IE_PRDREQ_FLAG     0x080000
#define BRCMF_VNDR_IE_PRDRSP_FLAG     0x100000

#define BRCMF_VNDR_IE_P2PAF_SHIFT	12

72 73
#define BRCMF_MAX_DEFAULT_KEYS		4

74 75 76
/* beacon loss timeout defaults */
#define BRCMF_DEFAULT_BCN_TIMEOUT_ROAM_ON	2
#define BRCMF_DEFAULT_BCN_TIMEOUT_ROAM_OFF	4
77

78 79
#define BRCMF_VIF_EVENT_TIMEOUT		msecs_to_jiffies(1500)

80
/**
81
 * enum brcmf_scan_status - scan engine status
82 83 84
 *
 * @BRCMF_SCAN_STATUS_BUSY: scanning in progress on dongle.
 * @BRCMF_SCAN_STATUS_ABORT: scan being aborted on dongle.
85
 * @BRCMF_SCAN_STATUS_SUPPRESS: scanning is suppressed in driver.
86 87 88 89
 */
enum brcmf_scan_status {
	BRCMF_SCAN_STATUS_BUSY,
	BRCMF_SCAN_STATUS_ABORT,
90
	BRCMF_SCAN_STATUS_SUPPRESS,
91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109
};

/* dongle configuration */
struct brcmf_cfg80211_conf {
	u32 frag_threshold;
	u32 rts_threshold;
	u32 retry_short;
	u32 retry_long;
};

/* security information with currently associated ap */
struct brcmf_cfg80211_security {
	u32 wpa_versions;
	u32 auth_type;
	u32 cipher_pairwise;
	u32 cipher_group;
	u32 wpa_auth;
};

110 111 112 113 114
/**
 * struct brcmf_cfg80211_profile - profile information.
 *
 * @bssid: bssid of joined/joining ibss.
 * @sec: security information.
115
 * @key: key information
116
 */
117 118 119
struct brcmf_cfg80211_profile {
	u8 bssid[ETH_ALEN];
	struct brcmf_cfg80211_security sec;
120
	struct brcmf_wsec_key key[BRCMF_MAX_DEFAULT_KEYS];
121 122
};

123 124 125 126 127 128
/**
 * enum brcmf_vif_status - bit indices for vif status.
 *
 * @BRCMF_VIF_STATUS_READY: ready for operation.
 * @BRCMF_VIF_STATUS_CONNECTING: connect/join in progress.
 * @BRCMF_VIF_STATUS_CONNECTED: connected/joined succesfully.
129
 * @BRCMF_VIF_STATUS_DISCONNECTING: disconnect/disable in progress.
130 131 132 133 134 135
 * @BRCMF_VIF_STATUS_AP_CREATED: AP operation started.
 */
enum brcmf_vif_status {
	BRCMF_VIF_STATUS_READY,
	BRCMF_VIF_STATUS_CONNECTING,
	BRCMF_VIF_STATUS_CONNECTED,
136
	BRCMF_VIF_STATUS_DISCONNECTING,
137 138 139
	BRCMF_VIF_STATUS_AP_CREATED
};

140 141 142
/**
 * struct vif_saved_ie - holds saved IEs for a virtual interface.
 *
143
 * @probe_req_ie: IE info for probe request.
144 145
 * @probe_res_ie: IE info for probe response.
 * @beacon_ie: IE info for beacon frame.
146
 * @probe_req_ie_len: IE info length for probe request.
147 148 149 150
 * @probe_res_ie_len: IE info length for probe response.
 * @beacon_ie_len: IE info length for beacon frame.
 */
struct vif_saved_ie {
151
	u8  probe_req_ie[IE_MAX_LEN];
152 153
	u8  probe_res_ie[IE_MAX_LEN];
	u8  beacon_ie[IE_MAX_LEN];
154
	u8  assoc_req_ie[IE_MAX_LEN];
155
	u32 probe_req_ie_len;
156 157
	u32 probe_res_ie_len;
	u32 beacon_ie_len;
158
	u32 assoc_req_ie_len;
159 160
};

161 162 163 164 165
/**
 * struct brcmf_cfg80211_vif - virtual interface specific information.
 *
 * @ifp: lower layer interface pointer
 * @wdev: wireless device.
166
 * @profile: profile information.
167
 * @sme_state: SME state using enum brcmf_vif_status bits.
168 169
 * @pm_block: power-management blocked.
 * @list: linked list.
170
 * @mgmt_rx_reg: registered rx mgmt frame types.
171
 * @mbss: Multiple BSS type, set if not first AP (not relevant for P2P).
172 173 174 175
 */
struct brcmf_cfg80211_vif {
	struct brcmf_if *ifp;
	struct wireless_dev wdev;
176
	struct brcmf_cfg80211_profile profile;
177
	unsigned long sme_state;
178
	bool pm_block;
179
	struct vif_saved_ie saved_ie;
180
	struct list_head list;
181
	u16 mgmt_rx_reg;
182
	bool mbss;
183
	int is_11d;
184 185
};

186 187 188 189 190 191 192 193 194
/* association inform */
struct brcmf_cfg80211_connect_info {
	u8 *req_ie;
	s32 req_ie_len;
	u8 *resp_ie;
	s32 resp_ie_len;
};

/* assoc ie length */
195 196 197
struct brcmf_cfg80211_assoc_ielen_le {
	__le32 req_len;
	__le32 resp_len;
198 199
};

H
Hante Meuleman 已提交
200 201 202 203 204 205 206 207 208 209
/* dongle escan state */
enum wl_escan_state {
	WL_ESCAN_STATE_IDLE,
	WL_ESCAN_STATE_SCANNING
};

struct escan_info {
	u32 escan_state;
	u8 escan_buf[WL_ESCAN_BUF_SIZE];
	struct wiphy *wiphy;
210 211
	struct brcmf_if *ifp;
	s32 (*run)(struct brcmf_cfg80211_info *cfg, struct brcmf_if *ifp,
212
		   struct cfg80211_scan_request *request);
H
Hante Meuleman 已提交
213 214
};

215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230
/**
 * struct brcmf_cfg80211_vif_event - virtual interface event information.
 *
 * @vif_wq: waitqueue awaiting interface event from firmware.
 * @vif_event_lock: protects other members in this structure.
 * @vif_complete: completion for net attach.
 * @action: either add, change, or delete.
 * @vif: virtual interface object related to the event.
 */
struct brcmf_cfg80211_vif_event {
	wait_queue_head_t vif_wq;
	struct mutex vif_event_lock;
	u8 action;
	struct brcmf_cfg80211_vif *vif;
};

231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251
/**
 * struct brcmf_cfg80211_wowl - wowl related information.
 *
 * @active: set on suspend, cleared on resume.
 * @pre_pmmode: firmware PM mode at entering suspend.
 * @nd: net dectect data.
 * @nd_info: helper struct to pass to cfg80211.
 * @nd_data_wait: wait queue to sync net detect data.
 * @nd_data_completed: completion for net detect data.
 * @nd_enabled: net detect enabled.
 */
struct brcmf_cfg80211_wowl {
	bool active;
	u32 pre_pmmode;
	struct cfg80211_wowlan_nd_match *nd;
	struct cfg80211_wowlan_nd_info *nd_info;
	wait_queue_head_t nd_data_wait;
	bool nd_data_completed;
	bool nd_enabled;
};

252
/**
253
 * struct brcmf_cfg80211_info - dongle private data of cfg80211 interface
254
 *
255
 * @wiphy: wiphy object for cfg80211 interface.
256
 * @conf: dongle configuration.
257
 * @p2p: peer-to-peer specific information.
258
 * @btcoex: Bluetooth coexistence information.
259 260 261 262 263 264
 * @scan_request: cfg80211 scan request object.
 * @usr_sync: mainly for dongle up/down synchronization.
 * @bss_list: bss_list holding scanned ap information.
 * @bss_info: bss information for cfg80211 layer.
 * @conn_info: association info.
 * @pmk_list: wpa2 pmk list.
265
 * @scan_status: scan activity on the dongle.
266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281
 * @pub: common driver information.
 * @channel: current channel.
 * @active_scan: current scan mode.
 * @sched_escan: e-scan for scheduled scan support running.
 * @ibss_starter: indicates this sta is ibss starter.
 * @pwr_save: indicate whether dongle to support power save mode.
 * @dongle_up: indicate whether dongle up or not.
 * @roam_on: on/off switch for dongle self-roaming.
 * @scan_tried: indicates if first scan attempted.
 * @dcmd_buf: dcmd buffer.
 * @extra_buf: mainly to grab assoc information.
 * @debugfsdir: debugfs folder for this device.
 * @escan_info: escan information.
 * @escan_timeout: Timer for catch scan timeout.
 * @escan_timeout_work: scan timeout worker.
 * @escan_ioctl_buf: dongle command buffer for escan commands.
282 283
 * @vif_list: linked list of vif instances.
 * @vif_cnt: number of vif instances.
284
 * @vif_event: vif event signalling.
285
 * @wowl: wowl related information.
286
 */
287
struct brcmf_cfg80211_info {
288
	struct wiphy *wiphy;
289
	struct brcmf_cfg80211_conf *conf;
290
	struct brcmf_p2p_info p2p;
291
	struct brcmf_btcoex_info *btcoex;
292 293 294 295
	struct cfg80211_scan_request *scan_request;
	struct mutex usr_sync;
	struct wl_cfg80211_bss_info *bss_info;
	struct brcmf_cfg80211_connect_info conn_info;
296
	struct brcmf_pmk_list_le pmk_list;
297
	unsigned long scan_status;
298
	struct brcmf_pub *pub;
299 300 301 302 303 304 305 306 307
	u32 channel;
	bool active_scan;
	bool sched_escan;
	bool ibss_starter;
	bool pwr_save;
	bool dongle_up;
	bool scan_tried;
	u8 *dcmd_buf;
	u8 *extra_buf;
308
	struct dentry *debugfsdir;
309 310 311
	struct escan_info escan_info;
	struct timer_list escan_timeout;
	struct work_struct escan_timeout_work;
H
Hante Meuleman 已提交
312
	u8 *escan_ioctl_buf;
313
	struct list_head vif_list;
314
	struct brcmf_cfg80211_vif_event vif_event;
315
	struct completion vif_disabled;
F
Franky Lin 已提交
316
	struct brcmu_d11inf d11inf;
317
	struct brcmf_assoclist_le assoclist;
318
	struct brcmf_cfg80211_wowl wowl;
319 320
};

321 322 323 324 325 326 327 328 329 330 331 332 333
/**
 * struct brcmf_tlv - tag_ID/length/value_buffer tuple.
 *
 * @id: tag identifier.
 * @len: number of bytes in value buffer.
 * @data: value buffer.
 */
struct brcmf_tlv {
	u8 id;
	u8 len;
	u8 data[1];
};

334
static inline struct wiphy *cfg_to_wiphy(struct brcmf_cfg80211_info *cfg)
335
{
336
	return cfg->wiphy;
337 338
}

339
static inline struct brcmf_cfg80211_info *wiphy_to_cfg(struct wiphy *w)
340
{
341
	return (struct brcmf_cfg80211_info *)(wiphy_priv(w));
342 343
}

344
static inline struct brcmf_cfg80211_info *wdev_to_cfg(struct wireless_dev *wd)
345
{
346
	return (struct brcmf_cfg80211_info *)(wdev_priv(wd));
347 348
}

349 350
static inline
struct net_device *cfg_to_ndev(struct brcmf_cfg80211_info *cfg)
351
{
352 353 354
	struct brcmf_cfg80211_vif *vif;
	vif = list_first_entry(&cfg->vif_list, struct brcmf_cfg80211_vif, list);
	return vif->wdev.netdev;
355 356
}

357
static inline struct brcmf_cfg80211_info *ndev_to_cfg(struct net_device *ndev)
358 359 360 361
{
	return wdev_to_cfg(ndev->ieee80211_ptr);
}

362 363 364 365 366 367
static inline struct brcmf_cfg80211_profile *ndev_to_prof(struct net_device *nd)
{
	struct brcmf_if *ifp = netdev_priv(nd);
	return &ifp->vif->profile;
}

368 369 370 371 372 373
static inline struct brcmf_cfg80211_vif *ndev_to_vif(struct net_device *ndev)
{
	struct brcmf_if *ifp = netdev_priv(ndev);
	return ifp->vif;
}

374
static inline struct
375
brcmf_cfg80211_connect_info *cfg_to_conn(struct brcmf_cfg80211_info *cfg)
376 377 378 379
{
	return &cfg->conn_info;
}

A
Arend van Spriel 已提交
380
struct brcmf_cfg80211_info *brcmf_cfg80211_attach(struct brcmf_pub *drvr,
381 382
						  struct device *busdev,
						  bool p2pdev_forced);
383
void brcmf_cfg80211_detach(struct brcmf_cfg80211_info *cfg);
384 385
s32 brcmf_cfg80211_up(struct net_device *ndev);
s32 brcmf_cfg80211_down(struct net_device *ndev);
386
enum nl80211_iftype brcmf_cfg80211_get_iftype(struct brcmf_if *ifp);
387

388 389 390
struct brcmf_cfg80211_vif *brcmf_alloc_vif(struct brcmf_cfg80211_info *cfg,
					   enum nl80211_iftype type,
					   bool pm_block);
391
void brcmf_free_vif(struct brcmf_cfg80211_vif *vif);
392 393 394

s32 brcmf_vif_set_mgmt_ie(struct brcmf_cfg80211_vif *vif, s32 pktflag,
			  const u8 *vndr_ie_buf, u32 vndr_ie_len);
395
s32 brcmf_vif_clear_mgmt_ies(struct brcmf_cfg80211_vif *vif);
396 397
const struct brcmf_tlv *
brcmf_parse_tlvs(const void *buf, int buflen, uint key);
F
Franky Lin 已提交
398 399
u16 channel_to_chanspec(struct brcmu_d11inf *d11inf,
			struct ieee80211_channel *ch);
400 401
bool brcmf_get_vif_state_any(struct brcmf_cfg80211_info *cfg,
			     unsigned long state);
402 403 404 405 406
void brcmf_cfg80211_arm_vif_event(struct brcmf_cfg80211_info *cfg,
				  struct brcmf_cfg80211_vif *vif);
bool brcmf_cfg80211_vif_event_armed(struct brcmf_cfg80211_info *cfg);
int brcmf_cfg80211_wait_vif_event_timeout(struct brcmf_cfg80211_info *cfg,
					  u8 action, ulong timeout);
407
s32 brcmf_notify_escan_complete(struct brcmf_cfg80211_info *cfg,
408 409
				struct brcmf_if *ifp, bool aborted,
				bool fw_abort);
410
void brcmf_set_mpc(struct brcmf_if *ndev, int mpc);
H
Hante Meuleman 已提交
411
void brcmf_abort_scanning(struct brcmf_cfg80211_info *cfg);
412
void brcmf_cfg80211_free_netdev(struct net_device *ndev);
413

414
#endif /* BRCMFMAC_CFG80211_H */