2 * This file is part of wl1271
4 * Copyright (C) 2009-2010 Nokia Corporation
6 * Contact: Luciano Coelho <luciano.coelho@nokia.com>
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License
10 * version 2 as published by the Free Software Foundation.
12 * This program is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
29 int wl1271_scan(struct wl1271 *wl, struct ieee80211_vif *vif,
30 const u8 *ssid, size_t ssid_len,
31 struct cfg80211_scan_request *req);
32 int wl1271_scan_stop(struct wl1271 *wl);
33 int wl1271_scan_build_probe_req(struct wl1271 *wl,
34 const u8 *ssid, size_t ssid_len,
35 const u8 *ie, size_t ie_len, u8 band);
36 void wl1271_scan_stm(struct wl1271 *wl, struct ieee80211_vif *vif);
37 void wl1271_scan_complete_work(struct work_struct *work);
38 int wl1271_scan_sched_scan_config(struct wl1271 *wl,
39 struct wl12xx_vif *wlvif,
40 struct cfg80211_sched_scan_request *req,
41 struct ieee80211_sched_scan_ies *ies);
42 int wl1271_scan_sched_scan_start(struct wl1271 *wl, struct wl12xx_vif *wlvif);
43 void wl1271_scan_sched_scan_stop(struct wl1271 *wl);
44 void wl1271_scan_sched_scan_results(struct wl1271 *wl);
46 #define WL1271_SCAN_MAX_CHANNELS 24
47 #define WL1271_SCAN_DEFAULT_TAG 1
48 #define WL1271_SCAN_CURRENT_TX_PWR 0
49 #define WL1271_SCAN_OPT_ACTIVE 0
50 #define WL1271_SCAN_OPT_PASSIVE 1
51 #define WL1271_SCAN_OPT_SPLIT_SCAN 2
52 #define WL1271_SCAN_OPT_PRIORITY_HIGH 4
53 /* scan even if we fail to enter psm */
54 #define WL1271_SCAN_OPT_FORCE 8
55 #define WL1271_SCAN_BAND_2_4_GHZ 0
56 #define WL1271_SCAN_BAND_5_GHZ 1
58 #define WL1271_SCAN_TIMEOUT 30000 /* msec */
61 WL1271_SCAN_STATE_IDLE,
62 WL1271_SCAN_STATE_2GHZ_ACTIVE,
63 WL1271_SCAN_STATE_2GHZ_PASSIVE,
64 WL1271_SCAN_STATE_5GHZ_ACTIVE,
65 WL1271_SCAN_STATE_5GHZ_PASSIVE,
66 WL1271_SCAN_STATE_DONE
69 struct basic_scan_params {
70 /* Scan option flags (WL1271_SCAN_OPT_*) */
73 /* Number of scan channels in the list (maximum 30) */
75 /* This field indicates the number of probe requests to send
76 per channel for an active scan */
82 /* Rate bit field for sending the probes */
85 u8 ssid[IEEE80211_MAX_SSID_LEN];
93 struct basic_scan_channel_params {
94 /* Duration in TU to wait for frames on a channel for active scan */
102 /* FW internal use only! */
104 u8 activity_detected;
108 struct wl1271_cmd_scan {
109 struct wl1271_cmd_header header;
111 struct basic_scan_params params;
112 struct basic_scan_channel_params channels[WL1271_SCAN_MAX_CHANNELS];
114 /* src mac address */
119 struct wl1271_cmd_trigger_scan_to {
120 struct wl1271_cmd_header header;
125 #define MAX_CHANNELS_2GHZ 14
126 #define MAX_CHANNELS_5GHZ 23
127 #define MAX_CHANNELS_4GHZ 4
129 #define SCAN_MAX_CYCLE_INTERVALS 16
130 #define SCAN_MAX_BANDS 3
133 SCAN_SSID_FILTER_ANY = 0,
134 SCAN_SSID_FILTER_SPECIFIC = 1,
135 SCAN_SSID_FILTER_LIST = 2,
136 SCAN_SSID_FILTER_DISABLED = 3
140 SCAN_BSS_TYPE_INDEPENDENT,
141 SCAN_BSS_TYPE_INFRASTRUCTURE,
145 #define SCAN_CHANNEL_FLAGS_DFS BIT(0)
146 #define SCAN_CHANNEL_FLAGS_DFS_ENABLED BIT(1)
148 struct conn_scan_ch_params {
151 __le16 passive_duration;
156 /* bit 0: DFS channel; bit 1: DFS enabled */
162 struct wl1271_cmd_sched_scan_config {
163 struct wl1271_cmd_header header;
165 __le32 intervals[SCAN_MAX_CYCLE_INTERVALS];
167 s8 rssi_threshold; /* for filtering (in dBm) */
168 s8 snr_threshold; /* for filtering (in dB) */
170 u8 cycles; /* maximum number of scan cycles */
171 u8 report_after; /* report when this number of results are received */
172 u8 terminate; /* stop scanning after reporting */
175 u8 bss_type; /* for filtering */
178 u8 ssid_len; /* For SCAN_SSID_FILTER_SPECIFIC */
179 u8 ssid[IEEE80211_MAX_SSID_LEN];
181 u8 n_probe_reqs; /* Number of probes requests per channel */
183 u8 passive[SCAN_MAX_BANDS];
184 u8 active[SCAN_MAX_BANDS];
190 struct conn_scan_ch_params channels_2[MAX_CHANNELS_2GHZ];
191 struct conn_scan_ch_params channels_5[MAX_CHANNELS_5GHZ];
192 struct conn_scan_ch_params channels_4[MAX_CHANNELS_4GHZ];
196 #define SCHED_SCAN_MAX_SSIDS 16
199 SCAN_SSID_TYPE_PUBLIC = 0,
200 SCAN_SSID_TYPE_HIDDEN = 1,
206 u8 ssid[IEEE80211_MAX_SSID_LEN];
210 struct wl1271_cmd_sched_scan_ssid_list {
211 struct wl1271_cmd_header header;
214 struct wl1271_ssid ssids[SCHED_SCAN_MAX_SSIDS];
218 struct wl1271_cmd_sched_scan_start {
219 struct wl1271_cmd_header header;
225 struct wl1271_cmd_sched_scan_stop {
226 struct wl1271_cmd_header header;
233 #endif /* __WL1271_SCAN_H__ */