brcmfmac: add peer-to-peer group discovery support
[deliverable/linux.git] / drivers / net / wireless / brcm80211 / brcmfmac / p2p.h
1 /*
2 * Copyright (c) 2012 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 #ifndef WL_CFGP2P_H_
17 #define WL_CFGP2P_H_
18
19 #include <net/cfg80211.h>
20
21 struct brcmf_cfg80211_info;
22
23 /* vendor ies max buffer length for probe response or beacon */
24 #define VNDR_IES_MAX_BUF_LEN 1400
25 /* normal vendor ies buffer length */
26 #define VNDR_IES_BUF_LEN 512
27
28 /* Structure to hold all saved P2P and WPS IEs for a BSSCFG */
29 /**
30 * enum p2p_bss_type - different type of BSS configurations.
31 *
32 * @P2PAPI_BSSCFG_PRIMARY: maps to driver's primary bsscfg.
33 * @P2PAPI_BSSCFG_DEVICE: maps to driver's P2P device discovery bsscfg.
34 * @P2PAPI_BSSCFG_CONNECTION: maps to driver's P2P connection bsscfg.
35 * @P2PAPI_BSSCFG_MAX: used for range checking.
36 */
37 enum p2p_bss_type {
38 P2PAPI_BSSCFG_PRIMARY, /* maps to driver's primary bsscfg */
39 P2PAPI_BSSCFG_DEVICE, /* maps to driver's P2P device discovery bsscfg */
40 P2PAPI_BSSCFG_CONNECTION, /* maps to driver's P2P connection bsscfg */
41 P2PAPI_BSSCFG_MAX
42 };
43
44 /**
45 * struct p2p_bss - peer-to-peer bss related information.
46 *
47 * @vif: virtual interface of this P2P bss.
48 * @private_data: TBD
49 */
50 struct p2p_bss {
51 struct brcmf_cfg80211_vif *vif;
52 void *private_data;
53 };
54
55 /**
56 * enum brcmf_p2p_status - P2P specific dongle status.
57 *
58 * @BRCMF_P2P_STATUS_IF_ADD: peer-to-peer vif add sent to dongle.
59 * @BRCMF_P2P_STATUS_IF_DEL: NOT-USED?
60 * @BRCMF_P2P_STATUS_IF_DELETING: peer-to-peer vif delete sent to dongle.
61 * @BRCMF_P2P_STATUS_IF_CHANGING: peer-to-peer vif change sent to dongle.
62 * @BRCMF_P2P_STATUS_IF_CHANGED: peer-to-peer vif change completed on dongle.
63 * @BRCMF_P2P_STATUS_LISTEN_EXPIRED: listen duration expired.
64 * @BRCMF_P2P_STATUS_ACTION_TX_COMPLETED: action frame tx completed.
65 * @BRCMF_P2P_STATUS_ACTION_TX_NOACK: action frame tx not acked.
66 * @BRCMF_P2P_STATUS_GO_NEG_PHASE: P2P GO negotiation ongoing.
67 */
68 enum brcmf_p2p_status {
69 BRCMF_P2P_STATUS_IF_ADD = 0,
70 BRCMF_P2P_STATUS_IF_DEL,
71 BRCMF_P2P_STATUS_IF_DELETING,
72 BRCMF_P2P_STATUS_IF_CHANGING,
73 BRCMF_P2P_STATUS_IF_CHANGED,
74 BRCMF_P2P_STATUS_LISTEN_EXPIRED,
75 BRCMF_P2P_STATUS_ACTION_TX_COMPLETED,
76 BRCMF_P2P_STATUS_ACTION_TX_NOACK,
77 BRCMF_P2P_STATUS_GO_NEG_PHASE
78 };
79
80 /**
81 * struct brcmf_p2p_info - p2p specific driver information.
82 *
83 * @cfg: driver private data for cfg80211 interface.
84 * @status: status of P2P (see enum brcmf_p2p_status).
85 * @dev_addr: P2P device address.
86 * @int_addr: P2P interface address.
87 * @bss_idx: informate for P2P bss types.
88 * @listen_timer: timer for @WL_P2P_DISC_ST_LISTEN discover state.
89 * @ssid: ssid for P2P GO.
90 * @listen_channel: channel for @WL_P2P_DISC_ST_LISTEN discover state.
91 */
92 struct brcmf_p2p_info {
93 struct brcmf_cfg80211_info *cfg;
94 unsigned long status;
95 u8 dev_addr[ETH_ALEN];
96 u8 int_addr[ETH_ALEN];
97 struct p2p_bss bss_idx[P2PAPI_BSSCFG_MAX];
98 struct timer_list listen_timer;
99 struct brcmf_ssid ssid;
100 u8 listen_channel;
101 };
102
103 void brcmf_p2p_attach(struct brcmf_cfg80211_info *cfg);
104 void brcmf_p2p_detach(struct brcmf_p2p_info *p2p);
105 struct wireless_dev *brcmf_p2p_add_vif(struct wiphy *wiphy, const char *name,
106 enum nl80211_iftype type, u32 *flags,
107 struct vif_params *params);
108 int brcmf_p2p_del_vif(struct wiphy *wiphy, struct wireless_dev *wdev);
109 int brcmf_p2p_start_device(struct wiphy *wiphy, struct wireless_dev *wdev);
110 void brcmf_p2p_stop_device(struct wiphy *wiphy, struct wireless_dev *wdev);
111 int brcmf_p2p_scan_prep(struct wiphy *wiphy,
112 struct cfg80211_scan_request *request);
113
114 #endif /* WL_CFGP2P_H_ */
This page took 0.034078 seconds and 5 git commands to generate.