blob: b896f5956d9ec206816333ef55933eb87ce201d0 [file] [log] [blame]
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001/*
2 * This file is part of wl1271
3 *
Juuso Oikarinen8bf29b02010-02-18 13:25:51 +02004 * Copyright (C) 2008-2010 Nokia Corporation
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03005 *
6 * Contact: Luciano Coelho <luciano.coelho@nokia.com>
7 *
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.
11 *
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.
16 *
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
20 * 02110-1301 USA
21 *
22 */
23
24#include <linux/module.h>
Luciano Coelhof5fc0f82009-08-06 16:25:28 +030025#include <linux/firmware.h>
26#include <linux/delay.h>
Luciano Coelhof5fc0f82009-08-06 16:25:28 +030027#include <linux/spi/spi.h>
28#include <linux/crc32.h>
29#include <linux/etherdevice.h>
Juuso Oikarinen1fba4972009-10-08 21:56:32 +030030#include <linux/vmalloc.h>
Juuso Oikarinena1dd8182010-03-18 12:26:31 +020031#include <linux/platform_device.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090032#include <linux/slab.h>
Ido Yariv341b7cd2011-03-31 10:07:01 +020033#include <linux/wl12xx.h>
Ido Yariv95dac04f2011-06-06 14:57:06 +030034#include <linux/sched.h>
Luciano Coelhof5fc0f82009-08-06 16:25:28 +030035
Shahar Levi00d20102010-11-08 11:20:10 +000036#include "wl12xx.h"
Luciano Coelhof5fc0f82009-08-06 16:25:28 +030037#include "wl12xx_80211.h"
Shahar Levi00d20102010-11-08 11:20:10 +000038#include "reg.h"
39#include "io.h"
40#include "event.h"
41#include "tx.h"
42#include "rx.h"
43#include "ps.h"
44#include "init.h"
45#include "debugfs.h"
46#include "cmd.h"
47#include "boot.h"
48#include "testmode.h"
49#include "scan.h"
Luciano Coelhof5fc0f82009-08-06 16:25:28 +030050
Juuso Oikarinen9ccd9212009-12-11 15:41:01 +020051#define WL1271_BOOT_RETRIES 3
52
Juuso Oikarinen8a080482009-10-13 12:47:44 +030053static struct conf_drv_settings default_conf = {
54 .sg = {
Arik Nemtsov801f8702011-04-18 14:15:20 +030055 .sta_params = {
Juuso Oikarinen1b00f542010-03-18 12:26:30 +020056 [CONF_SG_BT_PER_THRESHOLD] = 7500,
57 [CONF_SG_HV3_MAX_OVERRIDE] = 0,
58 [CONF_SG_BT_NFS_SAMPLE_INTERVAL] = 400,
Luciano Coelhod9482e22011-03-21 17:58:32 +020059 [CONF_SG_BT_LOAD_RATIO] = 200,
Juuso Oikarinen8d2ef7b2010-07-08 17:50:03 +030060 [CONF_SG_AUTO_PS_MODE] = 1,
Juuso Oikarinen1b00f542010-03-18 12:26:30 +020061 [CONF_SG_AUTO_SCAN_PROBE_REQ] = 170,
62 [CONF_SG_ACTIVE_SCAN_DURATION_FACTOR_HV3] = 50,
63 [CONF_SG_ANTENNA_CONFIGURATION] = 0,
64 [CONF_SG_BEACON_MISS_PERCENT] = 60,
65 [CONF_SG_RATE_ADAPT_THRESH] = 12,
66 [CONF_SG_RATE_ADAPT_SNR] = 0,
67 [CONF_SG_WLAN_PS_BT_ACL_MASTER_MIN_BR] = 10,
68 [CONF_SG_WLAN_PS_BT_ACL_MASTER_MAX_BR] = 30,
69 [CONF_SG_WLAN_PS_MAX_BT_ACL_MASTER_BR] = 8,
70 [CONF_SG_WLAN_PS_BT_ACL_SLAVE_MIN_BR] = 20,
71 [CONF_SG_WLAN_PS_BT_ACL_SLAVE_MAX_BR] = 50,
72 /* Note: with UPSD, this should be 4 */
73 [CONF_SG_WLAN_PS_MAX_BT_ACL_SLAVE_BR] = 8,
74 [CONF_SG_WLAN_PS_BT_ACL_MASTER_MIN_EDR] = 7,
75 [CONF_SG_WLAN_PS_BT_ACL_MASTER_MAX_EDR] = 25,
76 [CONF_SG_WLAN_PS_MAX_BT_ACL_MASTER_EDR] = 20,
77 /* Note: with UPDS, this should be 15 */
78 [CONF_SG_WLAN_PS_BT_ACL_SLAVE_MIN_EDR] = 8,
79 /* Note: with UPDS, this should be 50 */
80 [CONF_SG_WLAN_PS_BT_ACL_SLAVE_MAX_EDR] = 40,
81 /* Note: with UPDS, this should be 10 */
82 [CONF_SG_WLAN_PS_MAX_BT_ACL_SLAVE_EDR] = 20,
83 [CONF_SG_RXT] = 1200,
84 [CONF_SG_TXT] = 1000,
85 [CONF_SG_ADAPTIVE_RXT_TXT] = 1,
86 [CONF_SG_PS_POLL_TIMEOUT] = 10,
87 [CONF_SG_UPSD_TIMEOUT] = 10,
88 [CONF_SG_WLAN_ACTIVE_BT_ACL_MASTER_MIN_EDR] = 7,
89 [CONF_SG_WLAN_ACTIVE_BT_ACL_MASTER_MAX_EDR] = 15,
90 [CONF_SG_WLAN_ACTIVE_MAX_BT_ACL_MASTER_EDR] = 15,
91 [CONF_SG_WLAN_ACTIVE_BT_ACL_SLAVE_MIN_EDR] = 8,
92 [CONF_SG_WLAN_ACTIVE_BT_ACL_SLAVE_MAX_EDR] = 20,
93 [CONF_SG_WLAN_ACTIVE_MAX_BT_ACL_SLAVE_EDR] = 15,
94 [CONF_SG_WLAN_ACTIVE_BT_ACL_MIN_BR] = 20,
95 [CONF_SG_WLAN_ACTIVE_BT_ACL_MAX_BR] = 50,
96 [CONF_SG_WLAN_ACTIVE_MAX_BT_ACL_BR] = 10,
97 [CONF_SG_PASSIVE_SCAN_DURATION_FACTOR_HV3] = 200,
98 [CONF_SG_PASSIVE_SCAN_DURATION_FACTOR_A2DP] = 800,
99 [CONF_SG_PASSIVE_SCAN_A2DP_BT_TIME] = 75,
100 [CONF_SG_PASSIVE_SCAN_A2DP_WLAN_TIME] = 15,
101 [CONF_SG_HV3_MAX_SERVED] = 6,
102 [CONF_SG_DHCP_TIME] = 5000,
103 [CONF_SG_ACTIVE_SCAN_DURATION_FACTOR_A2DP] = 100,
104 },
Arik Nemtsov801f8702011-04-18 14:15:20 +0300105 .ap_params = {
106 [CONF_SG_BT_PER_THRESHOLD] = 7500,
107 [CONF_SG_HV3_MAX_OVERRIDE] = 0,
108 [CONF_SG_BT_NFS_SAMPLE_INTERVAL] = 400,
109 [CONF_SG_BT_LOAD_RATIO] = 50,
110 [CONF_SG_AUTO_PS_MODE] = 1,
111 [CONF_SG_AUTO_SCAN_PROBE_REQ] = 170,
112 [CONF_SG_ACTIVE_SCAN_DURATION_FACTOR_HV3] = 50,
113 [CONF_SG_ANTENNA_CONFIGURATION] = 0,
114 [CONF_SG_BEACON_MISS_PERCENT] = 60,
115 [CONF_SG_RATE_ADAPT_THRESH] = 64,
116 [CONF_SG_RATE_ADAPT_SNR] = 1,
117 [CONF_SG_WLAN_PS_BT_ACL_MASTER_MIN_BR] = 10,
118 [CONF_SG_WLAN_PS_BT_ACL_MASTER_MAX_BR] = 25,
119 [CONF_SG_WLAN_PS_MAX_BT_ACL_MASTER_BR] = 25,
120 [CONF_SG_WLAN_PS_BT_ACL_SLAVE_MIN_BR] = 20,
121 [CONF_SG_WLAN_PS_BT_ACL_SLAVE_MAX_BR] = 25,
122 [CONF_SG_WLAN_PS_MAX_BT_ACL_SLAVE_BR] = 25,
123 [CONF_SG_WLAN_PS_BT_ACL_MASTER_MIN_EDR] = 7,
124 [CONF_SG_WLAN_PS_BT_ACL_MASTER_MAX_EDR] = 25,
125 [CONF_SG_WLAN_PS_MAX_BT_ACL_MASTER_EDR] = 25,
126 [CONF_SG_WLAN_PS_BT_ACL_SLAVE_MIN_EDR] = 8,
127 [CONF_SG_WLAN_PS_BT_ACL_SLAVE_MAX_EDR] = 25,
128 [CONF_SG_WLAN_PS_MAX_BT_ACL_SLAVE_EDR] = 25,
129 [CONF_SG_RXT] = 1200,
130 [CONF_SG_TXT] = 1000,
131 [CONF_SG_ADAPTIVE_RXT_TXT] = 1,
132 [CONF_SG_PS_POLL_TIMEOUT] = 10,
133 [CONF_SG_UPSD_TIMEOUT] = 10,
134 [CONF_SG_WLAN_ACTIVE_BT_ACL_MASTER_MIN_EDR] = 7,
135 [CONF_SG_WLAN_ACTIVE_BT_ACL_MASTER_MAX_EDR] = 15,
136 [CONF_SG_WLAN_ACTIVE_MAX_BT_ACL_MASTER_EDR] = 15,
137 [CONF_SG_WLAN_ACTIVE_BT_ACL_SLAVE_MIN_EDR] = 8,
138 [CONF_SG_WLAN_ACTIVE_BT_ACL_SLAVE_MAX_EDR] = 20,
139 [CONF_SG_WLAN_ACTIVE_MAX_BT_ACL_SLAVE_EDR] = 15,
140 [CONF_SG_WLAN_ACTIVE_BT_ACL_MIN_BR] = 20,
141 [CONF_SG_WLAN_ACTIVE_BT_ACL_MAX_BR] = 50,
142 [CONF_SG_WLAN_ACTIVE_MAX_BT_ACL_BR] = 10,
143 [CONF_SG_PASSIVE_SCAN_DURATION_FACTOR_HV3] = 200,
144 [CONF_SG_PASSIVE_SCAN_DURATION_FACTOR_A2DP] = 800,
145 [CONF_SG_PASSIVE_SCAN_A2DP_BT_TIME] = 75,
146 [CONF_SG_PASSIVE_SCAN_A2DP_WLAN_TIME] = 15,
147 [CONF_SG_HV3_MAX_SERVED] = 6,
148 [CONF_SG_DHCP_TIME] = 5000,
149 [CONF_SG_ACTIVE_SCAN_DURATION_FACTOR_A2DP] = 100,
150 [CONF_SG_TEMP_PARAM_1] = 0,
151 [CONF_SG_TEMP_PARAM_2] = 0,
152 [CONF_SG_TEMP_PARAM_3] = 0,
153 [CONF_SG_TEMP_PARAM_4] = 0,
154 [CONF_SG_TEMP_PARAM_5] = 0,
155 [CONF_SG_AP_BEACON_MISS_TX] = 3,
156 [CONF_SG_RX_WINDOW_LENGTH] = 6,
157 [CONF_SG_AP_CONNECTION_PROTECTION_TIME] = 50,
158 [CONF_SG_TEMP_PARAM_6] = 1,
159 },
Juuso Oikarinen1b00f542010-03-18 12:26:30 +0200160 .state = CONF_SG_PROTECTIVE,
Juuso Oikarinen8a080482009-10-13 12:47:44 +0300161 },
162 .rx = {
163 .rx_msdu_life_time = 512000,
164 .packet_detection_threshold = 0,
165 .ps_poll_timeout = 15,
166 .upsd_timeout = 15,
Arik Nemtsov5f704d12011-04-18 14:15:21 +0300167 .rts_threshold = IEEE80211_MAX_RTS_THRESHOLD,
Luciano Coelho3ed8f2c2009-12-11 15:40:54 +0200168 .rx_cca_threshold = 0,
169 .irq_blk_threshold = 0xFFFF,
170 .irq_pkt_threshold = 0,
171 .irq_timeout = 600,
Juuso Oikarinen8a080482009-10-13 12:47:44 +0300172 .queue_type = CONF_RX_QUEUE_TYPE_LOW_PRIORITY,
173 },
174 .tx = {
175 .tx_energy_detection = 0,
Arik Nemtsov1e05a812010-10-16 17:44:51 +0200176 .sta_rc_conf = {
Juuso Oikarinenebba60c2010-04-01 11:38:20 +0300177 .enabled_rates = 0,
Juuso Oikarinen8a080482009-10-13 12:47:44 +0300178 .short_retry_limit = 10,
179 .long_retry_limit = 10,
Arik Nemtsov1e05a812010-10-16 17:44:51 +0200180 .aflags = 0,
Juuso Oikarinen8a080482009-10-13 12:47:44 +0300181 },
182 .ac_conf_count = 4,
183 .ac_conf = {
Juuso Oikarinen9987a9d2010-09-01 11:31:12 +0200184 [CONF_TX_AC_BE] = {
Juuso Oikarinen8a080482009-10-13 12:47:44 +0300185 .ac = CONF_TX_AC_BE,
186 .cw_min = 15,
187 .cw_max = 63,
188 .aifsn = 3,
189 .tx_op_limit = 0,
190 },
Juuso Oikarinen9987a9d2010-09-01 11:31:12 +0200191 [CONF_TX_AC_BK] = {
Juuso Oikarinen8a080482009-10-13 12:47:44 +0300192 .ac = CONF_TX_AC_BK,
193 .cw_min = 15,
194 .cw_max = 63,
195 .aifsn = 7,
196 .tx_op_limit = 0,
197 },
Juuso Oikarinen9987a9d2010-09-01 11:31:12 +0200198 [CONF_TX_AC_VI] = {
Juuso Oikarinen8a080482009-10-13 12:47:44 +0300199 .ac = CONF_TX_AC_VI,
200 .cw_min = 15,
201 .cw_max = 63,
202 .aifsn = CONF_TX_AIFS_PIFS,
203 .tx_op_limit = 3008,
204 },
Juuso Oikarinen9987a9d2010-09-01 11:31:12 +0200205 [CONF_TX_AC_VO] = {
Juuso Oikarinen8a080482009-10-13 12:47:44 +0300206 .ac = CONF_TX_AC_VO,
207 .cw_min = 15,
208 .cw_max = 63,
209 .aifsn = CONF_TX_AIFS_PIFS,
210 .tx_op_limit = 1504,
211 },
212 },
Luciano Coelho25eaea302011-05-02 12:37:33 +0300213 .ap_max_tx_retries = 100,
Juuso Oikarinen9987a9d2010-09-01 11:31:12 +0200214 .tid_conf_count = 4,
Juuso Oikarinen8a080482009-10-13 12:47:44 +0300215 .tid_conf = {
Juuso Oikarinen9987a9d2010-09-01 11:31:12 +0200216 [CONF_TX_AC_BE] = {
217 .queue_id = CONF_TX_AC_BE,
218 .channel_type = CONF_CHANNEL_TYPE_EDCF,
Juuso Oikarinen8a080482009-10-13 12:47:44 +0300219 .tsid = CONF_TX_AC_BE,
220 .ps_scheme = CONF_PS_SCHEME_LEGACY,
221 .ack_policy = CONF_ACK_POLICY_LEGACY,
222 .apsd_conf = {0, 0},
223 },
Juuso Oikarinen9987a9d2010-09-01 11:31:12 +0200224 [CONF_TX_AC_BK] = {
225 .queue_id = CONF_TX_AC_BK,
226 .channel_type = CONF_CHANNEL_TYPE_EDCF,
227 .tsid = CONF_TX_AC_BK,
Juuso Oikarinen8a080482009-10-13 12:47:44 +0300228 .ps_scheme = CONF_PS_SCHEME_LEGACY,
229 .ack_policy = CONF_ACK_POLICY_LEGACY,
230 .apsd_conf = {0, 0},
231 },
Juuso Oikarinen9987a9d2010-09-01 11:31:12 +0200232 [CONF_TX_AC_VI] = {
233 .queue_id = CONF_TX_AC_VI,
234 .channel_type = CONF_CHANNEL_TYPE_EDCF,
235 .tsid = CONF_TX_AC_VI,
Juuso Oikarinen8a080482009-10-13 12:47:44 +0300236 .ps_scheme = CONF_PS_SCHEME_LEGACY,
237 .ack_policy = CONF_ACK_POLICY_LEGACY,
238 .apsd_conf = {0, 0},
239 },
Juuso Oikarinen9987a9d2010-09-01 11:31:12 +0200240 [CONF_TX_AC_VO] = {
241 .queue_id = CONF_TX_AC_VO,
242 .channel_type = CONF_CHANNEL_TYPE_EDCF,
243 .tsid = CONF_TX_AC_VO,
Juuso Oikarinen8a080482009-10-13 12:47:44 +0300244 .ps_scheme = CONF_PS_SCHEME_LEGACY,
245 .ack_policy = CONF_ACK_POLICY_LEGACY,
246 .apsd_conf = {0, 0},
247 },
Juuso Oikarinen8a080482009-10-13 12:47:44 +0300248 },
249 .frag_threshold = IEEE80211_MAX_FRAG_THRESHOLD,
Luciano Coelho3ed8f2c2009-12-11 15:40:54 +0200250 .tx_compl_timeout = 700,
Juuso Oikarinenebba60c2010-04-01 11:38:20 +0300251 .tx_compl_threshold = 4,
252 .basic_rate = CONF_HW_BIT_RATE_1MBPS,
253 .basic_rate_5 = CONF_HW_BIT_RATE_6MBPS,
Arik Nemtsov1e05a812010-10-16 17:44:51 +0200254 .tmpl_short_retry_limit = 10,
255 .tmpl_long_retry_limit = 10,
Juuso Oikarinen8a080482009-10-13 12:47:44 +0300256 },
257 .conn = {
258 .wake_up_event = CONF_WAKE_UP_EVENT_DTIM,
Juuso Oikarinen50c500a2010-04-01 11:38:22 +0300259 .listen_interval = 1,
Juuso Oikarinen8a080482009-10-13 12:47:44 +0300260 .bcn_filt_mode = CONF_BCN_FILT_MODE_ENABLED,
Shahar Levibc76b942011-05-11 11:14:22 +0300261 .bcn_filt_ie_count = 2,
Juuso Oikarinen8a080482009-10-13 12:47:44 +0300262 .bcn_filt_ie = {
263 [0] = {
264 .ie = WLAN_EID_CHANNEL_SWITCH,
265 .rule = CONF_BCN_RULE_PASS_ON_APPEARANCE,
Shahar Levibc76b942011-05-11 11:14:22 +0300266 },
267 [1] = {
268 .ie = WLAN_EID_HT_INFORMATION,
269 .rule = CONF_BCN_RULE_PASS_ON_CHANGE,
270 },
Juuso Oikarinen8a080482009-10-13 12:47:44 +0300271 },
Luciano Coelho3ed8f2c2009-12-11 15:40:54 +0200272 .synch_fail_thold = 10,
Juuso Oikarinen8a080482009-10-13 12:47:44 +0300273 .bss_lose_timeout = 100,
274 .beacon_rx_timeout = 10000,
275 .broadcast_timeout = 20000,
276 .rx_broadcast_in_ps = 1,
Juuso Oikarinen90494a92010-07-08 17:50:00 +0300277 .ps_poll_threshold = 10,
278 .ps_poll_recovery_period = 700,
Juuso Oikarinen11f70f92009-10-13 12:47:46 +0300279 .bet_enable = CONF_BET_MODE_ENABLE,
Ohad Ben-Cohen958b20e2011-03-14 18:53:10 +0200280 .bet_max_consecutive = 50,
Juuso Oikarinen8eab7b42010-09-24 03:10:11 +0200281 .psm_entry_retries = 5,
Shahar Levi23708412011-04-13 14:52:50 +0300282 .psm_exit_retries = 16,
Juuso Oikarinen8eab7b42010-09-24 03:10:11 +0200283 .psm_entry_nullfunc_retries = 3,
284 .psm_entry_hangover_period = 1,
Juuso Oikarinen50c500a2010-04-01 11:38:22 +0300285 .keep_alive_interval = 55000,
286 .max_listen_interval = 20,
Juuso Oikarinen8a080482009-10-13 12:47:44 +0300287 },
Luciano Coelho6e92b412009-12-11 15:40:50 +0200288 .itrim = {
289 .enable = false,
290 .timeout = 50000,
Juuso Oikarinen38ad2d82009-12-11 15:41:08 +0200291 },
292 .pm_config = {
293 .host_clk_settling_time = 5000,
294 .host_fast_wakeup_support = false
Juuso Oikarinen00236aed2010-04-09 11:07:30 +0300295 },
296 .roam_trigger = {
Juuso Oikarinen00236aed2010-04-09 11:07:30 +0300297 .trigger_pacing = 1,
298 .avg_weight_rssi_beacon = 20,
299 .avg_weight_rssi_data = 10,
300 .avg_weight_snr_beacon = 20,
Levi, Shahar4b7fac72011-01-23 07:27:22 +0100301 .avg_weight_snr_data = 10,
Juuso Oikarinenbea39d62010-09-21 08:14:31 +0200302 },
303 .scan = {
304 .min_dwell_time_active = 7500,
305 .max_dwell_time_active = 30000,
Juuso Oikarinenea45b2c2011-01-24 07:01:54 +0100306 .min_dwell_time_passive = 100000,
307 .max_dwell_time_passive = 100000,
Juuso Oikarinenbea39d62010-09-21 08:14:31 +0200308 .num_probe_reqs = 2,
309 },
Luciano Coelho3a9d60e2011-05-10 14:06:31 +0300310 .sched_scan = {
311 /* sched_scan requires dwell times in TU instead of TU/1000 */
312 .min_dwell_time_active = 8,
313 .max_dwell_time_active = 30,
314 .dwell_time_passive = 100,
Luciano Coelho50a66d72011-05-27 15:34:47 +0300315 .dwell_time_dfs = 150,
Luciano Coelho3a9d60e2011-05-10 14:06:31 +0300316 .num_probe_reqs = 2,
317 .rssi_threshold = -90,
318 .snr_threshold = 0,
319 },
Juuso Oikarinen644a4862010-10-05 13:11:56 +0200320 .rf = {
321 .tx_per_channel_power_compensation_2 = {
322 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
323 },
324 .tx_per_channel_power_compensation_5 = {
325 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
326 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
327 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
328 },
329 },
Levi, Shahar4b7fac72011-01-23 07:27:22 +0100330 .ht = {
331 .tx_ba_win_size = 64,
332 .inactivity_timeout = 10000,
333 },
Shahar Levi13b107d2011-03-06 16:32:12 +0200334 .mem_wl127x = {
Eliad Pellerfe5ef092011-02-02 09:59:36 +0200335 .num_stations = 1,
336 .ssid_profiles = 1,
337 .rx_block_num = 70,
338 .tx_min_block_num = 40,
Ido Yariv4cf557f2011-04-18 16:45:10 +0300339 .dynamic_memory = 1,
Ido Yarivb16d4b62011-03-01 15:14:44 +0200340 .min_req_tx_blocks = 100,
Eliad Pellerc8bde242011-02-02 09:59:35 +0200341 .min_req_rx_blocks = 22,
342 .tx_min = 27,
Shahar Levi13b107d2011-03-06 16:32:12 +0200343 },
344 .mem_wl128x = {
345 .num_stations = 1,
346 .ssid_profiles = 1,
347 .rx_block_num = 40,
348 .tx_min_block_num = 40,
349 .dynamic_memory = 1,
350 .min_req_tx_blocks = 45,
351 .min_req_rx_blocks = 22,
352 .tx_min = 27,
353 },
Shahar Leviff868432011-04-11 15:41:46 +0300354 .fm_coex = {
355 .enable = true,
356 .swallow_period = 5,
357 .n_divider_fref_set_1 = 0xff, /* default */
358 .n_divider_fref_set_2 = 12,
359 .m_divider_fref_set_1 = 148,
360 .m_divider_fref_set_2 = 0xffff, /* default */
361 .coex_pll_stabilization_time = 0xffffffff, /* default */
362 .ldo_stabilization_time = 0xffff, /* default */
363 .fm_disturbed_band_margin = 0xff, /* default */
364 .swallow_clk_diff = 0xff, /* default */
365 },
Eliad Pellerf84673d2011-05-15 11:10:28 +0300366 .rx_streaming = {
367 .duration = 150,
368 .queues = 0x1,
369 .interval = 20,
Eliad Peller77ddaa12011-05-15 11:10:29 +0300370 .always = 0,
Eliad Pellerf84673d2011-05-15 11:10:28 +0300371 },
Ido Yariv95dac04f2011-06-06 14:57:06 +0300372 .fwlog = {
373 .mode = WL12XX_FWLOG_ON_DEMAND,
374 .mem_blocks = 2,
375 .severity = 0,
376 .timestamp = WL12XX_FWLOG_TIMESTAMP_DISABLED,
377 .output = WL12XX_FWLOG_OUTPUT_HOST,
378 .threshold = 0,
379 },
Luciano Coelhoafb7d3c2011-04-01 20:48:02 +0300380 .hci_io_ds = HCI_IO_DS_6MA,
Juuso Oikarinen8a080482009-10-13 12:47:44 +0300381};
382
Ido Yariv95dac04f2011-06-06 14:57:06 +0300383static char *fwlog_param;
384
Arik Nemtsov7dece1c2011-04-18 14:15:28 +0300385static void __wl1271_op_remove_interface(struct wl1271 *wl,
386 bool reset_tx_queues);
Arik Nemtsov7f179b42010-10-16 21:39:06 +0200387static void wl1271_free_ap_keys(struct wl1271 *wl);
Juuso Oikarinen52b0e7a2010-09-21 06:23:31 +0200388
389
Juuso Oikarinena1dd8182010-03-18 12:26:31 +0200390static void wl1271_device_release(struct device *dev)
391{
392
393}
394
395static struct platform_device wl1271_device = {
396 .name = "wl1271",
397 .id = -1,
398
399 /* device model insists to have a release function */
400 .dev = {
401 .release = wl1271_device_release,
402 },
403};
404
Juuso Oikarinenf9f774c2011-03-21 10:43:36 +0200405static DEFINE_MUTEX(wl_list_mutex);
Juuso Oikarinen01c09162009-10-13 12:47:55 +0300406static LIST_HEAD(wl_list);
407
Eliad Pelleref4b29e2011-06-06 13:03:12 +0300408static int wl1271_check_operstate(struct wl1271 *wl, unsigned char operstate)
409{
410 int ret;
411 if (operstate != IF_OPER_UP)
412 return 0;
413
414 if (test_and_set_bit(WL1271_FLAG_STA_STATE_SENT, &wl->flags))
415 return 0;
416
417 ret = wl1271_cmd_set_sta_state(wl);
418 if (ret < 0)
419 return ret;
420
421 wl1271_info("Association completed.");
422 return 0;
423}
Juuso Oikarinenc2c192a2010-07-27 03:30:09 +0300424static int wl1271_dev_notify(struct notifier_block *me, unsigned long what,
425 void *arg)
426{
427 struct net_device *dev = arg;
428 struct wireless_dev *wdev;
429 struct wiphy *wiphy;
430 struct ieee80211_hw *hw;
431 struct wl1271 *wl;
432 struct wl1271 *wl_temp;
433 int ret = 0;
434
435 /* Check that this notification is for us. */
436 if (what != NETDEV_CHANGE)
437 return NOTIFY_DONE;
438
439 wdev = dev->ieee80211_ptr;
440 if (wdev == NULL)
441 return NOTIFY_DONE;
442
443 wiphy = wdev->wiphy;
444 if (wiphy == NULL)
445 return NOTIFY_DONE;
446
447 hw = wiphy_priv(wiphy);
448 if (hw == NULL)
449 return NOTIFY_DONE;
450
451 wl_temp = hw->priv;
Juuso Oikarinenf9f774c2011-03-21 10:43:36 +0200452 mutex_lock(&wl_list_mutex);
Juuso Oikarinenc2c192a2010-07-27 03:30:09 +0300453 list_for_each_entry(wl, &wl_list, list) {
454 if (wl == wl_temp)
455 break;
456 }
Juuso Oikarinenf9f774c2011-03-21 10:43:36 +0200457 mutex_unlock(&wl_list_mutex);
Juuso Oikarinenc2c192a2010-07-27 03:30:09 +0300458 if (wl != wl_temp)
459 return NOTIFY_DONE;
460
461 mutex_lock(&wl->mutex);
462
463 if (wl->state == WL1271_STATE_OFF)
464 goto out;
465
466 if (!test_bit(WL1271_FLAG_STA_ASSOCIATED, &wl->flags))
467 goto out;
468
Ido Yariva6208652011-03-01 15:14:41 +0200469 ret = wl1271_ps_elp_wakeup(wl);
Juuso Oikarinenc2c192a2010-07-27 03:30:09 +0300470 if (ret < 0)
471 goto out;
472
Eliad Pelleref4b29e2011-06-06 13:03:12 +0300473 wl1271_check_operstate(wl, dev->operstate);
Juuso Oikarinenc2c192a2010-07-27 03:30:09 +0300474
475 wl1271_ps_elp_sleep(wl);
476
477out:
478 mutex_unlock(&wl->mutex);
479
480 return NOTIFY_OK;
481}
482
Juuso Oikarinenb7417d92010-11-10 11:27:19 +0100483static int wl1271_reg_notify(struct wiphy *wiphy,
Luciano Coelho573c67c2010-11-26 13:44:59 +0200484 struct regulatory_request *request)
485{
Juuso Oikarinenb7417d92010-11-10 11:27:19 +0100486 struct ieee80211_supported_band *band;
487 struct ieee80211_channel *ch;
488 int i;
489
490 band = wiphy->bands[IEEE80211_BAND_5GHZ];
491 for (i = 0; i < band->n_channels; i++) {
492 ch = &band->channels[i];
493 if (ch->flags & IEEE80211_CHAN_DISABLED)
494 continue;
495
496 if (ch->flags & IEEE80211_CHAN_RADAR)
497 ch->flags |= IEEE80211_CHAN_NO_IBSS |
498 IEEE80211_CHAN_PASSIVE_SCAN;
499
500 }
501
502 return 0;
503}
504
Eliad Peller77ddaa12011-05-15 11:10:29 +0300505static int wl1271_set_rx_streaming(struct wl1271 *wl, bool enable)
506{
507 int ret = 0;
508
509 /* we should hold wl->mutex */
510 ret = wl1271_acx_ps_rx_streaming(wl, enable);
511 if (ret < 0)
512 goto out;
513
514 if (enable)
515 set_bit(WL1271_FLAG_RX_STREAMING_STARTED, &wl->flags);
516 else
517 clear_bit(WL1271_FLAG_RX_STREAMING_STARTED, &wl->flags);
518out:
519 return ret;
520}
521
522/*
523 * this function is being called when the rx_streaming interval
524 * has beed changed or rx_streaming should be disabled
525 */
526int wl1271_recalc_rx_streaming(struct wl1271 *wl)
527{
528 int ret = 0;
529 int period = wl->conf.rx_streaming.interval;
530
531 /* don't reconfigure if rx_streaming is disabled */
532 if (!test_bit(WL1271_FLAG_RX_STREAMING_STARTED, &wl->flags))
533 goto out;
534
535 /* reconfigure/disable according to new streaming_period */
536 if (period &&
537 test_bit(WL1271_FLAG_STA_ASSOCIATED, &wl->flags) &&
538 (wl->conf.rx_streaming.always ||
539 test_bit(WL1271_FLAG_SOFT_GEMINI, &wl->flags)))
540 ret = wl1271_set_rx_streaming(wl, true);
541 else {
542 ret = wl1271_set_rx_streaming(wl, false);
543 /* don't cancel_work_sync since we might deadlock */
544 del_timer_sync(&wl->rx_streaming_timer);
545 }
546out:
547 return ret;
548}
549
550static void wl1271_rx_streaming_enable_work(struct work_struct *work)
551{
552 int ret;
553 struct wl1271 *wl =
554 container_of(work, struct wl1271, rx_streaming_enable_work);
555
556 mutex_lock(&wl->mutex);
557
558 if (test_bit(WL1271_FLAG_RX_STREAMING_STARTED, &wl->flags) ||
559 !test_bit(WL1271_FLAG_STA_ASSOCIATED, &wl->flags) ||
560 (!wl->conf.rx_streaming.always &&
561 !test_bit(WL1271_FLAG_SOFT_GEMINI, &wl->flags)))
562 goto out;
563
564 if (!wl->conf.rx_streaming.interval)
565 goto out;
566
567 ret = wl1271_ps_elp_wakeup(wl);
568 if (ret < 0)
569 goto out;
570
571 ret = wl1271_set_rx_streaming(wl, true);
572 if (ret < 0)
573 goto out_sleep;
574
575 /* stop it after some time of inactivity */
576 mod_timer(&wl->rx_streaming_timer,
577 jiffies + msecs_to_jiffies(wl->conf.rx_streaming.duration));
578
579out_sleep:
580 wl1271_ps_elp_sleep(wl);
581out:
582 mutex_unlock(&wl->mutex);
583}
584
585static void wl1271_rx_streaming_disable_work(struct work_struct *work)
586{
587 int ret;
588 struct wl1271 *wl =
589 container_of(work, struct wl1271, rx_streaming_disable_work);
590
591 mutex_lock(&wl->mutex);
592
593 if (!test_bit(WL1271_FLAG_RX_STREAMING_STARTED, &wl->flags))
594 goto out;
595
596 ret = wl1271_ps_elp_wakeup(wl);
597 if (ret < 0)
598 goto out;
599
600 ret = wl1271_set_rx_streaming(wl, false);
601 if (ret)
602 goto out_sleep;
603
604out_sleep:
605 wl1271_ps_elp_sleep(wl);
606out:
607 mutex_unlock(&wl->mutex);
608}
609
610static void wl1271_rx_streaming_timer(unsigned long data)
611{
612 struct wl1271 *wl = (struct wl1271 *)data;
613 ieee80211_queue_work(wl->hw, &wl->rx_streaming_disable_work);
614}
615
Juuso Oikarinen2b60100b2009-10-13 12:47:39 +0300616static void wl1271_conf_init(struct wl1271 *wl)
617{
Juuso Oikarinen2b60100b2009-10-13 12:47:39 +0300618
619 /*
620 * This function applies the default configuration to the driver. This
621 * function is invoked upon driver load (spi probe.)
622 *
623 * The configuration is stored in a run-time structure in order to
624 * facilitate for run-time adjustment of any of the parameters. Making
625 * changes to the configuration structure will apply the new values on
626 * the next interface up (wl1271_op_start.)
627 */
628
629 /* apply driver default configuration */
Juuso Oikarinen8a080482009-10-13 12:47:44 +0300630 memcpy(&wl->conf, &default_conf, sizeof(default_conf));
Juuso Oikarinen2b60100b2009-10-13 12:47:39 +0300631
Ido Yariv95dac04f2011-06-06 14:57:06 +0300632 /* Adjust settings according to optional module parameters */
633 if (fwlog_param) {
634 if (!strcmp(fwlog_param, "continuous")) {
635 wl->conf.fwlog.mode = WL12XX_FWLOG_CONTINUOUS;
636 } else if (!strcmp(fwlog_param, "ondemand")) {
637 wl->conf.fwlog.mode = WL12XX_FWLOG_ON_DEMAND;
638 } else if (!strcmp(fwlog_param, "dbgpins")) {
639 wl->conf.fwlog.mode = WL12XX_FWLOG_CONTINUOUS;
640 wl->conf.fwlog.output = WL12XX_FWLOG_OUTPUT_DBG_PINS;
641 } else if (!strcmp(fwlog_param, "disable")) {
642 wl->conf.fwlog.mem_blocks = 0;
643 wl->conf.fwlog.output = WL12XX_FWLOG_OUTPUT_NONE;
644 } else {
645 wl1271_error("Unknown fwlog parameter %s", fwlog_param);
646 }
647 }
648}
Juuso Oikarinen2b60100b2009-10-13 12:47:39 +0300649
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300650static int wl1271_plt_init(struct wl1271 *wl)
651{
Luciano Coelho12419cc2010-02-18 13:25:44 +0200652 struct conf_tx_ac_category *conf_ac;
653 struct conf_tx_tid *conf_tid;
654 int ret, i;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300655
Shahar Levi49d750ca2011-03-06 16:32:09 +0200656 if (wl->chip.id == CHIP_ID_1283_PG20)
657 ret = wl128x_cmd_general_parms(wl);
658 else
659 ret = wl1271_cmd_general_parms(wl);
Luciano Coelho4a904062009-11-23 23:22:18 +0200660 if (ret < 0)
Luciano Coelhocc7defa2009-11-23 23:22:16 +0200661 return ret;
662
Shahar Levi49d750ca2011-03-06 16:32:09 +0200663 if (wl->chip.id == CHIP_ID_1283_PG20)
664 ret = wl128x_cmd_radio_parms(wl);
665 else
666 ret = wl1271_cmd_radio_parms(wl);
Luciano Coelho4a904062009-11-23 23:22:18 +0200667 if (ret < 0)
Luciano Coelhocc7defa2009-11-23 23:22:16 +0200668 return ret;
669
Shahar Levi49d750ca2011-03-06 16:32:09 +0200670 if (wl->chip.id != CHIP_ID_1283_PG20) {
671 ret = wl1271_cmd_ext_radio_parms(wl);
672 if (ret < 0)
673 return ret;
674 }
Juuso Oikarinen644a4862010-10-05 13:11:56 +0200675 if (ret < 0)
676 return ret;
677
Shahar Levi48a61472011-03-06 16:32:08 +0200678 /* Chip-specific initializations */
679 ret = wl1271_chip_specific_init(wl);
680 if (ret < 0)
681 return ret;
682
Arik Nemtsove0fe3712010-10-16 18:19:53 +0200683 ret = wl1271_sta_init_templates_config(wl);
Luciano Coelho12419cc2010-02-18 13:25:44 +0200684 if (ret < 0)
685 return ret;
686
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300687 ret = wl1271_acx_init_mem_config(wl);
688 if (ret < 0)
689 return ret;
690
Luciano Coelho12419cc2010-02-18 13:25:44 +0200691 /* PHY layer config */
692 ret = wl1271_init_phy_config(wl);
693 if (ret < 0)
694 goto out_free_memmap;
695
696 ret = wl1271_acx_dco_itrim_params(wl);
697 if (ret < 0)
698 goto out_free_memmap;
699
700 /* Initialize connection monitoring thresholds */
Juuso Oikarinen6ccbb922010-03-26 12:53:23 +0200701 ret = wl1271_acx_conn_monit_params(wl, false);
Luciano Coelho12419cc2010-02-18 13:25:44 +0200702 if (ret < 0)
703 goto out_free_memmap;
704
705 /* Bluetooth WLAN coexistence */
706 ret = wl1271_init_pta(wl);
707 if (ret < 0)
708 goto out_free_memmap;
709
Shahar Leviff868432011-04-11 15:41:46 +0300710 /* FM WLAN coexistence */
711 ret = wl1271_acx_fm_coex(wl);
712 if (ret < 0)
713 goto out_free_memmap;
714
Luciano Coelho12419cc2010-02-18 13:25:44 +0200715 /* Energy detection */
716 ret = wl1271_init_energy_detection(wl);
717 if (ret < 0)
718 goto out_free_memmap;
719
Gery Kahn1ec610e2011-02-01 03:03:08 -0600720 ret = wl1271_acx_sta_mem_cfg(wl);
721 if (ret < 0)
722 goto out_free_memmap;
723
Luciano Coelho12419cc2010-02-18 13:25:44 +0200724 /* Default fragmentation threshold */
Arik Nemtsov68d069c2010-11-08 10:51:07 +0100725 ret = wl1271_acx_frag_threshold(wl, wl->conf.tx.frag_threshold);
Luciano Coelho12419cc2010-02-18 13:25:44 +0200726 if (ret < 0)
727 goto out_free_memmap;
728
Juuso Oikarinen9987a9d2010-09-01 11:31:12 +0200729 /* Default TID/AC configuration */
730 BUG_ON(wl->conf.tx.tid_conf_count != wl->conf.tx.ac_conf_count);
Luciano Coelho12419cc2010-02-18 13:25:44 +0200731 for (i = 0; i < wl->conf.tx.tid_conf_count; i++) {
Juuso Oikarinen9987a9d2010-09-01 11:31:12 +0200732 conf_ac = &wl->conf.tx.ac_conf[i];
733 ret = wl1271_acx_ac_cfg(wl, conf_ac->ac, conf_ac->cw_min,
734 conf_ac->cw_max, conf_ac->aifsn,
735 conf_ac->tx_op_limit);
736 if (ret < 0)
737 goto out_free_memmap;
738
Luciano Coelho12419cc2010-02-18 13:25:44 +0200739 conf_tid = &wl->conf.tx.tid_conf[i];
740 ret = wl1271_acx_tid_cfg(wl, conf_tid->queue_id,
741 conf_tid->channel_type,
742 conf_tid->tsid,
743 conf_tid->ps_scheme,
744 conf_tid->ack_policy,
745 conf_tid->apsd_conf[0],
746 conf_tid->apsd_conf[1]);
747 if (ret < 0)
748 goto out_free_memmap;
749 }
750
Luciano Coelho12419cc2010-02-18 13:25:44 +0200751 /* Enable data path */
Luciano Coelho94210892009-12-11 15:40:55 +0200752 ret = wl1271_cmd_data_path(wl, 1);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300753 if (ret < 0)
Luciano Coelho12419cc2010-02-18 13:25:44 +0200754 goto out_free_memmap;
755
756 /* Configure for CAM power saving (ie. always active) */
757 ret = wl1271_acx_sleep_auth(wl, WL1271_PSM_CAM);
758 if (ret < 0)
759 goto out_free_memmap;
760
761 /* configure PM */
762 ret = wl1271_acx_pm_config(wl);
763 if (ret < 0)
764 goto out_free_memmap;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300765
766 return 0;
Luciano Coelho12419cc2010-02-18 13:25:44 +0200767
768 out_free_memmap:
769 kfree(wl->target_mem_map);
770 wl->target_mem_map = NULL;
771
772 return ret;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300773}
774
Arik Nemtsovb622d992011-02-23 00:22:31 +0200775static void wl1271_irq_ps_regulate_link(struct wl1271 *wl, u8 hlid, u8 tx_blks)
776{
777 bool fw_ps;
778
779 /* only regulate station links */
780 if (hlid < WL1271_AP_STA_HLID_START)
781 return;
782
783 fw_ps = test_bit(hlid, (unsigned long *)&wl->ap_fw_ps_map);
784
785 /*
786 * Wake up from high level PS if the STA is asleep with too little
787 * blocks in FW or if the STA is awake.
788 */
789 if (!fw_ps || tx_blks < WL1271_PS_STA_MAX_BLOCKS)
790 wl1271_ps_link_end(wl, hlid);
791
792 /* Start high-level PS if the STA is asleep with enough blocks in FW */
793 else if (fw_ps && tx_blks >= WL1271_PS_STA_MAX_BLOCKS)
794 wl1271_ps_link_start(wl, hlid, true);
795}
796
797static void wl1271_irq_update_links_status(struct wl1271 *wl,
798 struct wl1271_fw_ap_status *status)
799{
800 u32 cur_fw_ps_map;
801 u8 hlid;
802
803 cur_fw_ps_map = le32_to_cpu(status->link_ps_bitmap);
804 if (wl->ap_fw_ps_map != cur_fw_ps_map) {
805 wl1271_debug(DEBUG_PSM,
806 "link ps prev 0x%x cur 0x%x changed 0x%x",
807 wl->ap_fw_ps_map, cur_fw_ps_map,
808 wl->ap_fw_ps_map ^ cur_fw_ps_map);
809
810 wl->ap_fw_ps_map = cur_fw_ps_map;
811 }
812
813 for (hlid = WL1271_AP_STA_HLID_START; hlid < AP_MAX_LINKS; hlid++) {
814 u8 cnt = status->tx_lnk_free_blks[hlid] -
815 wl->links[hlid].prev_freed_blks;
816
817 wl->links[hlid].prev_freed_blks =
818 status->tx_lnk_free_blks[hlid];
819 wl->links[hlid].allocated_blks -= cnt;
820
821 wl1271_irq_ps_regulate_link(wl, hlid,
822 wl->links[hlid].allocated_blks);
823 }
824}
825
Juuso Oikarinenc15f63b2009-10-12 15:08:50 +0300826static void wl1271_fw_status(struct wl1271 *wl,
Eliad Pellerc8bde242011-02-02 09:59:35 +0200827 struct wl1271_fw_full_status *full_status)
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300828{
Eliad Pellerc8bde242011-02-02 09:59:35 +0200829 struct wl1271_fw_common_status *status = &full_status->common;
Juuso Oikarinenac5e1e32010-02-22 08:38:38 +0200830 struct timespec ts;
Shahar Levi13b107d2011-03-06 16:32:12 +0200831 u32 old_tx_blk_count = wl->tx_blocks_available;
Ido Yarivd2f4d472011-03-31 10:07:00 +0200832 u32 freed_blocks = 0;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300833 int i;
834
Shahar Levi13b107d2011-03-06 16:32:12 +0200835 if (wl->bss_type == BSS_TYPE_AP_BSS) {
Eliad Pellerc8bde242011-02-02 09:59:35 +0200836 wl1271_raw_read(wl, FW_STATUS_ADDR, status,
837 sizeof(struct wl1271_fw_ap_status), false);
Shahar Levi13b107d2011-03-06 16:32:12 +0200838 } else {
Eliad Pellerc8bde242011-02-02 09:59:35 +0200839 wl1271_raw_read(wl, FW_STATUS_ADDR, status,
840 sizeof(struct wl1271_fw_sta_status), false);
Shahar Levi13b107d2011-03-06 16:32:12 +0200841 }
842
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300843 wl1271_debug(DEBUG_IRQ, "intr: 0x%x (fw_rx_counter = %d, "
844 "drv_rx_counter = %d, tx_results_counter = %d)",
845 status->intr,
846 status->fw_rx_counter,
847 status->drv_rx_counter,
848 status->tx_results_counter);
849
850 /* update number of available TX blocks */
851 for (i = 0; i < NUM_TX_QUEUES; i++) {
Ido Yarivd2f4d472011-03-31 10:07:00 +0200852 freed_blocks += le32_to_cpu(status->tx_released_blks[i]) -
853 wl->tx_blocks_freed[i];
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300854
855 wl->tx_blocks_freed[i] =
856 le32_to_cpu(status->tx_released_blks[i]);
Shahar Levi13b107d2011-03-06 16:32:12 +0200857 }
858
Ido Yarivd2f4d472011-03-31 10:07:00 +0200859 wl->tx_allocated_blocks -= freed_blocks;
Shahar Levi13b107d2011-03-06 16:32:12 +0200860
Ido Yarivd2f4d472011-03-31 10:07:00 +0200861 if (wl->bss_type == BSS_TYPE_AP_BSS) {
862 /* Update num of allocated TX blocks per link and ps status */
863 wl1271_irq_update_links_status(wl, &full_status->ap);
864 wl->tx_blocks_available += freed_blocks;
865 } else {
866 int avail = full_status->sta.tx_total - wl->tx_allocated_blocks;
867
868 /*
869 * The FW might change the total number of TX memblocks before
870 * we get a notification about blocks being released. Thus, the
871 * available blocks calculation might yield a temporary result
872 * which is lower than the actual available blocks. Keeping in
873 * mind that only blocks that were allocated can be moved from
874 * TX to RX, tx_blocks_available should never decrease here.
875 */
876 wl->tx_blocks_available = max((int)wl->tx_blocks_available,
877 avail);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300878 }
879
Ido Yariva5225502010-10-12 14:49:10 +0200880 /* if more blocks are available now, tx work can be scheduled */
Shahar Levi13b107d2011-03-06 16:32:12 +0200881 if (wl->tx_blocks_available > old_tx_blk_count)
Ido Yariva5225502010-10-12 14:49:10 +0200882 clear_bit(WL1271_FLAG_FW_TX_BUSY, &wl->flags);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300883
884 /* update the host-chipset time offset */
Juuso Oikarinenac5e1e32010-02-22 08:38:38 +0200885 getnstimeofday(&ts);
886 wl->time_offset = (timespec_to_ns(&ts) >> 10) -
887 (s64)le32_to_cpu(status->fw_localtime);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300888}
889
Ido Yariva6208652011-03-01 15:14:41 +0200890static void wl1271_flush_deferred_work(struct wl1271 *wl)
891{
892 struct sk_buff *skb;
Juuso Oikarinen1e73eb62010-02-22 08:38:37 +0200893
Ido Yariva6208652011-03-01 15:14:41 +0200894 /* Pass all received frames to the network stack */
895 while ((skb = skb_dequeue(&wl->deferred_rx_queue)))
896 ieee80211_rx_ni(wl->hw, skb);
897
898 /* Return sent skbs to the network stack */
899 while ((skb = skb_dequeue(&wl->deferred_tx_queue)))
Eliad Pellerc27d3ac2011-06-07 10:40:39 +0300900 ieee80211_tx_status_ni(wl->hw, skb);
Ido Yariva6208652011-03-01 15:14:41 +0200901}
902
903static void wl1271_netstack_work(struct work_struct *work)
904{
905 struct wl1271 *wl =
906 container_of(work, struct wl1271, netstack_work);
907
908 do {
909 wl1271_flush_deferred_work(wl);
910 } while (skb_queue_len(&wl->deferred_rx_queue));
911}
912
913#define WL1271_IRQ_MAX_LOOPS 256
914
915irqreturn_t wl1271_irq(int irq, void *cookie)
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300916{
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300917 int ret;
Juuso Oikarinenc15f63b2009-10-12 15:08:50 +0300918 u32 intr;
Juuso Oikarinen1e73eb62010-02-22 08:38:37 +0200919 int loopcount = WL1271_IRQ_MAX_LOOPS;
Ido Yariva6208652011-03-01 15:14:41 +0200920 struct wl1271 *wl = (struct wl1271 *)cookie;
921 bool done = false;
922 unsigned int defer_count;
Ido Yarivb07d4032011-03-01 15:14:43 +0200923 unsigned long flags;
924
925 /* TX might be handled here, avoid redundant work */
926 set_bit(WL1271_FLAG_TX_PENDING, &wl->flags);
927 cancel_work_sync(&wl->tx_work);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300928
Ido Yariv341b7cd2011-03-31 10:07:01 +0200929 /*
930 * In case edge triggered interrupt must be used, we cannot iterate
931 * more than once without introducing race conditions with the hardirq.
932 */
933 if (wl->platform_quirks & WL12XX_PLATFORM_QUIRK_EDGE_IRQ)
934 loopcount = 1;
935
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300936 mutex_lock(&wl->mutex);
937
938 wl1271_debug(DEBUG_IRQ, "IRQ work");
939
Juuso Oikarinen1e73eb62010-02-22 08:38:37 +0200940 if (unlikely(wl->state == WL1271_STATE_OFF))
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300941 goto out;
942
Ido Yariva6208652011-03-01 15:14:41 +0200943 ret = wl1271_ps_elp_wakeup(wl);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300944 if (ret < 0)
945 goto out;
946
Ido Yariva6208652011-03-01 15:14:41 +0200947 while (!done && loopcount--) {
948 /*
949 * In order to avoid a race with the hardirq, clear the flag
950 * before acknowledging the chip. Since the mutex is held,
951 * wl1271_ps_elp_wakeup cannot be called concurrently.
952 */
953 clear_bit(WL1271_FLAG_IRQ_RUNNING, &wl->flags);
954 smp_mb__after_clear_bit();
Juuso Oikarinen1e73eb62010-02-22 08:38:37 +0200955
956 wl1271_fw_status(wl, wl->fw_status);
Eliad Pellerc8bde242011-02-02 09:59:35 +0200957 intr = le32_to_cpu(wl->fw_status->common.intr);
Ido Yariva6208652011-03-01 15:14:41 +0200958 intr &= WL1271_INTR_MASK;
Juuso Oikarinen1e73eb62010-02-22 08:38:37 +0200959 if (!intr) {
Ido Yariva6208652011-03-01 15:14:41 +0200960 done = true;
Juuso Oikarinen1e73eb62010-02-22 08:38:37 +0200961 continue;
962 }
963
Eliad Pellerccc83b02010-10-27 14:09:57 +0200964 if (unlikely(intr & WL1271_ACX_INTR_WATCHDOG)) {
965 wl1271_error("watchdog interrupt received! "
966 "starting recovery.");
Ido Yarivbaacb9a2011-06-06 14:57:05 +0300967 wl12xx_queue_recovery_work(wl);
Eliad Pellerccc83b02010-10-27 14:09:57 +0200968
969 /* restarting the chip. ignore any other interrupt. */
970 goto out;
971 }
972
Ido Yariva6208652011-03-01 15:14:41 +0200973 if (likely(intr & WL1271_ACX_INTR_DATA)) {
Juuso Oikarinen1e73eb62010-02-22 08:38:37 +0200974 wl1271_debug(DEBUG_IRQ, "WL1271_ACX_INTR_DATA");
975
Ido Yariv8aad2462011-03-01 15:14:38 +0200976 wl1271_rx(wl, &wl->fw_status->common);
Juuso Oikarinen1e73eb62010-02-22 08:38:37 +0200977
Ido Yariva5225502010-10-12 14:49:10 +0200978 /* Check if any tx blocks were freed */
Ido Yarivb07d4032011-03-01 15:14:43 +0200979 spin_lock_irqsave(&wl->wl_lock, flags);
Ido Yariva5225502010-10-12 14:49:10 +0200980 if (!test_bit(WL1271_FLAG_FW_TX_BUSY, &wl->flags) &&
Juuso Oikarinen6742f552010-12-13 09:52:37 +0200981 wl->tx_queue_count) {
Ido Yarivb07d4032011-03-01 15:14:43 +0200982 spin_unlock_irqrestore(&wl->wl_lock, flags);
Ido Yariva5225502010-10-12 14:49:10 +0200983 /*
984 * In order to avoid starvation of the TX path,
985 * call the work function directly.
986 */
987 wl1271_tx_work_locked(wl);
Ido Yarivb07d4032011-03-01 15:14:43 +0200988 } else {
989 spin_unlock_irqrestore(&wl->wl_lock, flags);
Ido Yariva5225502010-10-12 14:49:10 +0200990 }
991
Ido Yariv8aad2462011-03-01 15:14:38 +0200992 /* check for tx results */
993 if (wl->fw_status->common.tx_results_counter !=
994 (wl->tx_results_count & 0xff))
995 wl1271_tx_complete(wl);
Ido Yariva6208652011-03-01 15:14:41 +0200996
997 /* Make sure the deferred queues don't get too long */
998 defer_count = skb_queue_len(&wl->deferred_tx_queue) +
999 skb_queue_len(&wl->deferred_rx_queue);
1000 if (defer_count > WL1271_DEFERRED_QUEUE_LIMIT)
1001 wl1271_flush_deferred_work(wl);
Juuso Oikarinen1e73eb62010-02-22 08:38:37 +02001002 }
1003
1004 if (intr & WL1271_ACX_INTR_EVENT_A) {
1005 wl1271_debug(DEBUG_IRQ, "WL1271_ACX_INTR_EVENT_A");
1006 wl1271_event_handle(wl, 0);
1007 }
1008
1009 if (intr & WL1271_ACX_INTR_EVENT_B) {
1010 wl1271_debug(DEBUG_IRQ, "WL1271_ACX_INTR_EVENT_B");
1011 wl1271_event_handle(wl, 1);
1012 }
1013
1014 if (intr & WL1271_ACX_INTR_INIT_COMPLETE)
1015 wl1271_debug(DEBUG_IRQ,
1016 "WL1271_ACX_INTR_INIT_COMPLETE");
1017
1018 if (intr & WL1271_ACX_INTR_HW_AVAILABLE)
1019 wl1271_debug(DEBUG_IRQ, "WL1271_ACX_INTR_HW_AVAILABLE");
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001020 }
1021
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001022 wl1271_ps_elp_sleep(wl);
1023
1024out:
Ido Yarivb07d4032011-03-01 15:14:43 +02001025 spin_lock_irqsave(&wl->wl_lock, flags);
1026 /* In case TX was not handled here, queue TX work */
1027 clear_bit(WL1271_FLAG_TX_PENDING, &wl->flags);
1028 if (!test_bit(WL1271_FLAG_FW_TX_BUSY, &wl->flags) &&
1029 wl->tx_queue_count)
1030 ieee80211_queue_work(wl->hw, &wl->tx_work);
1031 spin_unlock_irqrestore(&wl->wl_lock, flags);
1032
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001033 mutex_unlock(&wl->mutex);
Ido Yariva6208652011-03-01 15:14:41 +02001034
1035 return IRQ_HANDLED;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001036}
Ido Yariva6208652011-03-01 15:14:41 +02001037EXPORT_SYMBOL_GPL(wl1271_irq);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001038
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001039static int wl1271_fetch_firmware(struct wl1271 *wl)
1040{
1041 const struct firmware *fw;
Arik Nemtsov166d5042010-10-16 21:44:57 +02001042 const char *fw_name;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001043 int ret;
1044
Arik Nemtsov166d5042010-10-16 21:44:57 +02001045 switch (wl->bss_type) {
1046 case BSS_TYPE_AP_BSS:
Arik Nemtsov1aed55f2011-03-06 16:32:18 +02001047 if (wl->chip.id == CHIP_ID_1283_PG20)
1048 fw_name = WL128X_AP_FW_NAME;
1049 else
1050 fw_name = WL127X_AP_FW_NAME;
Arik Nemtsov166d5042010-10-16 21:44:57 +02001051 break;
1052 case BSS_TYPE_IBSS:
1053 case BSS_TYPE_STA_BSS:
Shahar Levibc765bf2011-03-06 16:32:10 +02001054 if (wl->chip.id == CHIP_ID_1283_PG20)
1055 fw_name = WL128X_FW_NAME;
1056 else
1057 fw_name = WL1271_FW_NAME;
Arik Nemtsov166d5042010-10-16 21:44:57 +02001058 break;
1059 default:
1060 wl1271_error("no compatible firmware for bss_type %d",
1061 wl->bss_type);
1062 return -EINVAL;
1063 }
1064
1065 wl1271_debug(DEBUG_BOOT, "booting firmware %s", fw_name);
1066
1067 ret = request_firmware(&fw, fw_name, wl1271_wl_to_dev(wl));
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001068
1069 if (ret < 0) {
1070 wl1271_error("could not get firmware: %d", ret);
1071 return ret;
1072 }
1073
1074 if (fw->size % 4) {
1075 wl1271_error("firmware size is not multiple of 32 bits: %zu",
1076 fw->size);
1077 ret = -EILSEQ;
1078 goto out;
1079 }
1080
Arik Nemtsov166d5042010-10-16 21:44:57 +02001081 vfree(wl->fw);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001082 wl->fw_len = fw->size;
Juuso Oikarinen1fba4972009-10-08 21:56:32 +03001083 wl->fw = vmalloc(wl->fw_len);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001084
1085 if (!wl->fw) {
1086 wl1271_error("could not allocate memory for the firmware");
1087 ret = -ENOMEM;
1088 goto out;
1089 }
1090
1091 memcpy(wl->fw, fw->data, wl->fw_len);
Arik Nemtsov166d5042010-10-16 21:44:57 +02001092 wl->fw_bss_type = wl->bss_type;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001093 ret = 0;
1094
1095out:
1096 release_firmware(fw);
1097
1098 return ret;
1099}
1100
1101static int wl1271_fetch_nvs(struct wl1271 *wl)
1102{
1103 const struct firmware *fw;
1104 int ret;
1105
Shahar Levi5aa42342011-03-06 16:32:07 +02001106 ret = request_firmware(&fw, WL12XX_NVS_NAME, wl1271_wl_to_dev(wl));
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001107
1108 if (ret < 0) {
1109 wl1271_error("could not get nvs file: %d", ret);
1110 return ret;
1111 }
1112
Shahar Levibc765bf2011-03-06 16:32:10 +02001113 wl->nvs = kmemdup(fw->data, fw->size, GFP_KERNEL);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001114
1115 if (!wl->nvs) {
1116 wl1271_error("could not allocate memory for the nvs file");
1117 ret = -ENOMEM;
1118 goto out;
1119 }
1120
Juuso Oikarinen02fabb02010-08-19 04:41:15 +02001121 wl->nvs_len = fw->size;
1122
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001123out:
1124 release_firmware(fw);
1125
1126 return ret;
1127}
1128
Ido Yarivbaacb9a2011-06-06 14:57:05 +03001129void wl12xx_queue_recovery_work(struct wl1271 *wl)
1130{
1131 if (!test_bit(WL1271_FLAG_RECOVERY_IN_PROGRESS, &wl->flags))
1132 ieee80211_queue_work(wl->hw, &wl->recovery_work);
1133}
1134
Ido Yariv95dac04f2011-06-06 14:57:06 +03001135size_t wl12xx_copy_fwlog(struct wl1271 *wl, u8 *memblock, size_t maxlen)
1136{
1137 size_t len = 0;
1138
1139 /* The FW log is a length-value list, find where the log end */
1140 while (len < maxlen) {
1141 if (memblock[len] == 0)
1142 break;
1143 if (len + memblock[len] + 1 > maxlen)
1144 break;
1145 len += memblock[len] + 1;
1146 }
1147
1148 /* Make sure we have enough room */
1149 len = min(len, (size_t)(PAGE_SIZE - wl->fwlog_size));
1150
1151 /* Fill the FW log file, consumed by the sysfs fwlog entry */
1152 memcpy(wl->fwlog + wl->fwlog_size, memblock, len);
1153 wl->fwlog_size += len;
1154
1155 return len;
1156}
1157
1158static void wl12xx_read_fwlog_panic(struct wl1271 *wl)
1159{
1160 u32 addr;
1161 u32 first_addr;
1162 u8 *block;
1163
1164 if ((wl->quirks & WL12XX_QUIRK_FWLOG_NOT_IMPLEMENTED) ||
1165 (wl->conf.fwlog.mode != WL12XX_FWLOG_ON_DEMAND) ||
1166 (wl->conf.fwlog.mem_blocks == 0))
1167 return;
1168
1169 wl1271_info("Reading FW panic log");
1170
1171 block = kmalloc(WL12XX_HW_BLOCK_SIZE, GFP_KERNEL);
1172 if (!block)
1173 return;
1174
1175 /*
1176 * Make sure the chip is awake and the logger isn't active.
1177 * This might fail if the firmware hanged.
1178 */
1179 if (!wl1271_ps_elp_wakeup(wl))
1180 wl12xx_cmd_stop_fwlog(wl);
1181
1182 /* Read the first memory block address */
1183 wl1271_fw_status(wl, wl->fw_status);
1184 first_addr = __le32_to_cpu(wl->fw_status->sta.log_start_addr);
1185 if (!first_addr)
1186 goto out;
1187
1188 /* Traverse the memory blocks linked list */
1189 addr = first_addr;
1190 do {
1191 memset(block, 0, WL12XX_HW_BLOCK_SIZE);
1192 wl1271_read_hwaddr(wl, addr, block, WL12XX_HW_BLOCK_SIZE,
1193 false);
1194
1195 /*
1196 * Memory blocks are linked to one another. The first 4 bytes
1197 * of each memory block hold the hardware address of the next
1198 * one. The last memory block points to the first one.
1199 */
1200 addr = __le32_to_cpup((__le32 *)block);
1201 if (!wl12xx_copy_fwlog(wl, block + sizeof(addr),
1202 WL12XX_HW_BLOCK_SIZE - sizeof(addr)))
1203 break;
1204 } while (addr && (addr != first_addr));
1205
1206 wake_up_interruptible(&wl->fwlog_waitq);
1207
1208out:
1209 kfree(block);
1210}
1211
Juuso Oikarinen52b0e7a2010-09-21 06:23:31 +02001212static void wl1271_recovery_work(struct work_struct *work)
1213{
1214 struct wl1271 *wl =
1215 container_of(work, struct wl1271, recovery_work);
1216
1217 mutex_lock(&wl->mutex);
1218
1219 if (wl->state != WL1271_STATE_ON)
1220 goto out;
1221
Ido Yarivbaacb9a2011-06-06 14:57:05 +03001222 /* Avoid a recursive recovery */
1223 set_bit(WL1271_FLAG_RECOVERY_IN_PROGRESS, &wl->flags);
1224
Ido Yariv95dac04f2011-06-06 14:57:06 +03001225 wl12xx_read_fwlog_panic(wl);
1226
Arik Nemtsov52dcaf52011-04-18 14:15:24 +03001227 wl1271_info("Hardware recovery in progress. FW ver: %s pc: 0x%x",
1228 wl->chip.fw_ver_str, wl1271_read32(wl, SCR_PAD4));
Juuso Oikarinen52b0e7a2010-09-21 06:23:31 +02001229
Oz Krakowskib992c682011-06-26 10:36:02 +03001230 /*
1231 * Advance security sequence number to overcome potential progress
1232 * in the firmware during recovery. This doens't hurt if the network is
1233 * not encrypted.
1234 */
1235 if (test_bit(WL1271_FLAG_STA_ASSOCIATED, &wl->flags) ||
1236 test_bit(WL1271_FLAG_AP_STARTED, &wl->flags))
1237 wl->tx_security_seq += WL1271_TX_SQN_POST_RECOVERY_PADDING;
1238
Juuso Oikarinend25611d2010-09-30 10:43:27 +02001239 if (test_bit(WL1271_FLAG_STA_ASSOCIATED, &wl->flags))
1240 ieee80211_connection_loss(wl->vif);
1241
Arik Nemtsov7dece1c2011-04-18 14:15:28 +03001242 /* Prevent spurious TX during FW restart */
1243 ieee80211_stop_queues(wl->hw);
1244
Luciano Coelho33c2c062011-05-10 14:46:02 +03001245 if (wl->sched_scanning) {
1246 ieee80211_sched_scan_stopped(wl->hw);
1247 wl->sched_scanning = false;
1248 }
1249
Juuso Oikarinen52b0e7a2010-09-21 06:23:31 +02001250 /* reboot the chipset */
Arik Nemtsov7dece1c2011-04-18 14:15:28 +03001251 __wl1271_op_remove_interface(wl, false);
Ido Yarivbaacb9a2011-06-06 14:57:05 +03001252
1253 clear_bit(WL1271_FLAG_RECOVERY_IN_PROGRESS, &wl->flags);
1254
Juuso Oikarinen52b0e7a2010-09-21 06:23:31 +02001255 ieee80211_restart_hw(wl->hw);
1256
Arik Nemtsov7dece1c2011-04-18 14:15:28 +03001257 /*
1258 * Its safe to enable TX now - the queues are stopped after a request
1259 * to restart the HW.
1260 */
1261 ieee80211_wake_queues(wl->hw);
1262
Juuso Oikarinen52b0e7a2010-09-21 06:23:31 +02001263out:
1264 mutex_unlock(&wl->mutex);
1265}
1266
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001267static void wl1271_fw_wakeup(struct wl1271 *wl)
1268{
1269 u32 elp_reg;
1270
1271 elp_reg = ELPCTRL_WAKE_UP;
Juuso Oikarinen74621412009-10-12 15:08:54 +03001272 wl1271_raw_write32(wl, HW_ACCESS_ELP_CTRL_REG_ADDR, elp_reg);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001273}
1274
1275static int wl1271_setup(struct wl1271 *wl)
1276{
1277 wl->fw_status = kmalloc(sizeof(*wl->fw_status), GFP_KERNEL);
1278 if (!wl->fw_status)
1279 return -ENOMEM;
1280
1281 wl->tx_res_if = kmalloc(sizeof(*wl->tx_res_if), GFP_KERNEL);
1282 if (!wl->tx_res_if) {
1283 kfree(wl->fw_status);
1284 return -ENOMEM;
1285 }
1286
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001287 return 0;
1288}
1289
1290static int wl1271_chip_wakeup(struct wl1271 *wl)
1291{
Juuso Oikarinen451de972009-10-12 15:08:46 +03001292 struct wl1271_partition_set partition;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001293 int ret = 0;
1294
Juuso Oikarinen01ac17e2009-12-11 15:41:02 +02001295 msleep(WL1271_PRE_POWER_ON_SLEEP);
Ohad Ben-Cohen2cc78ff2010-09-16 01:22:04 +02001296 ret = wl1271_power_on(wl);
1297 if (ret < 0)
1298 goto out;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001299 msleep(WL1271_POWER_ON_SLEEP);
Teemu Paasikivi9b280722010-02-18 13:25:56 +02001300 wl1271_io_reset(wl);
1301 wl1271_io_init(wl);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001302
1303 /* We don't need a real memory partition here, because we only want
1304 * to use the registers at this point. */
Juuso Oikarinen451de972009-10-12 15:08:46 +03001305 memset(&partition, 0, sizeof(partition));
1306 partition.reg.start = REGISTERS_BASE;
1307 partition.reg.size = REGISTERS_DOWN_SIZE;
1308 wl1271_set_partition(wl, &partition);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001309
1310 /* ELP module wake up */
1311 wl1271_fw_wakeup(wl);
1312
1313 /* whal_FwCtrl_BootSm() */
1314
1315 /* 0. read chip id from CHIP_ID */
Teemu Paasikivi7b048c52010-02-18 13:25:55 +02001316 wl->chip.id = wl1271_read32(wl, CHIP_ID_B);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001317
1318 /* 1. check if chip id is valid */
1319
1320 switch (wl->chip.id) {
1321 case CHIP_ID_1271_PG10:
1322 wl1271_warning("chip id 0x%x (1271 PG10) support is obsolete",
1323 wl->chip.id);
1324
1325 ret = wl1271_setup(wl);
1326 if (ret < 0)
Juuso Oikarinen9ccd9212009-12-11 15:41:01 +02001327 goto out;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001328 break;
1329 case CHIP_ID_1271_PG20:
1330 wl1271_debug(DEBUG_BOOT, "chip id 0x%x (1271 PG20)",
1331 wl->chip.id);
1332
Shahar Levi0c005042011-06-12 10:34:43 +03001333 /*
1334 * 'end-of-transaction flag' and 'LPD mode flag'
1335 * should be set in wl127x AP mode only
1336 */
Shahar Levi564f5952011-04-04 10:20:39 +03001337 if (wl->bss_type == BSS_TYPE_AP_BSS)
Shahar Levi0c005042011-06-12 10:34:43 +03001338 wl->quirks |= (WL12XX_QUIRK_END_OF_TRANSACTION |
1339 WL12XX_QUIRK_LPD_MODE);
Shahar Levi564f5952011-04-04 10:20:39 +03001340
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001341 ret = wl1271_setup(wl);
1342 if (ret < 0)
Juuso Oikarinen9ccd9212009-12-11 15:41:01 +02001343 goto out;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001344 break;
Shahar Levi0830cee2011-03-06 16:32:20 +02001345 case CHIP_ID_1283_PG20:
1346 wl1271_debug(DEBUG_BOOT, "chip id 0x%x (1283 PG20)",
1347 wl->chip.id);
1348
1349 ret = wl1271_setup(wl);
1350 if (ret < 0)
1351 goto out;
Shahar Levi0c005042011-06-12 10:34:43 +03001352
Ido Yariv0da13da2011-03-31 10:06:58 +02001353 if (wl1271_set_block_size(wl))
1354 wl->quirks |= WL12XX_QUIRK_BLOCKSIZE_ALIGNMENT;
Shahar Levi0830cee2011-03-06 16:32:20 +02001355 break;
1356 case CHIP_ID_1283_PG10:
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001357 default:
Juuso Oikarinen9ccd9212009-12-11 15:41:01 +02001358 wl1271_warning("unsupported chip id: 0x%x", wl->chip.id);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001359 ret = -ENODEV;
Juuso Oikarinen9ccd9212009-12-11 15:41:01 +02001360 goto out;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001361 }
1362
Arik Nemtsov166d5042010-10-16 21:44:57 +02001363 /* Make sure the firmware type matches the BSS type */
1364 if (wl->fw == NULL || wl->fw_bss_type != wl->bss_type) {
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001365 ret = wl1271_fetch_firmware(wl);
1366 if (ret < 0)
Juuso Oikarinen9ccd9212009-12-11 15:41:01 +02001367 goto out;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001368 }
1369
1370 /* No NVS from netlink, try to get it from the filesystem */
1371 if (wl->nvs == NULL) {
1372 ret = wl1271_fetch_nvs(wl);
1373 if (ret < 0)
Juuso Oikarinen9ccd9212009-12-11 15:41:01 +02001374 goto out;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001375 }
1376
1377out:
1378 return ret;
1379}
1380
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001381int wl1271_plt_start(struct wl1271 *wl)
1382{
Juuso Oikarinen9ccd9212009-12-11 15:41:01 +02001383 int retries = WL1271_BOOT_RETRIES;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001384 int ret;
1385
1386 mutex_lock(&wl->mutex);
1387
1388 wl1271_notice("power up");
1389
1390 if (wl->state != WL1271_STATE_OFF) {
1391 wl1271_error("cannot go into PLT state because not "
1392 "in off state: %d", wl->state);
1393 ret = -EBUSY;
1394 goto out;
1395 }
1396
Arik Nemtsov166d5042010-10-16 21:44:57 +02001397 wl->bss_type = BSS_TYPE_STA_BSS;
1398
Juuso Oikarinen9ccd9212009-12-11 15:41:01 +02001399 while (retries) {
1400 retries--;
1401 ret = wl1271_chip_wakeup(wl);
1402 if (ret < 0)
1403 goto power_off;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001404
Juuso Oikarinen9ccd9212009-12-11 15:41:01 +02001405 ret = wl1271_boot(wl);
1406 if (ret < 0)
1407 goto power_off;
1408
1409 ret = wl1271_plt_init(wl);
1410 if (ret < 0)
1411 goto irq_disable;
1412
Juuso Oikarinen9ccd9212009-12-11 15:41:01 +02001413 wl->state = WL1271_STATE_PLT;
1414 wl1271_notice("firmware booted in PLT mode (%s)",
Levi, Shahar4b7fac72011-01-23 07:27:22 +01001415 wl->chip.fw_ver_str);
Luciano Coelhoe7ddf542011-03-10 15:24:57 +02001416
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001417 goto out;
1418
Juuso Oikarinen9ccd9212009-12-11 15:41:01 +02001419irq_disable:
Juuso Oikarinen9ccd9212009-12-11 15:41:01 +02001420 mutex_unlock(&wl->mutex);
1421 /* Unlocking the mutex in the middle of handling is
1422 inherently unsafe. In this case we deem it safe to do,
1423 because we need to let any possibly pending IRQ out of
1424 the system (and while we are WL1271_STATE_OFF the IRQ
1425 work function will not do anything.) Also, any other
1426 possible concurrent operations will fail due to the
1427 current state, hence the wl1271 struct should be safe. */
Ido Yariva6208652011-03-01 15:14:41 +02001428 wl1271_disable_interrupts(wl);
1429 wl1271_flush_deferred_work(wl);
1430 cancel_work_sync(&wl->netstack_work);
Juuso Oikarinen9ccd9212009-12-11 15:41:01 +02001431 mutex_lock(&wl->mutex);
1432power_off:
1433 wl1271_power_off(wl);
1434 }
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001435
Juuso Oikarinen9ccd9212009-12-11 15:41:01 +02001436 wl1271_error("firmware boot in PLT mode failed despite %d retries",
1437 WL1271_BOOT_RETRIES);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001438out:
1439 mutex_unlock(&wl->mutex);
1440
1441 return ret;
1442}
1443
Luciano Coelho4623ec72011-03-21 19:26:41 +02001444static int __wl1271_plt_stop(struct wl1271 *wl)
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001445{
1446 int ret = 0;
1447
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001448 wl1271_notice("power down");
1449
1450 if (wl->state != WL1271_STATE_PLT) {
1451 wl1271_error("cannot power down because not in PLT "
1452 "state: %d", wl->state);
1453 ret = -EBUSY;
1454 goto out;
1455 }
1456
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001457 wl1271_power_off(wl);
1458
1459 wl->state = WL1271_STATE_OFF;
Luciano Coelhobd5ea182009-10-13 12:47:58 +03001460 wl->rx_counter = 0;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001461
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001462 mutex_unlock(&wl->mutex);
Ido Yariva6208652011-03-01 15:14:41 +02001463 wl1271_disable_interrupts(wl);
1464 wl1271_flush_deferred_work(wl);
1465 cancel_work_sync(&wl->netstack_work);
Juuso Oikarinen52b0e7a2010-09-21 06:23:31 +02001466 cancel_work_sync(&wl->recovery_work);
Juuso Oikarinen4ae3fa82011-01-14 12:48:46 +01001467 mutex_lock(&wl->mutex);
1468out:
1469 return ret;
1470}
Juuso Oikarinen8c7f4f32010-09-21 06:23:29 +02001471
Juuso Oikarinen4ae3fa82011-01-14 12:48:46 +01001472int wl1271_plt_stop(struct wl1271 *wl)
1473{
1474 int ret;
1475
1476 mutex_lock(&wl->mutex);
1477 ret = __wl1271_plt_stop(wl);
1478 mutex_unlock(&wl->mutex);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001479 return ret;
1480}
1481
Johannes Berg7bb45682011-02-24 14:42:06 +01001482static void wl1271_op_tx(struct ieee80211_hw *hw, struct sk_buff *skb)
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001483{
1484 struct wl1271 *wl = hw->priv;
Juuso Oikarinen830fb672009-12-11 15:41:06 +02001485 unsigned long flags;
Juuso Oikarinen6742f552010-12-13 09:52:37 +02001486 int q;
Arik Nemtsova8c0ddb2011-02-23 00:22:26 +02001487 u8 hlid = 0;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001488
Ido Yarivb07d4032011-03-01 15:14:43 +02001489 q = wl1271_tx_get_queue(skb_get_queue_mapping(skb));
1490
1491 if (wl->bss_type == BSS_TYPE_AP_BSS)
1492 hlid = wl1271_tx_get_hlid(skb);
1493
Juuso Oikarinen830fb672009-12-11 15:41:06 +02001494 spin_lock_irqsave(&wl->wl_lock, flags);
Ido Yarivb07d4032011-03-01 15:14:43 +02001495
Juuso Oikarinen6742f552010-12-13 09:52:37 +02001496 wl->tx_queue_count++;
Arik Nemtsovf4d08dd2011-02-23 00:22:24 +02001497
1498 /*
1499 * The workqueue is slow to process the tx_queue and we need stop
1500 * the queue here, otherwise the queue will get too long.
1501 */
1502 if (wl->tx_queue_count >= WL1271_TX_QUEUE_HIGH_WATERMARK) {
1503 wl1271_debug(DEBUG_TX, "op_tx: stopping queues");
1504 ieee80211_stop_queues(wl->hw);
1505 set_bit(WL1271_FLAG_TX_QUEUE_STOPPED, &wl->flags);
1506 }
1507
Juuso Oikarinen830fb672009-12-11 15:41:06 +02001508 /* queue the packet */
Arik Nemtsova8c0ddb2011-02-23 00:22:26 +02001509 if (wl->bss_type == BSS_TYPE_AP_BSS) {
Arik Nemtsova8c0ddb2011-02-23 00:22:26 +02001510 wl1271_debug(DEBUG_TX, "queue skb hlid %d q %d", hlid, q);
1511 skb_queue_tail(&wl->links[hlid].tx_queue[q], skb);
1512 } else {
1513 skb_queue_tail(&wl->tx_queue[q], skb);
1514 }
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001515
1516 /*
1517 * The chip specific setup must run before the first TX packet -
1518 * before that, the tx_work will not be initialized!
1519 */
1520
Ido Yarivb07d4032011-03-01 15:14:43 +02001521 if (!test_bit(WL1271_FLAG_FW_TX_BUSY, &wl->flags) &&
1522 !test_bit(WL1271_FLAG_TX_PENDING, &wl->flags))
Ido Yariva5225502010-10-12 14:49:10 +02001523 ieee80211_queue_work(wl->hw, &wl->tx_work);
Ido Yarivb07d4032011-03-01 15:14:43 +02001524
1525 spin_unlock_irqrestore(&wl->wl_lock, flags);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001526}
1527
Shahar Leviae47c452011-03-06 16:32:14 +02001528int wl1271_tx_dummy_packet(struct wl1271 *wl)
1529{
Ido Yariv990f5de2011-03-31 10:06:59 +02001530 unsigned long flags;
Shahar Leviae47c452011-03-06 16:32:14 +02001531
Ido Yariv990f5de2011-03-31 10:06:59 +02001532 spin_lock_irqsave(&wl->wl_lock, flags);
1533 set_bit(WL1271_FLAG_DUMMY_PACKET_PENDING, &wl->flags);
1534 wl->tx_queue_count++;
1535 spin_unlock_irqrestore(&wl->wl_lock, flags);
1536
1537 /* The FW is low on RX memory blocks, so send the dummy packet asap */
1538 if (!test_bit(WL1271_FLAG_FW_TX_BUSY, &wl->flags))
1539 wl1271_tx_work_locked(wl);
1540
1541 /*
1542 * If the FW TX is busy, TX work will be scheduled by the threaded
1543 * interrupt handler function
1544 */
1545 return 0;
1546}
1547
1548/*
1549 * The size of the dummy packet should be at least 1400 bytes. However, in
1550 * order to minimize the number of bus transactions, aligning it to 512 bytes
1551 * boundaries could be beneficial, performance wise
1552 */
1553#define TOTAL_TX_DUMMY_PACKET_SIZE (ALIGN(1400, 512))
1554
Luciano Coelhocf27d862011-04-01 21:08:23 +03001555static struct sk_buff *wl12xx_alloc_dummy_packet(struct wl1271 *wl)
Ido Yariv990f5de2011-03-31 10:06:59 +02001556{
1557 struct sk_buff *skb;
1558 struct ieee80211_hdr_3addr *hdr;
1559 unsigned int dummy_packet_size;
1560
1561 dummy_packet_size = TOTAL_TX_DUMMY_PACKET_SIZE -
1562 sizeof(struct wl1271_tx_hw_descr) - sizeof(*hdr);
1563
1564 skb = dev_alloc_skb(TOTAL_TX_DUMMY_PACKET_SIZE);
Shahar Leviae47c452011-03-06 16:32:14 +02001565 if (!skb) {
Ido Yariv990f5de2011-03-31 10:06:59 +02001566 wl1271_warning("Failed to allocate a dummy packet skb");
1567 return NULL;
Shahar Leviae47c452011-03-06 16:32:14 +02001568 }
1569
1570 skb_reserve(skb, sizeof(struct wl1271_tx_hw_descr));
1571
1572 hdr = (struct ieee80211_hdr_3addr *) skb_put(skb, sizeof(*hdr));
1573 memset(hdr, 0, sizeof(*hdr));
1574 hdr->frame_control = cpu_to_le16(IEEE80211_FTYPE_DATA |
Ido Yariv990f5de2011-03-31 10:06:59 +02001575 IEEE80211_STYPE_NULLFUNC |
1576 IEEE80211_FCTL_TODS);
Shahar Leviae47c452011-03-06 16:32:14 +02001577
Ido Yariv990f5de2011-03-31 10:06:59 +02001578 memset(skb_put(skb, dummy_packet_size), 0, dummy_packet_size);
Shahar Leviae47c452011-03-06 16:32:14 +02001579
Luciano Coelho18b92ff2011-03-21 16:35:21 +02001580 /* Dummy packets require the TID to be management */
1581 skb->priority = WL1271_TID_MGMT;
Ido Yariv990f5de2011-03-31 10:06:59 +02001582
1583 /* Initialize all fields that might be used */
Hauke Mehrtens86c438f2011-04-26 23:27:44 +02001584 skb_set_queue_mapping(skb, 0);
Ido Yariv990f5de2011-03-31 10:06:59 +02001585 memset(IEEE80211_SKB_CB(skb), 0, sizeof(struct ieee80211_tx_info));
Shahar Leviae47c452011-03-06 16:32:14 +02001586
Ido Yariv990f5de2011-03-31 10:06:59 +02001587 return skb;
Shahar Leviae47c452011-03-06 16:32:14 +02001588}
1589
Ido Yariv990f5de2011-03-31 10:06:59 +02001590
Juuso Oikarinenc2c192a2010-07-27 03:30:09 +03001591static struct notifier_block wl1271_dev_notifier = {
1592 .notifier_call = wl1271_dev_notify,
1593};
1594
Luciano Coelhof634a4e2011-05-18 16:51:26 -04001595#ifdef CONFIG_PM
Eliad Peller8a7cf3f2011-06-06 12:21:54 +03001596static int wl1271_configure_suspend_sta(struct wl1271 *wl)
Eliad Peller94390642011-05-13 11:57:13 +03001597{
1598 int ret;
1599
Eliad Peller94390642011-05-13 11:57:13 +03001600 mutex_lock(&wl->mutex);
1601
1602 ret = wl1271_ps_elp_wakeup(wl);
1603 if (ret < 0)
1604 goto out_unlock;
1605
1606 /* enter psm if needed*/
1607 if (!test_bit(WL1271_FLAG_PSM, &wl->flags)) {
1608 DECLARE_COMPLETION_ONSTACK(compl);
1609
1610 wl->ps_compl = &compl;
1611 ret = wl1271_ps_set_mode(wl, STATION_POWER_SAVE_MODE,
1612 wl->basic_rate, true);
1613 if (ret < 0)
1614 goto out_sleep;
1615
1616 /* we must unlock here so we will be able to get events */
1617 wl1271_ps_elp_sleep(wl);
1618 mutex_unlock(&wl->mutex);
1619
1620 ret = wait_for_completion_timeout(
1621 &compl, msecs_to_jiffies(WL1271_PS_COMPLETE_TIMEOUT));
1622 if (ret <= 0) {
1623 wl1271_warning("couldn't enter ps mode!");
1624 ret = -EBUSY;
1625 goto out;
1626 }
1627
1628 /* take mutex again, and wakeup */
1629 mutex_lock(&wl->mutex);
1630
1631 ret = wl1271_ps_elp_wakeup(wl);
1632 if (ret < 0)
1633 goto out_unlock;
1634 }
1635out_sleep:
1636 wl1271_ps_elp_sleep(wl);
1637out_unlock:
1638 mutex_unlock(&wl->mutex);
1639out:
1640 return ret;
1641
1642}
1643
Eliad Peller8a7cf3f2011-06-06 12:21:54 +03001644static int wl1271_configure_suspend_ap(struct wl1271 *wl)
Eliad Peller94390642011-05-13 11:57:13 +03001645{
1646 int ret;
1647
Eliad Peller8a7cf3f2011-06-06 12:21:54 +03001648 mutex_lock(&wl->mutex);
1649
1650 ret = wl1271_ps_elp_wakeup(wl);
1651 if (ret < 0)
1652 goto out_unlock;
1653
1654 ret = wl1271_acx_set_ap_beacon_filter(wl, true);
1655
1656 wl1271_ps_elp_sleep(wl);
1657out_unlock:
1658 mutex_unlock(&wl->mutex);
1659 return ret;
1660
1661}
1662
1663static int wl1271_configure_suspend(struct wl1271 *wl)
1664{
1665 if (wl->bss_type == BSS_TYPE_STA_BSS)
1666 return wl1271_configure_suspend_sta(wl);
1667 if (wl->bss_type == BSS_TYPE_AP_BSS)
1668 return wl1271_configure_suspend_ap(wl);
1669 return 0;
1670}
1671
1672static void wl1271_configure_resume(struct wl1271 *wl)
1673{
1674 int ret;
1675 bool is_sta = wl->bss_type == BSS_TYPE_STA_BSS;
1676 bool is_ap = wl->bss_type == BSS_TYPE_AP_BSS;
1677
1678 if (!is_sta && !is_ap)
Eliad Peller94390642011-05-13 11:57:13 +03001679 return;
1680
1681 mutex_lock(&wl->mutex);
1682 ret = wl1271_ps_elp_wakeup(wl);
1683 if (ret < 0)
1684 goto out;
1685
Eliad Peller8a7cf3f2011-06-06 12:21:54 +03001686 if (is_sta) {
1687 /* exit psm if it wasn't configured */
1688 if (!test_bit(WL1271_FLAG_PSM_REQUESTED, &wl->flags))
1689 wl1271_ps_set_mode(wl, STATION_ACTIVE_MODE,
1690 wl->basic_rate, true);
1691 } else if (is_ap) {
1692 wl1271_acx_set_ap_beacon_filter(wl, false);
1693 }
Eliad Peller94390642011-05-13 11:57:13 +03001694
1695 wl1271_ps_elp_sleep(wl);
1696out:
1697 mutex_unlock(&wl->mutex);
1698}
1699
Eliad Peller402e48612011-05-13 11:57:09 +03001700static int wl1271_op_suspend(struct ieee80211_hw *hw,
1701 struct cfg80211_wowlan *wow)
1702{
1703 struct wl1271 *wl = hw->priv;
Eliad Peller4a859df2011-06-06 12:21:52 +03001704 int ret;
1705
Eliad Peller402e48612011-05-13 11:57:09 +03001706 wl1271_debug(DEBUG_MAC80211, "mac80211 suspend wow=%d", !!wow);
Eliad Peller4a859df2011-06-06 12:21:52 +03001707 WARN_ON(!wow || !wow->any);
Eliad Pellerf44e5862011-05-13 11:57:11 +03001708
Eliad Peller4a859df2011-06-06 12:21:52 +03001709 wl->wow_enabled = true;
1710 ret = wl1271_configure_suspend(wl);
1711 if (ret < 0) {
1712 wl1271_warning("couldn't prepare device to suspend");
1713 return ret;
Eliad Pellerf44e5862011-05-13 11:57:11 +03001714 }
Eliad Peller4a859df2011-06-06 12:21:52 +03001715 /* flush any remaining work */
1716 wl1271_debug(DEBUG_MAC80211, "flushing remaining works");
1717 flush_delayed_work(&wl->scan_complete_work);
1718
1719 /*
1720 * disable and re-enable interrupts in order to flush
1721 * the threaded_irq
1722 */
1723 wl1271_disable_interrupts(wl);
1724
1725 /*
1726 * set suspended flag to avoid triggering a new threaded_irq
1727 * work. no need for spinlock as interrupts are disabled.
1728 */
1729 set_bit(WL1271_FLAG_SUSPENDED, &wl->flags);
1730
1731 wl1271_enable_interrupts(wl);
1732 flush_work(&wl->tx_work);
1733 flush_delayed_work(&wl->pspoll_work);
1734 flush_delayed_work(&wl->elp_work);
1735
Eliad Peller402e48612011-05-13 11:57:09 +03001736 return 0;
1737}
1738
1739static int wl1271_op_resume(struct ieee80211_hw *hw)
1740{
1741 struct wl1271 *wl = hw->priv;
Eliad Peller4a859df2011-06-06 12:21:52 +03001742 unsigned long flags;
1743 bool run_irq_work = false;
1744
Eliad Peller402e48612011-05-13 11:57:09 +03001745 wl1271_debug(DEBUG_MAC80211, "mac80211 resume wow=%d",
1746 wl->wow_enabled);
Eliad Peller4a859df2011-06-06 12:21:52 +03001747 WARN_ON(!wl->wow_enabled);
Eliad Pellerf44e5862011-05-13 11:57:11 +03001748
1749 /*
1750 * re-enable irq_work enqueuing, and call irq_work directly if
1751 * there is a pending work.
1752 */
Eliad Peller4a859df2011-06-06 12:21:52 +03001753 spin_lock_irqsave(&wl->wl_lock, flags);
1754 clear_bit(WL1271_FLAG_SUSPENDED, &wl->flags);
1755 if (test_and_clear_bit(WL1271_FLAG_PENDING_WORK, &wl->flags))
1756 run_irq_work = true;
1757 spin_unlock_irqrestore(&wl->wl_lock, flags);
Eliad Pellerf44e5862011-05-13 11:57:11 +03001758
Eliad Peller4a859df2011-06-06 12:21:52 +03001759 if (run_irq_work) {
1760 wl1271_debug(DEBUG_MAC80211,
1761 "run postponed irq_work directly");
1762 wl1271_irq(0, wl);
1763 wl1271_enable_interrupts(wl);
Eliad Pellerf44e5862011-05-13 11:57:11 +03001764 }
Eliad Peller4a859df2011-06-06 12:21:52 +03001765 wl1271_configure_resume(wl);
Eliad Pellerff91afc2011-06-06 12:21:53 +03001766 wl->wow_enabled = false;
Eliad Pellerf44e5862011-05-13 11:57:11 +03001767
Eliad Peller402e48612011-05-13 11:57:09 +03001768 return 0;
1769}
Luciano Coelhof634a4e2011-05-18 16:51:26 -04001770#endif
Eliad Peller402e48612011-05-13 11:57:09 +03001771
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001772static int wl1271_op_start(struct ieee80211_hw *hw)
1773{
Juuso Oikarinen1b72aec2010-03-18 12:26:39 +02001774 wl1271_debug(DEBUG_MAC80211, "mac80211 start");
1775
1776 /*
1777 * We have to delay the booting of the hardware because
1778 * we need to know the local MAC address before downloading and
1779 * initializing the firmware. The MAC address cannot be changed
1780 * after boot, and without the proper MAC address, the firmware
1781 * will not function properly.
1782 *
1783 * The MAC address is first known when the corresponding interface
1784 * is added. That is where we will initialize the hardware.
Arik Nemtsov166d5042010-10-16 21:44:57 +02001785 *
1786 * In addition, we currently have different firmwares for AP and managed
1787 * operation. We will know which to boot according to interface type.
Juuso Oikarinen1b72aec2010-03-18 12:26:39 +02001788 */
1789
1790 return 0;
1791}
1792
1793static void wl1271_op_stop(struct ieee80211_hw *hw)
1794{
1795 wl1271_debug(DEBUG_MAC80211, "mac80211 stop");
1796}
1797
1798static int wl1271_op_add_interface(struct ieee80211_hw *hw,
1799 struct ieee80211_vif *vif)
1800{
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001801 struct wl1271 *wl = hw->priv;
John W. Linvilleac01e942010-07-28 17:09:41 -04001802 struct wiphy *wiphy = hw->wiphy;
Juuso Oikarinen9ccd9212009-12-11 15:41:01 +02001803 int retries = WL1271_BOOT_RETRIES;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001804 int ret = 0;
Eliad Peller71125ab2010-10-28 21:46:43 +02001805 bool booted = false;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001806
Juuso Oikarinen1b72aec2010-03-18 12:26:39 +02001807 wl1271_debug(DEBUG_MAC80211, "mac80211 add interface type %d mac %pM",
1808 vif->type, vif->addr);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001809
1810 mutex_lock(&wl->mutex);
Juuso Oikarinen1b72aec2010-03-18 12:26:39 +02001811 if (wl->vif) {
Eliad Peller71125ab2010-10-28 21:46:43 +02001812 wl1271_debug(DEBUG_MAC80211,
1813 "multiple vifs are not supported yet");
Juuso Oikarinen1b72aec2010-03-18 12:26:39 +02001814 ret = -EBUSY;
1815 goto out;
1816 }
1817
Juuso Oikarinen13026de2011-03-29 16:43:50 +03001818 /*
1819 * in some very corner case HW recovery scenarios its possible to
1820 * get here before __wl1271_op_remove_interface is complete, so
1821 * opt out if that is the case.
1822 */
1823 if (test_bit(WL1271_FLAG_IF_INITIALIZED, &wl->flags)) {
1824 ret = -EBUSY;
1825 goto out;
1826 }
1827
Juuso Oikarinen1b72aec2010-03-18 12:26:39 +02001828 switch (vif->type) {
1829 case NL80211_IFTYPE_STATION:
1830 wl->bss_type = BSS_TYPE_STA_BSS;
Juuso Oikarinen5da11dc2010-03-26 12:53:24 +02001831 wl->set_bss_type = BSS_TYPE_STA_BSS;
Juuso Oikarinen1b72aec2010-03-18 12:26:39 +02001832 break;
1833 case NL80211_IFTYPE_ADHOC:
1834 wl->bss_type = BSS_TYPE_IBSS;
Juuso Oikarinen5da11dc2010-03-26 12:53:24 +02001835 wl->set_bss_type = BSS_TYPE_STA_BSS;
Juuso Oikarinen1b72aec2010-03-18 12:26:39 +02001836 break;
Arik Nemtsov038d9252010-10-16 21:53:24 +02001837 case NL80211_IFTYPE_AP:
1838 wl->bss_type = BSS_TYPE_AP_BSS;
1839 break;
Juuso Oikarinen1b72aec2010-03-18 12:26:39 +02001840 default:
1841 ret = -EOPNOTSUPP;
1842 goto out;
1843 }
1844
1845 memcpy(wl->mac_addr, vif->addr, ETH_ALEN);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001846
1847 if (wl->state != WL1271_STATE_OFF) {
1848 wl1271_error("cannot start because not in off state: %d",
1849 wl->state);
1850 ret = -EBUSY;
1851 goto out;
1852 }
1853
Juuso Oikarinen9ccd9212009-12-11 15:41:01 +02001854 while (retries) {
1855 retries--;
1856 ret = wl1271_chip_wakeup(wl);
1857 if (ret < 0)
1858 goto power_off;
1859
1860 ret = wl1271_boot(wl);
1861 if (ret < 0)
1862 goto power_off;
1863
1864 ret = wl1271_hw_init(wl);
1865 if (ret < 0)
1866 goto irq_disable;
1867
Eliad Peller71125ab2010-10-28 21:46:43 +02001868 booted = true;
1869 break;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001870
Juuso Oikarinen9ccd9212009-12-11 15:41:01 +02001871irq_disable:
Juuso Oikarinen9ccd9212009-12-11 15:41:01 +02001872 mutex_unlock(&wl->mutex);
1873 /* Unlocking the mutex in the middle of handling is
1874 inherently unsafe. In this case we deem it safe to do,
1875 because we need to let any possibly pending IRQ out of
1876 the system (and while we are WL1271_STATE_OFF the IRQ
1877 work function will not do anything.) Also, any other
1878 possible concurrent operations will fail due to the
1879 current state, hence the wl1271 struct should be safe. */
Ido Yariva6208652011-03-01 15:14:41 +02001880 wl1271_disable_interrupts(wl);
1881 wl1271_flush_deferred_work(wl);
1882 cancel_work_sync(&wl->netstack_work);
Juuso Oikarinen9ccd9212009-12-11 15:41:01 +02001883 mutex_lock(&wl->mutex);
1884power_off:
1885 wl1271_power_off(wl);
1886 }
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001887
Eliad Peller71125ab2010-10-28 21:46:43 +02001888 if (!booted) {
1889 wl1271_error("firmware boot failed despite %d retries",
1890 WL1271_BOOT_RETRIES);
1891 goto out;
1892 }
1893
1894 wl->vif = vif;
1895 wl->state = WL1271_STATE_ON;
Juuso Oikarinen13026de2011-03-29 16:43:50 +03001896 set_bit(WL1271_FLAG_IF_INITIALIZED, &wl->flags);
Levi, Shahar4b7fac72011-01-23 07:27:22 +01001897 wl1271_info("firmware booted (%s)", wl->chip.fw_ver_str);
Eliad Peller71125ab2010-10-28 21:46:43 +02001898
1899 /* update hw/fw version info in wiphy struct */
1900 wiphy->hw_version = wl->chip.id;
Levi, Shahar4b7fac72011-01-23 07:27:22 +01001901 strncpy(wiphy->fw_version, wl->chip.fw_ver_str,
Eliad Peller71125ab2010-10-28 21:46:43 +02001902 sizeof(wiphy->fw_version));
1903
Luciano Coelhofb6a6812010-12-03 17:05:40 +02001904 /*
1905 * Now we know if 11a is supported (info from the NVS), so disable
1906 * 11a channels if not supported
1907 */
1908 if (!wl->enable_11a)
1909 wiphy->bands[IEEE80211_BAND_5GHZ]->n_channels = 0;
1910
1911 wl1271_debug(DEBUG_MAC80211, "11a is %ssupported",
1912 wl->enable_11a ? "" : "not ");
1913
Juuso Oikarineneb5b28d2009-10-13 12:47:45 +03001914out:
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001915 mutex_unlock(&wl->mutex);
1916
Juuso Oikarinenf9f774c2011-03-21 10:43:36 +02001917 mutex_lock(&wl_list_mutex);
Juuso Oikarineneb887df2010-07-08 17:49:58 +03001918 if (!ret)
Juuso Oikarinen01c09162009-10-13 12:47:55 +03001919 list_add(&wl->list, &wl_list);
Juuso Oikarinenf9f774c2011-03-21 10:43:36 +02001920 mutex_unlock(&wl_list_mutex);
Juuso Oikarinen01c09162009-10-13 12:47:55 +03001921
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001922 return ret;
1923}
1924
Arik Nemtsov7dece1c2011-04-18 14:15:28 +03001925static void __wl1271_op_remove_interface(struct wl1271 *wl,
1926 bool reset_tx_queues)
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001927{
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001928 int i;
1929
Juuso Oikarinen1b72aec2010-03-18 12:26:39 +02001930 wl1271_debug(DEBUG_MAC80211, "mac80211 remove interface");
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001931
Juuso Oikarinen13026de2011-03-29 16:43:50 +03001932 /* because of hardware recovery, we may get here twice */
1933 if (wl->state != WL1271_STATE_ON)
1934 return;
1935
Juuso Oikarinen1b72aec2010-03-18 12:26:39 +02001936 wl1271_info("down");
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001937
Juuso Oikarinenf9f774c2011-03-21 10:43:36 +02001938 mutex_lock(&wl_list_mutex);
Juuso Oikarinen01c09162009-10-13 12:47:55 +03001939 list_del(&wl->list);
Juuso Oikarinenf9f774c2011-03-21 10:43:36 +02001940 mutex_unlock(&wl_list_mutex);
Juuso Oikarinen01c09162009-10-13 12:47:55 +03001941
Juuso Oikarinen8d2ef7b2010-07-08 17:50:03 +03001942 /* enable dyn ps just in case (if left on due to fw crash etc) */
Juuso Oikarinen9a547bf2010-07-08 17:50:04 +03001943 if (wl->bss_type == BSS_TYPE_STA_BSS)
Juuso Oikarinenf532be62010-07-08 17:50:05 +03001944 ieee80211_enable_dyn_ps(wl->vif);
Juuso Oikarinen8d2ef7b2010-07-08 17:50:03 +03001945
Luciano Coelho08688d62010-07-08 17:50:07 +03001946 if (wl->scan.state != WL1271_SCAN_STATE_IDLE) {
Luciano Coelho08688d62010-07-08 17:50:07 +03001947 wl->scan.state = WL1271_SCAN_STATE_IDLE;
Luciano Coelho4a31c112011-03-21 23:16:14 +02001948 memset(wl->scan.scanned_ch, 0, sizeof(wl->scan.scanned_ch));
Juuso Oikarinenb739a422010-10-26 13:24:38 +02001949 wl->scan.req = NULL;
Juuso Oikarinen76a029f2010-07-29 04:54:45 +03001950 ieee80211_scan_completed(wl->hw, true);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001951 }
1952
Juuso Oikarinen13026de2011-03-29 16:43:50 +03001953 /*
1954 * this must be before the cancel_work calls below, so that the work
1955 * functions don't perform further work.
1956 */
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001957 wl->state = WL1271_STATE_OFF;
1958
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001959 mutex_unlock(&wl->mutex);
1960
Ido Yariva6208652011-03-01 15:14:41 +02001961 wl1271_disable_interrupts(wl);
1962 wl1271_flush_deferred_work(wl);
Juuso Oikarinen78abd322010-09-21 06:23:32 +02001963 cancel_delayed_work_sync(&wl->scan_complete_work);
Ido Yariva6208652011-03-01 15:14:41 +02001964 cancel_work_sync(&wl->netstack_work);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001965 cancel_work_sync(&wl->tx_work);
Eliad Peller77ddaa12011-05-15 11:10:29 +03001966 del_timer_sync(&wl->rx_streaming_timer);
1967 cancel_work_sync(&wl->rx_streaming_enable_work);
1968 cancel_work_sync(&wl->rx_streaming_disable_work);
Juuso Oikarinen90494a92010-07-08 17:50:00 +03001969 cancel_delayed_work_sync(&wl->pspoll_work);
Juuso Oikarinen8c7f4f32010-09-21 06:23:29 +02001970 cancel_delayed_work_sync(&wl->elp_work);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001971
1972 mutex_lock(&wl->mutex);
1973
1974 /* let's notify MAC80211 about the remaining pending TX frames */
Arik Nemtsov7dece1c2011-04-18 14:15:28 +03001975 wl1271_tx_reset(wl, reset_tx_queues);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001976 wl1271_power_off(wl);
1977
1978 memset(wl->bssid, 0, ETH_ALEN);
1979 memset(wl->ssid, 0, IW_ESSID_MAX_SIZE + 1);
1980 wl->ssid_len = 0;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001981 wl->bss_type = MAX_BSS_TYPE;
Juuso Oikarinen5da11dc2010-03-26 12:53:24 +02001982 wl->set_bss_type = MAX_BSS_TYPE;
Juuso Oikarinen8a5a37a2009-10-08 21:56:24 +03001983 wl->band = IEEE80211_BAND_2GHZ;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001984
1985 wl->rx_counter = 0;
Juuso Oikarinen19ad0712009-11-02 20:22:11 +02001986 wl->psm_entry_retry = 0;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001987 wl->power_level = WL1271_DEFAULT_POWER_LEVEL;
1988 wl->tx_blocks_available = 0;
Ido Yarivd2f4d472011-03-31 10:07:00 +02001989 wl->tx_allocated_blocks = 0;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001990 wl->tx_results_count = 0;
1991 wl->tx_packets_count = 0;
1992 wl->time_offset = 0;
1993 wl->session_counter = 0;
Juuso Oikarinen830fb672009-12-11 15:41:06 +02001994 wl->rate_set = CONF_TX_RATE_MASK_BASIC;
Juuso Oikarinen1b72aec2010-03-18 12:26:39 +02001995 wl->vif = NULL;
Juuso Oikarinen14b228a2010-03-18 12:26:43 +02001996 wl->filters = 0;
Arik Nemtsov7f179b42010-10-16 21:39:06 +02001997 wl1271_free_ap_keys(wl);
Arik Nemtsovf84f7d72010-10-16 20:21:23 +02001998 memset(wl->ap_hlid_map, 0, sizeof(wl->ap_hlid_map));
Arik Nemtsovb622d992011-02-23 00:22:31 +02001999 wl->ap_fw_ps_map = 0;
2000 wl->ap_ps_map = 0;
Luciano Coelho33c2c062011-05-10 14:46:02 +03002001 wl->sched_scanning = false;
Luciano Coelhod6e19d12009-10-12 15:08:43 +03002002
Juuso Oikarinen13026de2011-03-29 16:43:50 +03002003 /*
2004 * this is performed after the cancel_work calls and the associated
2005 * mutex_lock, so that wl1271_op_add_interface does not accidentally
2006 * get executed before all these vars have been reset.
2007 */
2008 wl->flags = 0;
2009
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03002010 for (i = 0; i < NUM_TX_QUEUES; i++)
2011 wl->tx_blocks_freed[i] = 0;
2012
2013 wl1271_debugfs_reset(wl);
Juuso Oikarinenbd9dc492010-04-09 11:07:26 +03002014
2015 kfree(wl->fw_status);
2016 wl->fw_status = NULL;
2017 kfree(wl->tx_res_if);
2018 wl->tx_res_if = NULL;
2019 kfree(wl->target_mem_map);
2020 wl->target_mem_map = NULL;
Juuso Oikarinen52a2a372010-09-21 06:23:30 +02002021}
Juuso Oikarinenbd9dc492010-04-09 11:07:26 +03002022
Juuso Oikarinen52a2a372010-09-21 06:23:30 +02002023static void wl1271_op_remove_interface(struct ieee80211_hw *hw,
2024 struct ieee80211_vif *vif)
2025{
2026 struct wl1271 *wl = hw->priv;
2027
2028 mutex_lock(&wl->mutex);
Juuso Oikarinen67353292010-11-18 15:19:02 +02002029 /*
2030 * wl->vif can be null here if someone shuts down the interface
2031 * just when hardware recovery has been started.
2032 */
2033 if (wl->vif) {
2034 WARN_ON(wl->vif != vif);
Arik Nemtsov7dece1c2011-04-18 14:15:28 +03002035 __wl1271_op_remove_interface(wl, true);
Juuso Oikarinen67353292010-11-18 15:19:02 +02002036 }
Juuso Oikarinen52b0e7a2010-09-21 06:23:31 +02002037
Juuso Oikarinen67353292010-11-18 15:19:02 +02002038 mutex_unlock(&wl->mutex);
Juuso Oikarinen52b0e7a2010-09-21 06:23:31 +02002039 cancel_work_sync(&wl->recovery_work);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03002040}
2041
Ohad Ben-Cohenc5745182011-03-30 16:35:59 +02002042void wl1271_configure_filters(struct wl1271 *wl, unsigned int filters)
Juuso Oikarinen14b228a2010-03-18 12:26:43 +02002043{
Arik Nemtsovae113b52010-10-16 18:45:07 +02002044 wl1271_set_default_filters(wl);
Juuso Oikarinen14b228a2010-03-18 12:26:43 +02002045
2046 /* combine requested filters with current filter config */
2047 filters = wl->filters | filters;
2048
2049 wl1271_debug(DEBUG_FILTERS, "RX filters set: ");
2050
2051 if (filters & FIF_PROMISC_IN_BSS) {
2052 wl1271_debug(DEBUG_FILTERS, " - FIF_PROMISC_IN_BSS");
2053 wl->rx_config &= ~CFG_UNI_FILTER_EN;
2054 wl->rx_config |= CFG_BSSID_FILTER_EN;
2055 }
2056 if (filters & FIF_BCN_PRBRESP_PROMISC) {
2057 wl1271_debug(DEBUG_FILTERS, " - FIF_BCN_PRBRESP_PROMISC");
2058 wl->rx_config &= ~CFG_BSSID_FILTER_EN;
2059 wl->rx_config &= ~CFG_SSID_FILTER_EN;
2060 }
2061 if (filters & FIF_OTHER_BSS) {
2062 wl1271_debug(DEBUG_FILTERS, " - FIF_OTHER_BSS");
2063 wl->rx_config &= ~CFG_BSSID_FILTER_EN;
2064 }
2065 if (filters & FIF_CONTROL) {
2066 wl1271_debug(DEBUG_FILTERS, " - FIF_CONTROL");
2067 wl->rx_filter |= CFG_RX_CTL_EN;
2068 }
2069 if (filters & FIF_FCSFAIL) {
2070 wl1271_debug(DEBUG_FILTERS, " - FIF_FCSFAIL");
2071 wl->rx_filter |= CFG_RX_FCS_ERROR;
2072 }
2073}
2074
Juuso Oikarinen82429d32010-04-28 09:50:01 +03002075static int wl1271_dummy_join(struct wl1271 *wl)
Luciano Coelhoc7f43e42009-12-11 15:40:44 +02002076{
Juuso Oikarinene0d8bbf2009-12-11 15:41:04 +02002077 int ret = 0;
Luciano Coelhoc7f43e42009-12-11 15:40:44 +02002078 /* we need to use a dummy BSSID for now */
2079 static const u8 dummy_bssid[ETH_ALEN] = { 0x0b, 0xad, 0xde,
2080 0xad, 0xbe, 0xef };
2081
Luciano Coelhoc7f43e42009-12-11 15:40:44 +02002082 memcpy(wl->bssid, dummy_bssid, ETH_ALEN);
2083
Juuso Oikarinen14b228a2010-03-18 12:26:43 +02002084 /* pass through frames from all BSS */
2085 wl1271_configure_filters(wl, FIF_OTHER_BSS);
2086
Juuso Oikarinen5da11dc2010-03-26 12:53:24 +02002087 ret = wl1271_cmd_join(wl, wl->set_bss_type);
Luciano Coelhoc7f43e42009-12-11 15:40:44 +02002088 if (ret < 0)
2089 goto out;
2090
Juuso Oikarinen71449f82009-12-11 15:41:07 +02002091 set_bit(WL1271_FLAG_JOINED, &wl->flags);
Luciano Coelhoc7f43e42009-12-11 15:40:44 +02002092
2093out:
2094 return ret;
2095}
2096
Juuso Oikarinen69e54342010-05-07 11:39:00 +03002097static int wl1271_join(struct wl1271 *wl, bool set_assoc)
Juuso Oikarinen82429d32010-04-28 09:50:01 +03002098{
2099 int ret;
2100
Juuso Oikarinen69e54342010-05-07 11:39:00 +03002101 /*
2102 * One of the side effects of the JOIN command is that is clears
2103 * WPA/WPA2 keys from the chipset. Performing a JOIN while associated
2104 * to a WPA/WPA2 access point will therefore kill the data-path.
Ohad Ben-Cohen8bf69aa2011-03-30 19:18:31 +02002105 * Currently the only valid scenario for JOIN during association
2106 * is on roaming, in which case we will also be given new keys.
2107 * Keep the below message for now, unless it starts bothering
2108 * users who really like to roam a lot :)
Juuso Oikarinen69e54342010-05-07 11:39:00 +03002109 */
2110 if (test_bit(WL1271_FLAG_STA_ASSOCIATED, &wl->flags))
2111 wl1271_info("JOIN while associated.");
2112
2113 if (set_assoc)
2114 set_bit(WL1271_FLAG_STA_ASSOCIATED, &wl->flags);
2115
Juuso Oikarinen82429d32010-04-28 09:50:01 +03002116 ret = wl1271_cmd_join(wl, wl->set_bss_type);
2117 if (ret < 0)
2118 goto out;
2119
2120 set_bit(WL1271_FLAG_JOINED, &wl->flags);
2121
2122 if (!test_bit(WL1271_FLAG_STA_ASSOCIATED, &wl->flags))
2123 goto out;
2124
2125 /*
2126 * The join command disable the keep-alive mode, shut down its process,
2127 * and also clear the template config, so we need to reset it all after
2128 * the join. The acx_aid starts the keep-alive process, and the order
2129 * of the commands below is relevant.
2130 */
2131 ret = wl1271_acx_keep_alive_mode(wl, true);
2132 if (ret < 0)
2133 goto out;
2134
2135 ret = wl1271_acx_aid(wl, wl->aid);
2136 if (ret < 0)
2137 goto out;
2138
2139 ret = wl1271_cmd_build_klv_null_data(wl);
2140 if (ret < 0)
2141 goto out;
2142
2143 ret = wl1271_acx_keep_alive_config(wl, CMD_TEMPL_KLV_IDX_NULL_DATA,
2144 ACX_KEEP_ALIVE_TPL_VALID);
2145 if (ret < 0)
2146 goto out;
2147
2148out:
2149 return ret;
2150}
2151
2152static int wl1271_unjoin(struct wl1271 *wl)
Luciano Coelhoc7f43e42009-12-11 15:40:44 +02002153{
2154 int ret;
2155
2156 /* to stop listening to a channel, we disconnect */
2157 ret = wl1271_cmd_disconnect(wl);
2158 if (ret < 0)
2159 goto out;
2160
Juuso Oikarinen71449f82009-12-11 15:41:07 +02002161 clear_bit(WL1271_FLAG_JOINED, &wl->flags);
Luciano Coelhoc7f43e42009-12-11 15:40:44 +02002162 memset(wl->bssid, 0, ETH_ALEN);
Juuso Oikarinen14b228a2010-03-18 12:26:43 +02002163
Oz Krakowskib992c682011-06-26 10:36:02 +03002164 /* reset TX security counters on a clean disconnect */
2165 wl->tx_security_last_seq_lsb = 0;
2166 wl->tx_security_seq = 0;
2167
Ohad Ben-Cohenc5745182011-03-30 16:35:59 +02002168 /* stop filtering packets based on bssid */
Juuso Oikarinen14b228a2010-03-18 12:26:43 +02002169 wl1271_configure_filters(wl, FIF_OTHER_BSS);
Luciano Coelhoc7f43e42009-12-11 15:40:44 +02002170
2171out:
2172 return ret;
2173}
2174
Juuso Oikarinenebba60c2010-04-01 11:38:20 +03002175static void wl1271_set_band_rate(struct wl1271 *wl)
2176{
2177 if (wl->band == IEEE80211_BAND_2GHZ)
2178 wl->basic_rate_set = wl->conf.tx.basic_rate;
2179 else
2180 wl->basic_rate_set = wl->conf.tx.basic_rate_5;
2181}
2182
Arik Nemtsovbee0ffe2010-10-16 19:17:02 +02002183static int wl1271_sta_handle_idle(struct wl1271 *wl, bool idle)
Juuso Oikarinen0d58cbf2010-05-24 11:18:16 +03002184{
2185 int ret;
2186
2187 if (idle) {
2188 if (test_bit(WL1271_FLAG_JOINED, &wl->flags)) {
2189 ret = wl1271_unjoin(wl);
2190 if (ret < 0)
2191 goto out;
2192 }
Arik Nemtsove0fe3712010-10-16 18:19:53 +02002193 wl->rate_set = wl1271_tx_min_rate_get(wl);
Arik Nemtsov79b223f2010-10-16 17:52:59 +02002194 ret = wl1271_acx_sta_rate_policies(wl);
Juuso Oikarinen0d58cbf2010-05-24 11:18:16 +03002195 if (ret < 0)
2196 goto out;
2197 ret = wl1271_acx_keep_alive_config(
2198 wl, CMD_TEMPL_KLV_IDX_NULL_DATA,
2199 ACX_KEEP_ALIVE_TPL_INVALID);
2200 if (ret < 0)
2201 goto out;
2202 set_bit(WL1271_FLAG_IDLE, &wl->flags);
2203 } else {
2204 /* increment the session counter */
2205 wl->session_counter++;
2206 if (wl->session_counter >= SESSION_COUNTER_MAX)
2207 wl->session_counter = 0;
Luciano Coelho33c2c062011-05-10 14:46:02 +03002208
2209 /* The current firmware only supports sched_scan in idle */
2210 if (wl->sched_scanning) {
2211 wl1271_scan_sched_scan_stop(wl);
2212 ieee80211_sched_scan_stopped(wl->hw);
2213 }
2214
Juuso Oikarinen0d58cbf2010-05-24 11:18:16 +03002215 ret = wl1271_dummy_join(wl);
2216 if (ret < 0)
2217 goto out;
2218 clear_bit(WL1271_FLAG_IDLE, &wl->flags);
2219 }
2220
2221out:
2222 return ret;
2223}
2224
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03002225static int wl1271_op_config(struct ieee80211_hw *hw, u32 changed)
2226{
2227 struct wl1271 *wl = hw->priv;
2228 struct ieee80211_conf *conf = &hw->conf;
2229 int channel, ret = 0;
Arik Nemtsovbee0ffe2010-10-16 19:17:02 +02002230 bool is_ap;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03002231
2232 channel = ieee80211_frequency_to_channel(conf->channel->center_freq);
2233
Arik Nemtsovbee0ffe2010-10-16 19:17:02 +02002234 wl1271_debug(DEBUG_MAC80211, "mac80211 config ch %d psm %s power %d %s"
2235 " changed 0x%x",
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03002236 channel,
2237 conf->flags & IEEE80211_CONF_PS ? "on" : "off",
Luciano Coelhoc7f43e42009-12-11 15:40:44 +02002238 conf->power_level,
Arik Nemtsovbee0ffe2010-10-16 19:17:02 +02002239 conf->flags & IEEE80211_CONF_IDLE ? "idle" : "in use",
2240 changed);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03002241
Juuso Oikarinen781608c2010-05-24 11:18:17 +03002242 /*
2243 * mac80211 will go to idle nearly immediately after transmitting some
2244 * frames, such as the deauth. To make sure those frames reach the air,
2245 * wait here until the TX queue is fully flushed.
2246 */
2247 if ((changed & IEEE80211_CONF_CHANGE_IDLE) &&
2248 (conf->flags & IEEE80211_CONF_IDLE))
2249 wl1271_tx_flush(wl);
2250
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03002251 mutex_lock(&wl->mutex);
2252
Juuso Oikarinenf8d98022010-10-26 13:24:39 +02002253 if (unlikely(wl->state == WL1271_STATE_OFF)) {
Arik Nemtsov17e672d2011-03-22 10:07:47 +02002254 /* we support configuring the channel and band while off */
2255 if ((changed & IEEE80211_CONF_CHANGE_CHANNEL)) {
2256 wl->band = conf->channel->band;
2257 wl->channel = channel;
2258 }
2259
Saravanan Dhanabal2c10bb92010-04-09 11:07:27 +03002260 goto out;
Juuso Oikarinenf8d98022010-10-26 13:24:39 +02002261 }
Juuso Oikarinen8a5a37a2009-10-08 21:56:24 +03002262
Arik Nemtsovbee0ffe2010-10-16 19:17:02 +02002263 is_ap = (wl->bss_type == BSS_TYPE_AP_BSS);
2264
Ido Yariva6208652011-03-01 15:14:41 +02002265 ret = wl1271_ps_elp_wakeup(wl);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03002266 if (ret < 0)
2267 goto out;
2268
Juuso Oikarinenebba60c2010-04-01 11:38:20 +03002269 /* if the channel changes while joined, join again */
Juuso Oikarinen69e54342010-05-07 11:39:00 +03002270 if (changed & IEEE80211_CONF_CHANGE_CHANNEL &&
2271 ((wl->band != conf->channel->band) ||
2272 (wl->channel != channel))) {
Juuso Oikarinenebba60c2010-04-01 11:38:20 +03002273 wl->band = conf->channel->band;
2274 wl->channel = channel;
2275
Arik Nemtsovbee0ffe2010-10-16 19:17:02 +02002276 if (!is_ap) {
2277 /*
2278 * FIXME: the mac80211 should really provide a fixed
2279 * rate to use here. for now, just use the smallest
2280 * possible rate for the band as a fixed rate for
2281 * association frames and other control messages.
2282 */
2283 if (!test_bit(WL1271_FLAG_STA_ASSOCIATED, &wl->flags))
2284 wl1271_set_band_rate(wl);
Juuso Oikarinenebba60c2010-04-01 11:38:20 +03002285
Arik Nemtsovbee0ffe2010-10-16 19:17:02 +02002286 wl->basic_rate = wl1271_tx_min_rate_get(wl);
2287 ret = wl1271_acx_sta_rate_policies(wl);
Juuso Oikarinenebba60c2010-04-01 11:38:20 +03002288 if (ret < 0)
Arik Nemtsovbee0ffe2010-10-16 19:17:02 +02002289 wl1271_warning("rate policy for channel "
Juuso Oikarinenebba60c2010-04-01 11:38:20 +03002290 "failed %d", ret);
Arik Nemtsovbee0ffe2010-10-16 19:17:02 +02002291
2292 if (test_bit(WL1271_FLAG_JOINED, &wl->flags)) {
2293 ret = wl1271_join(wl, false);
2294 if (ret < 0)
2295 wl1271_warning("cmd join on channel "
2296 "failed %d", ret);
2297 }
Juuso Oikarinenebba60c2010-04-01 11:38:20 +03002298 }
2299 }
2300
Arik Nemtsovbee0ffe2010-10-16 19:17:02 +02002301 if (changed & IEEE80211_CONF_CHANGE_IDLE && !is_ap) {
2302 ret = wl1271_sta_handle_idle(wl,
2303 conf->flags & IEEE80211_CONF_IDLE);
Juuso Oikarinen0d58cbf2010-05-24 11:18:16 +03002304 if (ret < 0)
2305 wl1271_warning("idle mode change failed %d", ret);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03002306 }
2307
Juuso Oikarinen90494a92010-07-08 17:50:00 +03002308 /*
2309 * if mac80211 changes the PSM mode, make sure the mode is not
2310 * incorrectly changed after the pspoll failure active window.
2311 */
2312 if (changed & IEEE80211_CONF_CHANGE_PS)
2313 clear_bit(WL1271_FLAG_PSPOLL_FAILURE, &wl->flags);
2314
Juuso Oikarinen71449f82009-12-11 15:41:07 +02002315 if (conf->flags & IEEE80211_CONF_PS &&
2316 !test_bit(WL1271_FLAG_PSM_REQUESTED, &wl->flags)) {
2317 set_bit(WL1271_FLAG_PSM_REQUESTED, &wl->flags);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03002318
2319 /*
2320 * We enter PSM only if we're already associated.
2321 * If we're not, we'll enter it when joining an SSID,
2322 * through the bss_info_changed() hook.
2323 */
Juuso Oikarinen830fb672009-12-11 15:41:06 +02002324 if (test_bit(WL1271_FLAG_STA_ASSOCIATED, &wl->flags)) {
Juuso Oikarinen18f8d462010-02-22 08:38:34 +02002325 wl1271_debug(DEBUG_PSM, "psm enabled");
Juuso Oikarinend8c42c02010-02-18 13:25:36 +02002326 ret = wl1271_ps_set_mode(wl, STATION_POWER_SAVE_MODE,
Juuso Oikarinen8eab7b42010-09-24 03:10:11 +02002327 wl->basic_rate, true);
Juuso Oikarinenaf5e0842009-12-11 15:41:00 +02002328 }
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03002329 } else if (!(conf->flags & IEEE80211_CONF_PS) &&
Juuso Oikarinen71449f82009-12-11 15:41:07 +02002330 test_bit(WL1271_FLAG_PSM_REQUESTED, &wl->flags)) {
Juuso Oikarinen18f8d462010-02-22 08:38:34 +02002331 wl1271_debug(DEBUG_PSM, "psm disabled");
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03002332
Juuso Oikarinen71449f82009-12-11 15:41:07 +02002333 clear_bit(WL1271_FLAG_PSM_REQUESTED, &wl->flags);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03002334
Juuso Oikarinen71449f82009-12-11 15:41:07 +02002335 if (test_bit(WL1271_FLAG_PSM, &wl->flags))
Juuso Oikarinend8c42c02010-02-18 13:25:36 +02002336 ret = wl1271_ps_set_mode(wl, STATION_ACTIVE_MODE,
Juuso Oikarinen8eab7b42010-09-24 03:10:11 +02002337 wl->basic_rate, true);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03002338 }
2339
2340 if (conf->power_level != wl->power_level) {
2341 ret = wl1271_acx_tx_power(wl, conf->power_level);
2342 if (ret < 0)
Juuso Oikarinenc6317a52009-11-02 20:22:08 +02002343 goto out_sleep;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03002344
2345 wl->power_level = conf->power_level;
2346 }
2347
2348out_sleep:
2349 wl1271_ps_elp_sleep(wl);
2350
2351out:
2352 mutex_unlock(&wl->mutex);
2353
2354 return ret;
2355}
2356
Juuso Oikarinenb54853f2009-10-13 12:47:59 +03002357struct wl1271_filter_params {
2358 bool enabled;
2359 int mc_list_length;
2360 u8 mc_list[ACX_MC_ADDRESS_GROUP_MAX][ETH_ALEN];
2361};
2362
Jiri Pirko22bedad2010-04-01 21:22:57 +00002363static u64 wl1271_op_prepare_multicast(struct ieee80211_hw *hw,
2364 struct netdev_hw_addr_list *mc_list)
Juuso Oikarinenc87dec92009-10-08 21:56:31 +03002365{
Juuso Oikarinenc87dec92009-10-08 21:56:31 +03002366 struct wl1271_filter_params *fp;
Jiri Pirko22bedad2010-04-01 21:22:57 +00002367 struct netdev_hw_addr *ha;
Saravanan Dhanabal2c10bb92010-04-09 11:07:27 +03002368 struct wl1271 *wl = hw->priv;
Juuso Oikarinenc87dec92009-10-08 21:56:31 +03002369
Saravanan Dhanabal2c10bb92010-04-09 11:07:27 +03002370 if (unlikely(wl->state == WL1271_STATE_OFF))
2371 return 0;
Juuso Oikarinenc87dec92009-10-08 21:56:31 +03002372
Juuso Oikarinen74441132009-10-13 12:47:53 +03002373 fp = kzalloc(sizeof(*fp), GFP_ATOMIC);
Juuso Oikarinenc87dec92009-10-08 21:56:31 +03002374 if (!fp) {
2375 wl1271_error("Out of memory setting filters.");
2376 return 0;
2377 }
2378
2379 /* update multicast filtering parameters */
Juuso Oikarinenc87dec92009-10-08 21:56:31 +03002380 fp->mc_list_length = 0;
Jiri Pirko22bedad2010-04-01 21:22:57 +00002381 if (netdev_hw_addr_list_count(mc_list) > ACX_MC_ADDRESS_GROUP_MAX) {
2382 fp->enabled = false;
2383 } else {
2384 fp->enabled = true;
2385 netdev_hw_addr_list_for_each(ha, mc_list) {
Juuso Oikarinenc87dec92009-10-08 21:56:31 +03002386 memcpy(fp->mc_list[fp->mc_list_length],
Jiri Pirko22bedad2010-04-01 21:22:57 +00002387 ha->addr, ETH_ALEN);
Juuso Oikarinenc87dec92009-10-08 21:56:31 +03002388 fp->mc_list_length++;
Jiri Pirko22bedad2010-04-01 21:22:57 +00002389 }
Juuso Oikarinenc87dec92009-10-08 21:56:31 +03002390 }
2391
Juuso Oikarinenb54853f2009-10-13 12:47:59 +03002392 return (u64)(unsigned long)fp;
Juuso Oikarinenc87dec92009-10-08 21:56:31 +03002393}
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03002394
Juuso Oikarinenb54853f2009-10-13 12:47:59 +03002395#define WL1271_SUPPORTED_FILTERS (FIF_PROMISC_IN_BSS | \
2396 FIF_ALLMULTI | \
2397 FIF_FCSFAIL | \
2398 FIF_BCN_PRBRESP_PROMISC | \
2399 FIF_CONTROL | \
2400 FIF_OTHER_BSS)
2401
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03002402static void wl1271_op_configure_filter(struct ieee80211_hw *hw,
2403 unsigned int changed,
Juuso Oikarinenc87dec92009-10-08 21:56:31 +03002404 unsigned int *total, u64 multicast)
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03002405{
Juuso Oikarinenb54853f2009-10-13 12:47:59 +03002406 struct wl1271_filter_params *fp = (void *)(unsigned long)multicast;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03002407 struct wl1271 *wl = hw->priv;
Juuso Oikarinenb54853f2009-10-13 12:47:59 +03002408 int ret;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03002409
Arik Nemtsov7d057862010-10-16 19:25:35 +02002410 wl1271_debug(DEBUG_MAC80211, "mac80211 configure filter changed %x"
2411 " total %x", changed, *total);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03002412
Juuso Oikarinenb54853f2009-10-13 12:47:59 +03002413 mutex_lock(&wl->mutex);
2414
Saravanan Dhanabal2c10bb92010-04-09 11:07:27 +03002415 *total &= WL1271_SUPPORTED_FILTERS;
2416 changed &= WL1271_SUPPORTED_FILTERS;
2417
2418 if (unlikely(wl->state == WL1271_STATE_OFF))
Juuso Oikarinenb54853f2009-10-13 12:47:59 +03002419 goto out;
2420
Ido Yariva6208652011-03-01 15:14:41 +02002421 ret = wl1271_ps_elp_wakeup(wl);
Juuso Oikarinenb54853f2009-10-13 12:47:59 +03002422 if (ret < 0)
2423 goto out;
2424
Arik Nemtsov7d057862010-10-16 19:25:35 +02002425 if (wl->bss_type != BSS_TYPE_AP_BSS) {
2426 if (*total & FIF_ALLMULTI)
2427 ret = wl1271_acx_group_address_tbl(wl, false, NULL, 0);
2428 else if (fp)
2429 ret = wl1271_acx_group_address_tbl(wl, fp->enabled,
2430 fp->mc_list,
2431 fp->mc_list_length);
2432 if (ret < 0)
2433 goto out_sleep;
2434 }
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03002435
Juuso Oikarinenb54853f2009-10-13 12:47:59 +03002436 /* determine, whether supported filter values have changed */
2437 if (changed == 0)
2438 goto out_sleep;
2439
Juuso Oikarinen14b228a2010-03-18 12:26:43 +02002440 /* configure filters */
2441 wl->filters = *total;
2442 wl1271_configure_filters(wl, 0);
2443
Juuso Oikarinenb54853f2009-10-13 12:47:59 +03002444 /* apply configured filters */
2445 ret = wl1271_acx_rx_config(wl, wl->rx_config, wl->rx_filter);
2446 if (ret < 0)
2447 goto out_sleep;
2448
2449out_sleep:
2450 wl1271_ps_elp_sleep(wl);
2451
2452out:
2453 mutex_unlock(&wl->mutex);
Juuso Oikarinen14b228a2010-03-18 12:26:43 +02002454 kfree(fp);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03002455}
2456
Arik Nemtsov7f179b42010-10-16 21:39:06 +02002457static int wl1271_record_ap_key(struct wl1271 *wl, u8 id, u8 key_type,
2458 u8 key_size, const u8 *key, u8 hlid, u32 tx_seq_32,
2459 u16 tx_seq_16)
2460{
2461 struct wl1271_ap_key *ap_key;
2462 int i;
2463
2464 wl1271_debug(DEBUG_CRYPT, "record ap key id %d", (int)id);
2465
2466 if (key_size > MAX_KEY_SIZE)
2467 return -EINVAL;
2468
2469 /*
2470 * Find next free entry in ap_keys. Also check we are not replacing
2471 * an existing key.
2472 */
2473 for (i = 0; i < MAX_NUM_KEYS; i++) {
2474 if (wl->recorded_ap_keys[i] == NULL)
2475 break;
2476
2477 if (wl->recorded_ap_keys[i]->id == id) {
2478 wl1271_warning("trying to record key replacement");
2479 return -EINVAL;
2480 }
2481 }
2482
2483 if (i == MAX_NUM_KEYS)
2484 return -EBUSY;
2485
2486 ap_key = kzalloc(sizeof(*ap_key), GFP_KERNEL);
2487 if (!ap_key)
2488 return -ENOMEM;
2489
2490 ap_key->id = id;
2491 ap_key->key_type = key_type;
2492 ap_key->key_size = key_size;
2493 memcpy(ap_key->key, key, key_size);
2494 ap_key->hlid = hlid;
2495 ap_key->tx_seq_32 = tx_seq_32;
2496 ap_key->tx_seq_16 = tx_seq_16;
2497
2498 wl->recorded_ap_keys[i] = ap_key;
2499 return 0;
2500}
2501
2502static void wl1271_free_ap_keys(struct wl1271 *wl)
2503{
2504 int i;
2505
2506 for (i = 0; i < MAX_NUM_KEYS; i++) {
2507 kfree(wl->recorded_ap_keys[i]);
2508 wl->recorded_ap_keys[i] = NULL;
2509 }
2510}
2511
2512static int wl1271_ap_init_hwenc(struct wl1271 *wl)
2513{
2514 int i, ret = 0;
2515 struct wl1271_ap_key *key;
2516 bool wep_key_added = false;
2517
2518 for (i = 0; i < MAX_NUM_KEYS; i++) {
2519 if (wl->recorded_ap_keys[i] == NULL)
2520 break;
2521
2522 key = wl->recorded_ap_keys[i];
2523 ret = wl1271_cmd_set_ap_key(wl, KEY_ADD_OR_REPLACE,
2524 key->id, key->key_type,
2525 key->key_size, key->key,
2526 key->hlid, key->tx_seq_32,
2527 key->tx_seq_16);
2528 if (ret < 0)
2529 goto out;
2530
2531 if (key->key_type == KEY_WEP)
2532 wep_key_added = true;
2533 }
2534
2535 if (wep_key_added) {
2536 ret = wl1271_cmd_set_ap_default_wep_key(wl, wl->default_key);
2537 if (ret < 0)
2538 goto out;
2539 }
2540
2541out:
2542 wl1271_free_ap_keys(wl);
2543 return ret;
2544}
2545
2546static int wl1271_set_key(struct wl1271 *wl, u16 action, u8 id, u8 key_type,
2547 u8 key_size, const u8 *key, u32 tx_seq_32,
2548 u16 tx_seq_16, struct ieee80211_sta *sta)
2549{
2550 int ret;
2551 bool is_ap = (wl->bss_type == BSS_TYPE_AP_BSS);
2552
2553 if (is_ap) {
2554 struct wl1271_station *wl_sta;
2555 u8 hlid;
2556
2557 if (sta) {
2558 wl_sta = (struct wl1271_station *)sta->drv_priv;
2559 hlid = wl_sta->hlid;
2560 } else {
2561 hlid = WL1271_AP_BROADCAST_HLID;
2562 }
2563
2564 if (!test_bit(WL1271_FLAG_AP_STARTED, &wl->flags)) {
2565 /*
2566 * We do not support removing keys after AP shutdown.
2567 * Pretend we do to make mac80211 happy.
2568 */
2569 if (action != KEY_ADD_OR_REPLACE)
2570 return 0;
2571
2572 ret = wl1271_record_ap_key(wl, id,
2573 key_type, key_size,
2574 key, hlid, tx_seq_32,
2575 tx_seq_16);
2576 } else {
2577 ret = wl1271_cmd_set_ap_key(wl, action,
2578 id, key_type, key_size,
2579 key, hlid, tx_seq_32,
2580 tx_seq_16);
2581 }
2582
2583 if (ret < 0)
2584 return ret;
2585 } else {
2586 const u8 *addr;
2587 static const u8 bcast_addr[ETH_ALEN] = {
2588 0xff, 0xff, 0xff, 0xff, 0xff, 0xff
2589 };
2590
2591 addr = sta ? sta->addr : bcast_addr;
2592
2593 if (is_zero_ether_addr(addr)) {
2594 /* We dont support TX only encryption */
2595 return -EOPNOTSUPP;
2596 }
2597
2598 /* The wl1271 does not allow to remove unicast keys - they
2599 will be cleared automatically on next CMD_JOIN. Ignore the
2600 request silently, as we dont want the mac80211 to emit
2601 an error message. */
2602 if (action == KEY_REMOVE && !is_broadcast_ether_addr(addr))
2603 return 0;
2604
2605 ret = wl1271_cmd_set_sta_key(wl, action,
2606 id, key_type, key_size,
2607 key, addr, tx_seq_32,
2608 tx_seq_16);
2609 if (ret < 0)
2610 return ret;
2611
2612 /* the default WEP key needs to be configured at least once */
2613 if (key_type == KEY_WEP) {
2614 ret = wl1271_cmd_set_sta_default_wep_key(wl,
2615 wl->default_key);
2616 if (ret < 0)
2617 return ret;
2618 }
2619 }
2620
2621 return 0;
2622}
2623
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03002624static int wl1271_op_set_key(struct ieee80211_hw *hw, enum set_key_cmd cmd,
2625 struct ieee80211_vif *vif,
2626 struct ieee80211_sta *sta,
2627 struct ieee80211_key_conf *key_conf)
2628{
2629 struct wl1271 *wl = hw->priv;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03002630 int ret;
Juuso Oikarinenac4e4ce2009-10-08 21:56:19 +03002631 u32 tx_seq_32 = 0;
2632 u16 tx_seq_16 = 0;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03002633 u8 key_type;
2634
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03002635 wl1271_debug(DEBUG_MAC80211, "mac80211 set key");
2636
Arik Nemtsov7f179b42010-10-16 21:39:06 +02002637 wl1271_debug(DEBUG_CRYPT, "CMD: 0x%x sta: %p", cmd, sta);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03002638 wl1271_debug(DEBUG_CRYPT, "Key: algo:0x%x, id:%d, len:%d flags 0x%x",
Johannes Berg97359d12010-08-10 09:46:38 +02002639 key_conf->cipher, key_conf->keyidx,
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03002640 key_conf->keylen, key_conf->flags);
2641 wl1271_dump(DEBUG_CRYPT, "KEY: ", key_conf->key, key_conf->keylen);
2642
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03002643 mutex_lock(&wl->mutex);
2644
Juuso Oikarinenf8d98022010-10-26 13:24:39 +02002645 if (unlikely(wl->state == WL1271_STATE_OFF)) {
2646 ret = -EAGAIN;
2647 goto out_unlock;
2648 }
2649
Ido Yariva6208652011-03-01 15:14:41 +02002650 ret = wl1271_ps_elp_wakeup(wl);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03002651 if (ret < 0)
2652 goto out_unlock;
2653
Johannes Berg97359d12010-08-10 09:46:38 +02002654 switch (key_conf->cipher) {
2655 case WLAN_CIPHER_SUITE_WEP40:
2656 case WLAN_CIPHER_SUITE_WEP104:
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03002657 key_type = KEY_WEP;
2658
2659 key_conf->hw_key_idx = key_conf->keyidx;
2660 break;
Johannes Berg97359d12010-08-10 09:46:38 +02002661 case WLAN_CIPHER_SUITE_TKIP:
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03002662 key_type = KEY_TKIP;
2663
2664 key_conf->hw_key_idx = key_conf->keyidx;
Juuso Oikarinen04e36fc2010-02-22 08:38:40 +02002665 tx_seq_32 = WL1271_TX_SECURITY_HI32(wl->tx_security_seq);
2666 tx_seq_16 = WL1271_TX_SECURITY_LO16(wl->tx_security_seq);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03002667 break;
Johannes Berg97359d12010-08-10 09:46:38 +02002668 case WLAN_CIPHER_SUITE_CCMP:
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03002669 key_type = KEY_AES;
2670
2671 key_conf->flags |= IEEE80211_KEY_FLAG_GENERATE_IV;
Juuso Oikarinen04e36fc2010-02-22 08:38:40 +02002672 tx_seq_32 = WL1271_TX_SECURITY_HI32(wl->tx_security_seq);
2673 tx_seq_16 = WL1271_TX_SECURITY_LO16(wl->tx_security_seq);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03002674 break;
Juuso Oikarinen7a557242010-09-27 12:42:07 +02002675 case WL1271_CIPHER_SUITE_GEM:
2676 key_type = KEY_GEM;
2677 tx_seq_32 = WL1271_TX_SECURITY_HI32(wl->tx_security_seq);
2678 tx_seq_16 = WL1271_TX_SECURITY_LO16(wl->tx_security_seq);
2679 break;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03002680 default:
Johannes Berg97359d12010-08-10 09:46:38 +02002681 wl1271_error("Unknown key algo 0x%x", key_conf->cipher);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03002682
2683 ret = -EOPNOTSUPP;
2684 goto out_sleep;
2685 }
2686
2687 switch (cmd) {
2688 case SET_KEY:
Arik Nemtsov7f179b42010-10-16 21:39:06 +02002689 ret = wl1271_set_key(wl, KEY_ADD_OR_REPLACE,
2690 key_conf->keyidx, key_type,
2691 key_conf->keylen, key_conf->key,
2692 tx_seq_32, tx_seq_16, sta);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03002693 if (ret < 0) {
2694 wl1271_error("Could not add or replace key");
2695 goto out_sleep;
2696 }
2697 break;
2698
2699 case DISABLE_KEY:
Arik Nemtsov7f179b42010-10-16 21:39:06 +02002700 ret = wl1271_set_key(wl, KEY_REMOVE,
2701 key_conf->keyidx, key_type,
2702 key_conf->keylen, key_conf->key,
2703 0, 0, sta);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03002704 if (ret < 0) {
2705 wl1271_error("Could not remove key");
2706 goto out_sleep;
2707 }
2708 break;
2709
2710 default:
2711 wl1271_error("Unsupported key cmd 0x%x", cmd);
2712 ret = -EOPNOTSUPP;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03002713 break;
2714 }
2715
2716out_sleep:
2717 wl1271_ps_elp_sleep(wl);
2718
2719out_unlock:
2720 mutex_unlock(&wl->mutex);
2721
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03002722 return ret;
2723}
2724
2725static int wl1271_op_hw_scan(struct ieee80211_hw *hw,
Johannes Berga060bbf2010-04-27 11:59:34 +02002726 struct ieee80211_vif *vif,
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03002727 struct cfg80211_scan_request *req)
2728{
2729 struct wl1271 *wl = hw->priv;
2730 int ret;
2731 u8 *ssid = NULL;
Teemu Paasikiviabb0b3b2009-10-13 12:47:50 +03002732 size_t len = 0;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03002733
2734 wl1271_debug(DEBUG_MAC80211, "mac80211 hw scan");
2735
2736 if (req->n_ssids) {
2737 ssid = req->ssids[0].ssid;
Teemu Paasikiviabb0b3b2009-10-13 12:47:50 +03002738 len = req->ssids[0].ssid_len;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03002739 }
2740
2741 mutex_lock(&wl->mutex);
2742
Juuso Oikarinenb739a422010-10-26 13:24:38 +02002743 if (wl->state == WL1271_STATE_OFF) {
2744 /*
2745 * We cannot return -EBUSY here because cfg80211 will expect
2746 * a call to ieee80211_scan_completed if we do - in this case
2747 * there won't be any call.
2748 */
2749 ret = -EAGAIN;
2750 goto out;
2751 }
2752
Ido Yariva6208652011-03-01 15:14:41 +02002753 ret = wl1271_ps_elp_wakeup(wl);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03002754 if (ret < 0)
2755 goto out;
2756
Luciano Coelho5924f892010-08-04 03:46:22 +03002757 ret = wl1271_scan(hw->priv, ssid, len, req);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03002758
2759 wl1271_ps_elp_sleep(wl);
2760
2761out:
2762 mutex_unlock(&wl->mutex);
2763
2764 return ret;
2765}
2766
Luciano Coelho33c2c062011-05-10 14:46:02 +03002767static int wl1271_op_sched_scan_start(struct ieee80211_hw *hw,
2768 struct ieee80211_vif *vif,
2769 struct cfg80211_sched_scan_request *req,
2770 struct ieee80211_sched_scan_ies *ies)
2771{
2772 struct wl1271 *wl = hw->priv;
2773 int ret;
2774
2775 wl1271_debug(DEBUG_MAC80211, "wl1271_op_sched_scan_start");
2776
2777 mutex_lock(&wl->mutex);
2778
2779 ret = wl1271_ps_elp_wakeup(wl);
2780 if (ret < 0)
2781 goto out;
2782
2783 ret = wl1271_scan_sched_scan_config(wl, req, ies);
2784 if (ret < 0)
2785 goto out_sleep;
2786
2787 ret = wl1271_scan_sched_scan_start(wl);
2788 if (ret < 0)
2789 goto out_sleep;
2790
2791 wl->sched_scanning = true;
2792
2793out_sleep:
2794 wl1271_ps_elp_sleep(wl);
2795out:
2796 mutex_unlock(&wl->mutex);
2797 return ret;
2798}
2799
2800static void wl1271_op_sched_scan_stop(struct ieee80211_hw *hw,
2801 struct ieee80211_vif *vif)
2802{
2803 struct wl1271 *wl = hw->priv;
2804 int ret;
2805
2806 wl1271_debug(DEBUG_MAC80211, "wl1271_op_sched_scan_stop");
2807
2808 mutex_lock(&wl->mutex);
2809
2810 ret = wl1271_ps_elp_wakeup(wl);
2811 if (ret < 0)
2812 goto out;
2813
2814 wl1271_scan_sched_scan_stop(wl);
2815
2816 wl1271_ps_elp_sleep(wl);
2817out:
2818 mutex_unlock(&wl->mutex);
2819}
2820
Arik Nemtsov68d069c2010-11-08 10:51:07 +01002821static int wl1271_op_set_frag_threshold(struct ieee80211_hw *hw, u32 value)
2822{
2823 struct wl1271 *wl = hw->priv;
2824 int ret = 0;
2825
2826 mutex_lock(&wl->mutex);
2827
2828 if (unlikely(wl->state == WL1271_STATE_OFF)) {
2829 ret = -EAGAIN;
2830 goto out;
2831 }
2832
Ido Yariva6208652011-03-01 15:14:41 +02002833 ret = wl1271_ps_elp_wakeup(wl);
Arik Nemtsov68d069c2010-11-08 10:51:07 +01002834 if (ret < 0)
2835 goto out;
2836
Arik Nemtsov5f704d12011-04-18 14:15:21 +03002837 ret = wl1271_acx_frag_threshold(wl, value);
Arik Nemtsov68d069c2010-11-08 10:51:07 +01002838 if (ret < 0)
2839 wl1271_warning("wl1271_op_set_frag_threshold failed: %d", ret);
2840
2841 wl1271_ps_elp_sleep(wl);
2842
2843out:
2844 mutex_unlock(&wl->mutex);
2845
2846 return ret;
2847}
2848
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03002849static int wl1271_op_set_rts_threshold(struct ieee80211_hw *hw, u32 value)
2850{
2851 struct wl1271 *wl = hw->priv;
Saravanan Dhanabalaecb0562010-04-09 11:07:28 +03002852 int ret = 0;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03002853
2854 mutex_lock(&wl->mutex);
2855
Juuso Oikarinenf8d98022010-10-26 13:24:39 +02002856 if (unlikely(wl->state == WL1271_STATE_OFF)) {
2857 ret = -EAGAIN;
Saravanan Dhanabalaecb0562010-04-09 11:07:28 +03002858 goto out;
Juuso Oikarinenf8d98022010-10-26 13:24:39 +02002859 }
Saravanan Dhanabalaecb0562010-04-09 11:07:28 +03002860
Ido Yariva6208652011-03-01 15:14:41 +02002861 ret = wl1271_ps_elp_wakeup(wl);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03002862 if (ret < 0)
2863 goto out;
2864
Arik Nemtsov5f704d12011-04-18 14:15:21 +03002865 ret = wl1271_acx_rts_threshold(wl, value);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03002866 if (ret < 0)
2867 wl1271_warning("wl1271_op_set_rts_threshold failed: %d", ret);
2868
2869 wl1271_ps_elp_sleep(wl);
2870
2871out:
2872 mutex_unlock(&wl->mutex);
2873
2874 return ret;
2875}
2876
Arik Nemtsove78a2872010-10-16 19:07:21 +02002877static int wl1271_ssid_set(struct wl1271 *wl, struct sk_buff *skb,
Juuso Oikarinen2f6724b2010-11-24 08:16:57 +02002878 int offset)
Juuso Oikarinen30240fc2010-02-18 13:25:38 +02002879{
Eliad Peller889cb362011-05-01 09:56:45 +03002880 u8 ssid_len;
2881 const u8 *ptr = cfg80211_find_ie(WLAN_EID_SSID, skb->data + offset,
2882 skb->len - offset);
Juuso Oikarinen30240fc2010-02-18 13:25:38 +02002883
Eliad Peller889cb362011-05-01 09:56:45 +03002884 if (!ptr) {
2885 wl1271_error("No SSID in IEs!");
2886 return -ENOENT;
Juuso Oikarinen30240fc2010-02-18 13:25:38 +02002887 }
Arik Nemtsove78a2872010-10-16 19:07:21 +02002888
Eliad Peller889cb362011-05-01 09:56:45 +03002889 ssid_len = ptr[1];
2890 if (ssid_len > IEEE80211_MAX_SSID_LEN) {
2891 wl1271_error("SSID is too long!");
2892 return -EINVAL;
2893 }
2894
2895 wl->ssid_len = ssid_len;
2896 memcpy(wl->ssid, ptr+2, ssid_len);
2897 return 0;
Juuso Oikarinen30240fc2010-02-18 13:25:38 +02002898}
2899
Arik Nemtsove78a2872010-10-16 19:07:21 +02002900static int wl1271_bss_erp_info_changed(struct wl1271 *wl,
2901 struct ieee80211_bss_conf *bss_conf,
2902 u32 changed)
2903{
2904 int ret = 0;
2905
2906 if (changed & BSS_CHANGED_ERP_SLOT) {
2907 if (bss_conf->use_short_slot)
2908 ret = wl1271_acx_slot(wl, SLOT_TIME_SHORT);
2909 else
2910 ret = wl1271_acx_slot(wl, SLOT_TIME_LONG);
2911 if (ret < 0) {
2912 wl1271_warning("Set slot time failed %d", ret);
2913 goto out;
2914 }
2915 }
2916
2917 if (changed & BSS_CHANGED_ERP_PREAMBLE) {
2918 if (bss_conf->use_short_preamble)
2919 wl1271_acx_set_preamble(wl, ACX_PREAMBLE_SHORT);
2920 else
2921 wl1271_acx_set_preamble(wl, ACX_PREAMBLE_LONG);
2922 }
2923
2924 if (changed & BSS_CHANGED_ERP_CTS_PROT) {
2925 if (bss_conf->use_cts_prot)
2926 ret = wl1271_acx_cts_protect(wl, CTSPROTECT_ENABLE);
2927 else
2928 ret = wl1271_acx_cts_protect(wl, CTSPROTECT_DISABLE);
2929 if (ret < 0) {
2930 wl1271_warning("Set ctsprotect failed %d", ret);
2931 goto out;
2932 }
2933 }
2934
2935out:
2936 return ret;
2937}
2938
2939static int wl1271_bss_beacon_info_changed(struct wl1271 *wl,
2940 struct ieee80211_vif *vif,
2941 struct ieee80211_bss_conf *bss_conf,
2942 u32 changed)
2943{
2944 bool is_ap = (wl->bss_type == BSS_TYPE_AP_BSS);
2945 int ret = 0;
2946
2947 if ((changed & BSS_CHANGED_BEACON_INT)) {
2948 wl1271_debug(DEBUG_MASTER, "beacon interval updated: %d",
2949 bss_conf->beacon_int);
2950
2951 wl->beacon_int = bss_conf->beacon_int;
2952 }
2953
2954 if ((changed & BSS_CHANGED_BEACON)) {
2955 struct ieee80211_hdr *hdr;
2956 int ieoffset = offsetof(struct ieee80211_mgmt,
2957 u.beacon.variable);
2958 struct sk_buff *beacon = ieee80211_beacon_get(wl->hw, vif);
2959 u16 tmpl_id;
2960
2961 if (!beacon)
2962 goto out;
2963
2964 wl1271_debug(DEBUG_MASTER, "beacon updated");
2965
2966 ret = wl1271_ssid_set(wl, beacon, ieoffset);
2967 if (ret < 0) {
2968 dev_kfree_skb(beacon);
2969 goto out;
2970 }
2971 tmpl_id = is_ap ? CMD_TEMPL_AP_BEACON :
2972 CMD_TEMPL_BEACON;
2973 ret = wl1271_cmd_template_set(wl, tmpl_id,
2974 beacon->data,
2975 beacon->len, 0,
2976 wl1271_tx_min_rate_get(wl));
2977 if (ret < 0) {
2978 dev_kfree_skb(beacon);
2979 goto out;
2980 }
2981
2982 hdr = (struct ieee80211_hdr *) beacon->data;
2983 hdr->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
2984 IEEE80211_STYPE_PROBE_RESP);
2985
2986 tmpl_id = is_ap ? CMD_TEMPL_AP_PROBE_RESPONSE :
2987 CMD_TEMPL_PROBE_RESPONSE;
2988 ret = wl1271_cmd_template_set(wl,
2989 tmpl_id,
2990 beacon->data,
2991 beacon->len, 0,
2992 wl1271_tx_min_rate_get(wl));
2993 dev_kfree_skb(beacon);
2994 if (ret < 0)
2995 goto out;
2996 }
2997
2998out:
2999 return ret;
3000}
3001
3002/* AP mode changes */
3003static void wl1271_bss_info_changed_ap(struct wl1271 *wl,
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03003004 struct ieee80211_vif *vif,
3005 struct ieee80211_bss_conf *bss_conf,
3006 u32 changed)
3007{
Arik Nemtsove78a2872010-10-16 19:07:21 +02003008 int ret = 0;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03003009
Arik Nemtsove78a2872010-10-16 19:07:21 +02003010 if ((changed & BSS_CHANGED_BASIC_RATES)) {
3011 u32 rates = bss_conf->basic_rates;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03003012
Arik Nemtsove78a2872010-10-16 19:07:21 +02003013 wl->basic_rate_set = wl1271_tx_enabled_rates_get(wl, rates);
3014 wl->basic_rate = wl1271_tx_min_rate_get(wl);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03003015
Arik Nemtsov70f47422011-04-18 14:15:25 +03003016 ret = wl1271_init_ap_rates(wl);
Arik Nemtsove78a2872010-10-16 19:07:21 +02003017 if (ret < 0) {
Arik Nemtsov70f47422011-04-18 14:15:25 +03003018 wl1271_error("AP rate policy change failed %d", ret);
Arik Nemtsove78a2872010-10-16 19:07:21 +02003019 goto out;
Juuso Oikarinene0d8bbf2009-12-11 15:41:04 +02003020 }
Arik Nemtsovc45a85b2011-04-18 14:15:26 +03003021
3022 ret = wl1271_ap_init_templates(wl);
3023 if (ret < 0)
3024 goto out;
Juuso Oikarinene0d8bbf2009-12-11 15:41:04 +02003025 }
3026
Arik Nemtsove78a2872010-10-16 19:07:21 +02003027 ret = wl1271_bss_beacon_info_changed(wl, vif, bss_conf, changed);
3028 if (ret < 0)
3029 goto out;
3030
3031 if ((changed & BSS_CHANGED_BEACON_ENABLED)) {
3032 if (bss_conf->enable_beacon) {
3033 if (!test_bit(WL1271_FLAG_AP_STARTED, &wl->flags)) {
3034 ret = wl1271_cmd_start_bss(wl);
3035 if (ret < 0)
3036 goto out;
3037
3038 set_bit(WL1271_FLAG_AP_STARTED, &wl->flags);
3039 wl1271_debug(DEBUG_AP, "started AP");
Arik Nemtsov7f179b42010-10-16 21:39:06 +02003040
3041 ret = wl1271_ap_init_hwenc(wl);
3042 if (ret < 0)
3043 goto out;
Arik Nemtsove78a2872010-10-16 19:07:21 +02003044 }
3045 } else {
3046 if (test_bit(WL1271_FLAG_AP_STARTED, &wl->flags)) {
3047 ret = wl1271_cmd_stop_bss(wl);
3048 if (ret < 0)
3049 goto out;
3050
3051 clear_bit(WL1271_FLAG_AP_STARTED, &wl->flags);
3052 wl1271_debug(DEBUG_AP, "stopped AP");
3053 }
3054 }
3055 }
3056
3057 ret = wl1271_bss_erp_info_changed(wl, bss_conf, changed);
3058 if (ret < 0)
3059 goto out;
3060out:
3061 return;
3062}
3063
3064/* STA/IBSS mode changes */
3065static void wl1271_bss_info_changed_sta(struct wl1271 *wl,
3066 struct ieee80211_vif *vif,
3067 struct ieee80211_bss_conf *bss_conf,
3068 u32 changed)
3069{
3070 bool do_join = false, set_assoc = false;
3071 bool is_ibss = (wl->bss_type == BSS_TYPE_IBSS);
Eliad Peller72c2d9e2011-02-02 09:59:37 +02003072 u32 sta_rate_set = 0;
Arik Nemtsove78a2872010-10-16 19:07:21 +02003073 int ret;
Luciano Coelho2d6e4e762011-01-11 19:07:21 +01003074 struct ieee80211_sta *sta;
Arik Nemtsova1008852011-02-12 23:24:20 +02003075 bool sta_exists = false;
3076 struct ieee80211_sta_ht_cap sta_ht_cap;
Arik Nemtsove78a2872010-10-16 19:07:21 +02003077
3078 if (is_ibss) {
3079 ret = wl1271_bss_beacon_info_changed(wl, vif, bss_conf,
3080 changed);
3081 if (ret < 0)
3082 goto out;
3083 }
3084
3085 if ((changed & BSS_CHANGED_BEACON_INT) && is_ibss)
3086 do_join = true;
3087
3088 /* Need to update the SSID (for filtering etc) */
3089 if ((changed & BSS_CHANGED_BEACON) && is_ibss)
3090 do_join = true;
3091
3092 if ((changed & BSS_CHANGED_BEACON_ENABLED) && is_ibss) {
Juuso Oikarinen5da11dc2010-03-26 12:53:24 +02003093 wl1271_debug(DEBUG_ADHOC, "ad-hoc beaconing: %s",
3094 bss_conf->enable_beacon ? "enabled" : "disabled");
3095
3096 if (bss_conf->enable_beacon)
3097 wl->set_bss_type = BSS_TYPE_IBSS;
3098 else
3099 wl->set_bss_type = BSS_TYPE_STA_BSS;
3100 do_join = true;
3101 }
3102
Arik Nemtsove78a2872010-10-16 19:07:21 +02003103 if ((changed & BSS_CHANGED_CQM)) {
Juuso Oikarinen00236aed2010-04-09 11:07:30 +03003104 bool enable = false;
3105 if (bss_conf->cqm_rssi_thold)
3106 enable = true;
3107 ret = wl1271_acx_rssi_snr_trigger(wl, enable,
3108 bss_conf->cqm_rssi_thold,
3109 bss_conf->cqm_rssi_hyst);
3110 if (ret < 0)
3111 goto out;
3112 wl->rssi_thold = bss_conf->cqm_rssi_thold;
3113 }
3114
Juuso Oikarinen30240fc2010-02-18 13:25:38 +02003115 if ((changed & BSS_CHANGED_BSSID) &&
3116 /*
3117 * Now we know the correct bssid, so we send a new join command
3118 * and enable the BSSID filter
3119 */
3120 memcmp(wl->bssid, bss_conf->bssid, ETH_ALEN)) {
Arik Nemtsove78a2872010-10-16 19:07:21 +02003121 memcpy(wl->bssid, bss_conf->bssid, ETH_ALEN);
Juuso Oikarinena0cb7be2010-03-18 12:26:44 +02003122
Eliad Pellerfa287b82010-12-26 09:27:50 +01003123 if (!is_zero_ether_addr(wl->bssid)) {
3124 ret = wl1271_cmd_build_null_data(wl);
3125 if (ret < 0)
3126 goto out;
Juuso Oikarinen30240fc2010-02-18 13:25:38 +02003127
Eliad Pellerfa287b82010-12-26 09:27:50 +01003128 ret = wl1271_build_qos_null_data(wl);
3129 if (ret < 0)
3130 goto out;
Saravanan Dhanabal141418c2010-04-28 09:50:00 +03003131
Eliad Pellerfa287b82010-12-26 09:27:50 +01003132 /* filter out all packets not from this BSSID */
3133 wl1271_configure_filters(wl, 0);
Juuso Oikarinen14b228a2010-03-18 12:26:43 +02003134
Eliad Pellerfa287b82010-12-26 09:27:50 +01003135 /* Need to update the BSSID (for filtering etc) */
3136 do_join = true;
3137 }
Juuso Oikarinen30240fc2010-02-18 13:25:38 +02003138 }
3139
Eliad Peller72c2d9e2011-02-02 09:59:37 +02003140 rcu_read_lock();
3141 sta = ieee80211_find_sta(vif, bss_conf->bssid);
3142 if (sta) {
3143 /* save the supp_rates of the ap */
3144 sta_rate_set = sta->supp_rates[wl->hw->conf.channel->band];
3145 if (sta->ht_cap.ht_supported)
3146 sta_rate_set |=
3147 (sta->ht_cap.mcs.rx_mask[0] << HW_HT_RATES_OFFSET);
Arik Nemtsova1008852011-02-12 23:24:20 +02003148 sta_ht_cap = sta->ht_cap;
3149 sta_exists = true;
3150 }
3151 rcu_read_unlock();
Eliad Peller72c2d9e2011-02-02 09:59:37 +02003152
Arik Nemtsova1008852011-02-12 23:24:20 +02003153 if (sta_exists) {
Eliad Peller72c2d9e2011-02-02 09:59:37 +02003154 /* handle new association with HT and HT information change */
3155 if ((changed & BSS_CHANGED_HT) &&
3156 (bss_conf->channel_type != NL80211_CHAN_NO_HT)) {
Arik Nemtsova1008852011-02-12 23:24:20 +02003157 ret = wl1271_acx_set_ht_capabilities(wl, &sta_ht_cap,
Eliad Peller72c2d9e2011-02-02 09:59:37 +02003158 true);
3159 if (ret < 0) {
3160 wl1271_warning("Set ht cap true failed %d",
3161 ret);
Eliad Peller72c2d9e2011-02-02 09:59:37 +02003162 goto out;
3163 }
3164 ret = wl1271_acx_set_ht_information(wl,
3165 bss_conf->ht_operation_mode);
3166 if (ret < 0) {
3167 wl1271_warning("Set ht information failed %d",
3168 ret);
Eliad Peller72c2d9e2011-02-02 09:59:37 +02003169 goto out;
3170 }
3171 }
3172 /* handle new association without HT and disassociation */
3173 else if (changed & BSS_CHANGED_ASSOC) {
Arik Nemtsova1008852011-02-12 23:24:20 +02003174 ret = wl1271_acx_set_ht_capabilities(wl, &sta_ht_cap,
Eliad Peller72c2d9e2011-02-02 09:59:37 +02003175 false);
3176 if (ret < 0) {
3177 wl1271_warning("Set ht cap false failed %d",
3178 ret);
Eliad Peller72c2d9e2011-02-02 09:59:37 +02003179 goto out;
3180 }
3181 }
3182 }
Eliad Peller72c2d9e2011-02-02 09:59:37 +02003183
Arik Nemtsove78a2872010-10-16 19:07:21 +02003184 if ((changed & BSS_CHANGED_ASSOC)) {
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03003185 if (bss_conf->assoc) {
Juuso Oikarinenebba60c2010-04-01 11:38:20 +03003186 u32 rates;
Juuso Oikarinen2f6724b2010-11-24 08:16:57 +02003187 int ieoffset;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03003188 wl->aid = bss_conf->aid;
Juuso Oikarinen69e54342010-05-07 11:39:00 +03003189 set_assoc = true;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03003190
Juuso Oikarinen90494a92010-07-08 17:50:00 +03003191 wl->ps_poll_failures = 0;
3192
Luciano Coelhoae751ba2009-10-12 15:08:57 +03003193 /*
Juuso Oikarinenebba60c2010-04-01 11:38:20 +03003194 * use basic rates from AP, and determine lowest rate
3195 * to use with control frames.
3196 */
3197 rates = bss_conf->basic_rates;
3198 wl->basic_rate_set = wl1271_tx_enabled_rates_get(wl,
3199 rates);
Arik Nemtsove0fe3712010-10-16 18:19:53 +02003200 wl->basic_rate = wl1271_tx_min_rate_get(wl);
Eliad Peller72c2d9e2011-02-02 09:59:37 +02003201 if (sta_rate_set)
3202 wl->rate_set = wl1271_tx_enabled_rates_get(wl,
3203 sta_rate_set);
Arik Nemtsov79b223f2010-10-16 17:52:59 +02003204 ret = wl1271_acx_sta_rate_policies(wl);
Juuso Oikarinenebba60c2010-04-01 11:38:20 +03003205 if (ret < 0)
Arik Nemtsove78a2872010-10-16 19:07:21 +02003206 goto out;
Juuso Oikarinenebba60c2010-04-01 11:38:20 +03003207
3208 /*
Luciano Coelhoae751ba2009-10-12 15:08:57 +03003209 * with wl1271, we don't need to update the
3210 * beacon_int and dtim_period, because the firmware
3211 * updates it by itself when the first beacon is
3212 * received after a join.
3213 */
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03003214 ret = wl1271_cmd_build_ps_poll(wl, wl->aid);
3215 if (ret < 0)
Arik Nemtsove78a2872010-10-16 19:07:21 +02003216 goto out;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03003217
Juuso Oikarinenc2b2d992010-03-26 12:53:28 +02003218 /*
Juuso Oikarinen2f6724b2010-11-24 08:16:57 +02003219 * Get a template for hardware connection maintenance
Juuso Oikarinenc2b2d992010-03-26 12:53:28 +02003220 */
Juuso Oikarinen2f6724b2010-11-24 08:16:57 +02003221 dev_kfree_skb(wl->probereq);
3222 wl->probereq = wl1271_cmd_build_ap_probe_req(wl, NULL);
3223 ieoffset = offsetof(struct ieee80211_mgmt,
3224 u.probe_req.variable);
3225 wl1271_ssid_set(wl, wl->probereq, ieoffset);
Juuso Oikarinenc2b2d992010-03-26 12:53:28 +02003226
Juuso Oikarinen6ccbb922010-03-26 12:53:23 +02003227 /* enable the connection monitoring feature */
3228 ret = wl1271_acx_conn_monit_params(wl, true);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03003229 if (ret < 0)
Arik Nemtsove78a2872010-10-16 19:07:21 +02003230 goto out;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03003231
3232 /* If we want to go in PSM but we're not there yet */
Juuso Oikarinen71449f82009-12-11 15:41:07 +02003233 if (test_bit(WL1271_FLAG_PSM_REQUESTED, &wl->flags) &&
3234 !test_bit(WL1271_FLAG_PSM, &wl->flags)) {
Arik Nemtsove78a2872010-10-16 19:07:21 +02003235 enum wl1271_cmd_ps_mode mode;
3236
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03003237 mode = STATION_POWER_SAVE_MODE;
Juuso Oikarinen65cddbf12010-08-24 06:28:03 +03003238 ret = wl1271_ps_set_mode(wl, mode,
Juuso Oikarinen8eab7b42010-09-24 03:10:11 +02003239 wl->basic_rate,
Juuso Oikarinen65cddbf12010-08-24 06:28:03 +03003240 true);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03003241 if (ret < 0)
Arik Nemtsove78a2872010-10-16 19:07:21 +02003242 goto out;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03003243 }
Juuso Oikarinend94cd292009-10-08 21:56:25 +03003244 } else {
3245 /* use defaults when not associated */
Eliad Peller30df14d2011-04-05 19:13:28 +03003246 bool was_assoc =
3247 !!test_and_clear_bit(WL1271_FLAG_STA_ASSOCIATED,
3248 &wl->flags);
Juuso Oikarinenc2c192a2010-07-27 03:30:09 +03003249 clear_bit(WL1271_FLAG_STA_STATE_SENT, &wl->flags);
Juuso Oikarinend94cd292009-10-08 21:56:25 +03003250 wl->aid = 0;
Juuso Oikarinen6ccbb922010-03-26 12:53:23 +02003251
Juuso Oikarinen2f6724b2010-11-24 08:16:57 +02003252 /* free probe-request template */
3253 dev_kfree_skb(wl->probereq);
3254 wl->probereq = NULL;
3255
Juuso Oikarinen8d2ef7b2010-07-08 17:50:03 +03003256 /* re-enable dynamic ps - just in case */
Juuso Oikarinenf532be62010-07-08 17:50:05 +03003257 ieee80211_enable_dyn_ps(wl->vif);
Juuso Oikarinen8d2ef7b2010-07-08 17:50:03 +03003258
Juuso Oikarinenebba60c2010-04-01 11:38:20 +03003259 /* revert back to minimum rates for the current band */
3260 wl1271_set_band_rate(wl);
Arik Nemtsove0fe3712010-10-16 18:19:53 +02003261 wl->basic_rate = wl1271_tx_min_rate_get(wl);
Arik Nemtsov79b223f2010-10-16 17:52:59 +02003262 ret = wl1271_acx_sta_rate_policies(wl);
Juuso Oikarinenebba60c2010-04-01 11:38:20 +03003263 if (ret < 0)
Arik Nemtsove78a2872010-10-16 19:07:21 +02003264 goto out;
Juuso Oikarinenebba60c2010-04-01 11:38:20 +03003265
Juuso Oikarinen6ccbb922010-03-26 12:53:23 +02003266 /* disable connection monitor features */
3267 ret = wl1271_acx_conn_monit_params(wl, false);
Juuso Oikarinenc1899552010-03-26 12:53:32 +02003268
3269 /* Disable the keep-alive feature */
3270 ret = wl1271_acx_keep_alive_mode(wl, false);
Juuso Oikarinen6ccbb922010-03-26 12:53:23 +02003271 if (ret < 0)
Arik Nemtsove78a2872010-10-16 19:07:21 +02003272 goto out;
Juuso Oikarinenb84a7d32010-11-22 12:59:08 +02003273
3274 /* restore the bssid filter and go to dummy bssid */
Eliad Peller30df14d2011-04-05 19:13:28 +03003275 if (was_assoc) {
3276 wl1271_unjoin(wl);
3277 wl1271_dummy_join(wl);
3278 }
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03003279 }
3280 }
Juuso Oikarinen8a5a37a2009-10-08 21:56:24 +03003281
Eliad Pellerd192d262011-05-24 14:33:08 +03003282 if (changed & BSS_CHANGED_IBSS) {
3283 wl1271_debug(DEBUG_ADHOC, "ibss_joined: %d",
3284 bss_conf->ibss_joined);
3285
3286 if (bss_conf->ibss_joined) {
3287 u32 rates = bss_conf->basic_rates;
3288 wl->basic_rate_set = wl1271_tx_enabled_rates_get(wl,
3289 rates);
3290 wl->basic_rate = wl1271_tx_min_rate_get(wl);
3291
3292 /* by default, use 11b rates */
3293 wl->rate_set = CONF_TX_IBSS_DEFAULT_RATES;
3294 ret = wl1271_acx_sta_rate_policies(wl);
3295 if (ret < 0)
3296 goto out;
3297 }
3298 }
3299
Arik Nemtsove78a2872010-10-16 19:07:21 +02003300 ret = wl1271_bss_erp_info_changed(wl, bss_conf, changed);
3301 if (ret < 0)
3302 goto out;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03003303
Juuso Oikarinenca52a5e2010-07-08 17:50:02 +03003304 if (changed & BSS_CHANGED_ARP_FILTER) {
3305 __be32 addr = bss_conf->arp_addr_list[0];
3306 WARN_ON(wl->bss_type != BSS_TYPE_STA_BSS);
3307
Eliad Pellerc5312772010-12-09 11:31:27 +02003308 if (bss_conf->arp_addr_cnt == 1 &&
3309 bss_conf->arp_filter_enabled) {
3310 /*
3311 * The template should have been configured only upon
3312 * association. however, it seems that the correct ip
3313 * isn't being set (when sending), so we have to
3314 * reconfigure the template upon every ip change.
3315 */
3316 ret = wl1271_cmd_build_arp_rsp(wl, addr);
3317 if (ret < 0) {
3318 wl1271_warning("build arp rsp failed: %d", ret);
Arik Nemtsove78a2872010-10-16 19:07:21 +02003319 goto out;
Eliad Pellerc5312772010-12-09 11:31:27 +02003320 }
3321
3322 ret = wl1271_acx_arp_ip_filter(wl,
Eliad Pellere5e2f242011-01-24 19:19:03 +01003323 ACX_ARP_FILTER_ARP_FILTERING,
Eliad Pellerc5312772010-12-09 11:31:27 +02003324 addr);
3325 } else
3326 ret = wl1271_acx_arp_ip_filter(wl, 0, addr);
Juuso Oikarinenca52a5e2010-07-08 17:50:02 +03003327
3328 if (ret < 0)
Arik Nemtsove78a2872010-10-16 19:07:21 +02003329 goto out;
Juuso Oikarinenca52a5e2010-07-08 17:50:02 +03003330 }
3331
Juuso Oikarinen8bf29b02010-02-18 13:25:51 +02003332 if (do_join) {
Juuso Oikarinen69e54342010-05-07 11:39:00 +03003333 ret = wl1271_join(wl, set_assoc);
Juuso Oikarinen8bf29b02010-02-18 13:25:51 +02003334 if (ret < 0) {
3335 wl1271_warning("cmd join failed %d", ret);
Arik Nemtsove78a2872010-10-16 19:07:21 +02003336 goto out;
Juuso Oikarinen8bf29b02010-02-18 13:25:51 +02003337 }
Eliad Pelleref4b29e2011-06-06 13:03:12 +03003338 wl1271_check_operstate(wl, ieee80211_get_operstate(vif));
Juuso Oikarinenc1899552010-03-26 12:53:32 +02003339 }
3340
Arik Nemtsove78a2872010-10-16 19:07:21 +02003341out:
3342 return;
3343}
3344
3345static void wl1271_op_bss_info_changed(struct ieee80211_hw *hw,
3346 struct ieee80211_vif *vif,
3347 struct ieee80211_bss_conf *bss_conf,
3348 u32 changed)
3349{
3350 struct wl1271 *wl = hw->priv;
3351 bool is_ap = (wl->bss_type == BSS_TYPE_AP_BSS);
3352 int ret;
3353
3354 wl1271_debug(DEBUG_MAC80211, "mac80211 bss info changed 0x%x",
3355 (int)changed);
3356
3357 mutex_lock(&wl->mutex);
3358
3359 if (unlikely(wl->state == WL1271_STATE_OFF))
3360 goto out;
3361
Ido Yariva6208652011-03-01 15:14:41 +02003362 ret = wl1271_ps_elp_wakeup(wl);
Arik Nemtsove78a2872010-10-16 19:07:21 +02003363 if (ret < 0)
3364 goto out;
3365
3366 if (is_ap)
3367 wl1271_bss_info_changed_ap(wl, vif, bss_conf, changed);
3368 else
3369 wl1271_bss_info_changed_sta(wl, vif, bss_conf, changed);
3370
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03003371 wl1271_ps_elp_sleep(wl);
3372
3373out:
3374 mutex_unlock(&wl->mutex);
3375}
3376
Kalle Valoc6999d82010-02-18 13:25:41 +02003377static int wl1271_op_conf_tx(struct ieee80211_hw *hw, u16 queue,
3378 const struct ieee80211_tx_queue_params *params)
3379{
3380 struct wl1271 *wl = hw->priv;
Kalle Valo4695dc92010-03-18 12:26:38 +02003381 u8 ps_scheme;
Arik Nemtsov488fc542010-10-16 20:33:45 +02003382 int ret = 0;
Kalle Valoc6999d82010-02-18 13:25:41 +02003383
3384 mutex_lock(&wl->mutex);
3385
3386 wl1271_debug(DEBUG_MAC80211, "mac80211 conf tx %d", queue);
3387
Kalle Valo4695dc92010-03-18 12:26:38 +02003388 if (params->uapsd)
3389 ps_scheme = CONF_PS_SCHEME_UPSD_TRIGGER;
3390 else
3391 ps_scheme = CONF_PS_SCHEME_LEGACY;
3392
Arik Nemtsov488fc542010-10-16 20:33:45 +02003393 if (wl->state == WL1271_STATE_OFF) {
3394 /*
3395 * If the state is off, the parameters will be recorded and
3396 * configured on init. This happens in AP-mode.
3397 */
3398 struct conf_tx_ac_category *conf_ac =
3399 &wl->conf.tx.ac_conf[wl1271_tx_get_queue(queue)];
3400 struct conf_tx_tid *conf_tid =
3401 &wl->conf.tx.tid_conf[wl1271_tx_get_queue(queue)];
3402
3403 conf_ac->ac = wl1271_tx_get_queue(queue);
3404 conf_ac->cw_min = (u8)params->cw_min;
3405 conf_ac->cw_max = params->cw_max;
3406 conf_ac->aifsn = params->aifs;
3407 conf_ac->tx_op_limit = params->txop << 5;
3408
3409 conf_tid->queue_id = wl1271_tx_get_queue(queue);
3410 conf_tid->channel_type = CONF_CHANNEL_TYPE_EDCF;
3411 conf_tid->tsid = wl1271_tx_get_queue(queue);
3412 conf_tid->ps_scheme = ps_scheme;
3413 conf_tid->ack_policy = CONF_ACK_POLICY_LEGACY;
3414 conf_tid->apsd_conf[0] = 0;
3415 conf_tid->apsd_conf[1] = 0;
Eliad Pellerc1b193e2011-03-23 22:22:15 +02003416 goto out;
3417 }
Arik Nemtsov488fc542010-10-16 20:33:45 +02003418
Eliad Pellerc1b193e2011-03-23 22:22:15 +02003419 ret = wl1271_ps_elp_wakeup(wl);
3420 if (ret < 0)
3421 goto out;
Arik Nemtsov488fc542010-10-16 20:33:45 +02003422
Eliad Pellerc1b193e2011-03-23 22:22:15 +02003423 /*
3424 * the txop is confed in units of 32us by the mac80211,
3425 * we need us
3426 */
3427 ret = wl1271_acx_ac_cfg(wl, wl1271_tx_get_queue(queue),
3428 params->cw_min, params->cw_max,
3429 params->aifs, params->txop << 5);
3430 if (ret < 0)
3431 goto out_sleep;
3432
3433 ret = wl1271_acx_tid_cfg(wl, wl1271_tx_get_queue(queue),
3434 CONF_CHANNEL_TYPE_EDCF,
3435 wl1271_tx_get_queue(queue),
3436 ps_scheme, CONF_ACK_POLICY_LEGACY,
3437 0, 0);
Kalle Valoc82c1dd2010-02-18 13:25:47 +02003438
3439out_sleep:
Eliad Pellerc1b193e2011-03-23 22:22:15 +02003440 wl1271_ps_elp_sleep(wl);
Kalle Valoc6999d82010-02-18 13:25:41 +02003441
3442out:
3443 mutex_unlock(&wl->mutex);
3444
3445 return ret;
3446}
3447
Juuso Oikarinenbbbb5382010-07-08 17:49:57 +03003448static u64 wl1271_op_get_tsf(struct ieee80211_hw *hw)
3449{
3450
3451 struct wl1271 *wl = hw->priv;
3452 u64 mactime = ULLONG_MAX;
3453 int ret;
3454
3455 wl1271_debug(DEBUG_MAC80211, "mac80211 get tsf");
3456
3457 mutex_lock(&wl->mutex);
3458
Juuso Oikarinenf8d98022010-10-26 13:24:39 +02003459 if (unlikely(wl->state == WL1271_STATE_OFF))
3460 goto out;
3461
Ido Yariva6208652011-03-01 15:14:41 +02003462 ret = wl1271_ps_elp_wakeup(wl);
Juuso Oikarinenbbbb5382010-07-08 17:49:57 +03003463 if (ret < 0)
3464 goto out;
3465
3466 ret = wl1271_acx_tsf_info(wl, &mactime);
3467 if (ret < 0)
3468 goto out_sleep;
3469
3470out_sleep:
3471 wl1271_ps_elp_sleep(wl);
3472
3473out:
3474 mutex_unlock(&wl->mutex);
3475 return mactime;
3476}
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03003477
John W. Linvilleece550d2010-07-28 16:41:06 -04003478static int wl1271_op_get_survey(struct ieee80211_hw *hw, int idx,
3479 struct survey_info *survey)
3480{
3481 struct wl1271 *wl = hw->priv;
3482 struct ieee80211_conf *conf = &hw->conf;
Juuso Oikarinenb739a422010-10-26 13:24:38 +02003483
John W. Linvilleece550d2010-07-28 16:41:06 -04003484 if (idx != 0)
3485 return -ENOENT;
Juuso Oikarinenb739a422010-10-26 13:24:38 +02003486
John W. Linvilleece550d2010-07-28 16:41:06 -04003487 survey->channel = conf->channel;
3488 survey->filled = SURVEY_INFO_NOISE_DBM;
3489 survey->noise = wl->noise;
Juuso Oikarinenb739a422010-10-26 13:24:38 +02003490
John W. Linvilleece550d2010-07-28 16:41:06 -04003491 return 0;
3492}
3493
Arik Nemtsov409622e2011-02-23 00:22:29 +02003494static int wl1271_allocate_sta(struct wl1271 *wl,
Arik Nemtsovf84f7d72010-10-16 20:21:23 +02003495 struct ieee80211_sta *sta,
3496 u8 *hlid)
3497{
3498 struct wl1271_station *wl_sta;
3499 int id;
3500
3501 id = find_first_zero_bit(wl->ap_hlid_map, AP_MAX_STATIONS);
3502 if (id >= AP_MAX_STATIONS) {
3503 wl1271_warning("could not allocate HLID - too much stations");
3504 return -EBUSY;
3505 }
3506
3507 wl_sta = (struct wl1271_station *)sta->drv_priv;
Arik Nemtsovf84f7d72010-10-16 20:21:23 +02003508 __set_bit(id, wl->ap_hlid_map);
3509 wl_sta->hlid = WL1271_AP_STA_HLID_START + id;
3510 *hlid = wl_sta->hlid;
Arik Nemtsovb622d992011-02-23 00:22:31 +02003511 memcpy(wl->links[wl_sta->hlid].addr, sta->addr, ETH_ALEN);
Arik Nemtsovf84f7d72010-10-16 20:21:23 +02003512 return 0;
3513}
3514
Arik Nemtsov409622e2011-02-23 00:22:29 +02003515static void wl1271_free_sta(struct wl1271 *wl, u8 hlid)
Arik Nemtsovf84f7d72010-10-16 20:21:23 +02003516{
3517 int id = hlid - WL1271_AP_STA_HLID_START;
3518
Arik Nemtsov409622e2011-02-23 00:22:29 +02003519 if (WARN_ON(!test_bit(id, wl->ap_hlid_map)))
3520 return;
3521
Arik Nemtsovf84f7d72010-10-16 20:21:23 +02003522 __clear_bit(id, wl->ap_hlid_map);
Arik Nemtsovb622d992011-02-23 00:22:31 +02003523 memset(wl->links[hlid].addr, 0, ETH_ALEN);
Arik Nemtsova8c0ddb2011-02-23 00:22:26 +02003524 wl1271_tx_reset_link_queues(wl, hlid);
Arik Nemtsovb622d992011-02-23 00:22:31 +02003525 __clear_bit(hlid, &wl->ap_ps_map);
3526 __clear_bit(hlid, (unsigned long *)&wl->ap_fw_ps_map);
Arik Nemtsovf84f7d72010-10-16 20:21:23 +02003527}
3528
3529static int wl1271_op_sta_add(struct ieee80211_hw *hw,
3530 struct ieee80211_vif *vif,
3531 struct ieee80211_sta *sta)
3532{
3533 struct wl1271 *wl = hw->priv;
3534 int ret = 0;
3535 u8 hlid;
3536
3537 mutex_lock(&wl->mutex);
3538
3539 if (unlikely(wl->state == WL1271_STATE_OFF))
3540 goto out;
3541
3542 if (wl->bss_type != BSS_TYPE_AP_BSS)
3543 goto out;
3544
3545 wl1271_debug(DEBUG_MAC80211, "mac80211 add sta %d", (int)sta->aid);
3546
Arik Nemtsov409622e2011-02-23 00:22:29 +02003547 ret = wl1271_allocate_sta(wl, sta, &hlid);
Arik Nemtsovf84f7d72010-10-16 20:21:23 +02003548 if (ret < 0)
3549 goto out;
3550
Ido Yariva6208652011-03-01 15:14:41 +02003551 ret = wl1271_ps_elp_wakeup(wl);
Arik Nemtsovf84f7d72010-10-16 20:21:23 +02003552 if (ret < 0)
Arik Nemtsov409622e2011-02-23 00:22:29 +02003553 goto out_free_sta;
Arik Nemtsovf84f7d72010-10-16 20:21:23 +02003554
3555 ret = wl1271_cmd_add_sta(wl, sta, hlid);
3556 if (ret < 0)
3557 goto out_sleep;
3558
3559out_sleep:
3560 wl1271_ps_elp_sleep(wl);
3561
Arik Nemtsov409622e2011-02-23 00:22:29 +02003562out_free_sta:
3563 if (ret < 0)
3564 wl1271_free_sta(wl, hlid);
3565
Arik Nemtsovf84f7d72010-10-16 20:21:23 +02003566out:
3567 mutex_unlock(&wl->mutex);
3568 return ret;
3569}
3570
3571static int wl1271_op_sta_remove(struct ieee80211_hw *hw,
3572 struct ieee80211_vif *vif,
3573 struct ieee80211_sta *sta)
3574{
3575 struct wl1271 *wl = hw->priv;
3576 struct wl1271_station *wl_sta;
3577 int ret = 0, id;
3578
3579 mutex_lock(&wl->mutex);
3580
3581 if (unlikely(wl->state == WL1271_STATE_OFF))
3582 goto out;
3583
3584 if (wl->bss_type != BSS_TYPE_AP_BSS)
3585 goto out;
3586
3587 wl1271_debug(DEBUG_MAC80211, "mac80211 remove sta %d", (int)sta->aid);
3588
3589 wl_sta = (struct wl1271_station *)sta->drv_priv;
3590 id = wl_sta->hlid - WL1271_AP_STA_HLID_START;
3591 if (WARN_ON(!test_bit(id, wl->ap_hlid_map)))
3592 goto out;
3593
Ido Yariva6208652011-03-01 15:14:41 +02003594 ret = wl1271_ps_elp_wakeup(wl);
Arik Nemtsovf84f7d72010-10-16 20:21:23 +02003595 if (ret < 0)
3596 goto out;
3597
3598 ret = wl1271_cmd_remove_sta(wl, wl_sta->hlid);
3599 if (ret < 0)
3600 goto out_sleep;
3601
Arik Nemtsov409622e2011-02-23 00:22:29 +02003602 wl1271_free_sta(wl, wl_sta->hlid);
Arik Nemtsovf84f7d72010-10-16 20:21:23 +02003603
3604out_sleep:
3605 wl1271_ps_elp_sleep(wl);
3606
3607out:
3608 mutex_unlock(&wl->mutex);
3609 return ret;
3610}
3611
Luciano Coelho4623ec72011-03-21 19:26:41 +02003612static int wl1271_op_ampdu_action(struct ieee80211_hw *hw,
3613 struct ieee80211_vif *vif,
3614 enum ieee80211_ampdu_mlme_action action,
3615 struct ieee80211_sta *sta, u16 tid, u16 *ssn,
3616 u8 buf_size)
Levi, Shaharbbba3e62011-01-23 07:27:23 +01003617{
3618 struct wl1271 *wl = hw->priv;
3619 int ret;
3620
3621 mutex_lock(&wl->mutex);
3622
3623 if (unlikely(wl->state == WL1271_STATE_OFF)) {
3624 ret = -EAGAIN;
3625 goto out;
3626 }
3627
Ido Yariva6208652011-03-01 15:14:41 +02003628 ret = wl1271_ps_elp_wakeup(wl);
Levi, Shaharbbba3e62011-01-23 07:27:23 +01003629 if (ret < 0)
3630 goto out;
3631
Shahar Levi70559a02011-05-22 16:10:22 +03003632 wl1271_debug(DEBUG_MAC80211, "mac80211 ampdu: Rx tid %d action %d",
3633 tid, action);
3634
Levi, Shaharbbba3e62011-01-23 07:27:23 +01003635 switch (action) {
3636 case IEEE80211_AMPDU_RX_START:
Shahar Levi70559a02011-05-22 16:10:22 +03003637 if ((wl->ba_support) && (wl->ba_allowed)) {
Levi, Shaharbbba3e62011-01-23 07:27:23 +01003638 ret = wl1271_acx_set_ba_receiver_session(wl, tid, *ssn,
3639 true);
3640 if (!ret)
3641 wl->ba_rx_bitmap |= BIT(tid);
3642 } else {
3643 ret = -ENOTSUPP;
3644 }
3645 break;
3646
3647 case IEEE80211_AMPDU_RX_STOP:
3648 ret = wl1271_acx_set_ba_receiver_session(wl, tid, 0, false);
3649 if (!ret)
3650 wl->ba_rx_bitmap &= ~BIT(tid);
3651 break;
3652
3653 /*
3654 * The BA initiator session management in FW independently.
3655 * Falling break here on purpose for all TX APDU commands.
3656 */
3657 case IEEE80211_AMPDU_TX_START:
3658 case IEEE80211_AMPDU_TX_STOP:
3659 case IEEE80211_AMPDU_TX_OPERATIONAL:
3660 ret = -EINVAL;
3661 break;
3662
3663 default:
3664 wl1271_error("Incorrect ampdu action id=%x\n", action);
3665 ret = -EINVAL;
3666 }
3667
3668 wl1271_ps_elp_sleep(wl);
3669
3670out:
3671 mutex_unlock(&wl->mutex);
3672
3673 return ret;
3674}
3675
Arik Nemtsov33437892011-04-26 23:35:39 +03003676static bool wl1271_tx_frames_pending(struct ieee80211_hw *hw)
3677{
3678 struct wl1271 *wl = hw->priv;
3679 bool ret = false;
3680
3681 mutex_lock(&wl->mutex);
3682
3683 if (unlikely(wl->state == WL1271_STATE_OFF))
3684 goto out;
3685
3686 /* packets are considered pending if in the TX queue or the FW */
3687 ret = (wl->tx_queue_count > 0) || (wl->tx_frames_cnt > 0);
3688
3689 /* the above is appropriate for STA mode for PS purposes */
3690 WARN_ON(wl->bss_type != BSS_TYPE_STA_BSS);
3691
3692out:
3693 mutex_unlock(&wl->mutex);
3694
3695 return ret;
3696}
3697
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03003698/* can't be const, mac80211 writes to this */
3699static struct ieee80211_rate wl1271_rates[] = {
3700 { .bitrate = 10,
Juuso Oikarinen2b60100b2009-10-13 12:47:39 +03003701 .hw_value = CONF_HW_BIT_RATE_1MBPS,
3702 .hw_value_short = CONF_HW_BIT_RATE_1MBPS, },
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03003703 { .bitrate = 20,
Juuso Oikarinen2b60100b2009-10-13 12:47:39 +03003704 .hw_value = CONF_HW_BIT_RATE_2MBPS,
3705 .hw_value_short = CONF_HW_BIT_RATE_2MBPS,
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03003706 .flags = IEEE80211_RATE_SHORT_PREAMBLE },
3707 { .bitrate = 55,
Juuso Oikarinen2b60100b2009-10-13 12:47:39 +03003708 .hw_value = CONF_HW_BIT_RATE_5_5MBPS,
3709 .hw_value_short = CONF_HW_BIT_RATE_5_5MBPS,
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03003710 .flags = IEEE80211_RATE_SHORT_PREAMBLE },
3711 { .bitrate = 110,
Juuso Oikarinen2b60100b2009-10-13 12:47:39 +03003712 .hw_value = CONF_HW_BIT_RATE_11MBPS,
3713 .hw_value_short = CONF_HW_BIT_RATE_11MBPS,
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03003714 .flags = IEEE80211_RATE_SHORT_PREAMBLE },
3715 { .bitrate = 60,
Juuso Oikarinen2b60100b2009-10-13 12:47:39 +03003716 .hw_value = CONF_HW_BIT_RATE_6MBPS,
3717 .hw_value_short = CONF_HW_BIT_RATE_6MBPS, },
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03003718 { .bitrate = 90,
Juuso Oikarinen2b60100b2009-10-13 12:47:39 +03003719 .hw_value = CONF_HW_BIT_RATE_9MBPS,
3720 .hw_value_short = CONF_HW_BIT_RATE_9MBPS, },
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03003721 { .bitrate = 120,
Juuso Oikarinen2b60100b2009-10-13 12:47:39 +03003722 .hw_value = CONF_HW_BIT_RATE_12MBPS,
3723 .hw_value_short = CONF_HW_BIT_RATE_12MBPS, },
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03003724 { .bitrate = 180,
Juuso Oikarinen2b60100b2009-10-13 12:47:39 +03003725 .hw_value = CONF_HW_BIT_RATE_18MBPS,
3726 .hw_value_short = CONF_HW_BIT_RATE_18MBPS, },
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03003727 { .bitrate = 240,
Juuso Oikarinen2b60100b2009-10-13 12:47:39 +03003728 .hw_value = CONF_HW_BIT_RATE_24MBPS,
3729 .hw_value_short = CONF_HW_BIT_RATE_24MBPS, },
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03003730 { .bitrate = 360,
Juuso Oikarinen2b60100b2009-10-13 12:47:39 +03003731 .hw_value = CONF_HW_BIT_RATE_36MBPS,
3732 .hw_value_short = CONF_HW_BIT_RATE_36MBPS, },
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03003733 { .bitrate = 480,
Juuso Oikarinen2b60100b2009-10-13 12:47:39 +03003734 .hw_value = CONF_HW_BIT_RATE_48MBPS,
3735 .hw_value_short = CONF_HW_BIT_RATE_48MBPS, },
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03003736 { .bitrate = 540,
Juuso Oikarinen2b60100b2009-10-13 12:47:39 +03003737 .hw_value = CONF_HW_BIT_RATE_54MBPS,
3738 .hw_value_short = CONF_HW_BIT_RATE_54MBPS, },
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03003739};
3740
Juuso Oikarinenfa97f462010-11-10 11:27:20 +01003741/* can't be const, mac80211 writes to this */
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03003742static struct ieee80211_channel wl1271_channels[] = {
Luciano Coelhoa2d0e3f2009-12-11 15:40:46 +02003743 { .hw_value = 1, .center_freq = 2412, .max_power = 25 },
Juuso Oikarinenfa21c7a2010-08-10 08:22:02 +02003744 { .hw_value = 2, .center_freq = 2417, .max_power = 25 },
Juuso Oikarinenfa97f462010-11-10 11:27:20 +01003745 { .hw_value = 3, .center_freq = 2422, .max_power = 25 },
3746 { .hw_value = 4, .center_freq = 2427, .max_power = 25 },
3747 { .hw_value = 5, .center_freq = 2432, .max_power = 25 },
Juuso Oikarinenfa21c7a2010-08-10 08:22:02 +02003748 { .hw_value = 6, .center_freq = 2437, .max_power = 25 },
Juuso Oikarinenfa97f462010-11-10 11:27:20 +01003749 { .hw_value = 7, .center_freq = 2442, .max_power = 25 },
3750 { .hw_value = 8, .center_freq = 2447, .max_power = 25 },
3751 { .hw_value = 9, .center_freq = 2452, .max_power = 25 },
Juuso Oikarinenfa21c7a2010-08-10 08:22:02 +02003752 { .hw_value = 10, .center_freq = 2457, .max_power = 25 },
Juuso Oikarinenfa97f462010-11-10 11:27:20 +01003753 { .hw_value = 11, .center_freq = 2462, .max_power = 25 },
3754 { .hw_value = 12, .center_freq = 2467, .max_power = 25 },
3755 { .hw_value = 13, .center_freq = 2472, .max_power = 25 },
Arik Nemtsov6c89b7b2011-01-18 20:39:52 +01003756 { .hw_value = 14, .center_freq = 2484, .max_power = 25 },
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03003757};
3758
Juuso Oikarinenf876bb92010-03-26 12:53:11 +02003759/* mapping to indexes for wl1271_rates */
Tobias Klausera0ea9492010-05-20 10:38:11 +02003760static const u8 wl1271_rate_to_idx_2ghz[] = {
Juuso Oikarinenf876bb92010-03-26 12:53:11 +02003761 /* MCS rates are used only with 11n */
Shahar Levi18357852010-10-13 16:09:41 +02003762 7, /* CONF_HW_RXTX_RATE_MCS7 */
3763 6, /* CONF_HW_RXTX_RATE_MCS6 */
3764 5, /* CONF_HW_RXTX_RATE_MCS5 */
3765 4, /* CONF_HW_RXTX_RATE_MCS4 */
3766 3, /* CONF_HW_RXTX_RATE_MCS3 */
3767 2, /* CONF_HW_RXTX_RATE_MCS2 */
3768 1, /* CONF_HW_RXTX_RATE_MCS1 */
3769 0, /* CONF_HW_RXTX_RATE_MCS0 */
Juuso Oikarinenf876bb92010-03-26 12:53:11 +02003770
3771 11, /* CONF_HW_RXTX_RATE_54 */
3772 10, /* CONF_HW_RXTX_RATE_48 */
3773 9, /* CONF_HW_RXTX_RATE_36 */
3774 8, /* CONF_HW_RXTX_RATE_24 */
3775
3776 /* TI-specific rate */
3777 CONF_HW_RXTX_RATE_UNSUPPORTED, /* CONF_HW_RXTX_RATE_22 */
3778
3779 7, /* CONF_HW_RXTX_RATE_18 */
3780 6, /* CONF_HW_RXTX_RATE_12 */
3781 3, /* CONF_HW_RXTX_RATE_11 */
3782 5, /* CONF_HW_RXTX_RATE_9 */
3783 4, /* CONF_HW_RXTX_RATE_6 */
3784 2, /* CONF_HW_RXTX_RATE_5_5 */
3785 1, /* CONF_HW_RXTX_RATE_2 */
3786 0 /* CONF_HW_RXTX_RATE_1 */
3787};
3788
Shahar Levie8b03a22010-10-13 16:09:39 +02003789/* 11n STA capabilities */
3790#define HW_RX_HIGHEST_RATE 72
3791
Shahar Levi00d20102010-11-08 11:20:10 +00003792#ifdef CONFIG_WL12XX_HT
3793#define WL12XX_HT_CAP { \
Shahar Levi871d0c32011-03-13 11:24:40 +02003794 .cap = IEEE80211_HT_CAP_GRN_FLD | IEEE80211_HT_CAP_SGI_20 | \
3795 (1 << IEEE80211_HT_CAP_RX_STBC_SHIFT), \
Shahar Levie8b03a22010-10-13 16:09:39 +02003796 .ht_supported = true, \
3797 .ampdu_factor = IEEE80211_HT_MAX_AMPDU_8K, \
3798 .ampdu_density = IEEE80211_HT_MPDU_DENSITY_8, \
3799 .mcs = { \
3800 .rx_mask = { 0xff, 0, 0, 0, 0, 0, 0, 0, 0, 0, }, \
3801 .rx_highest = cpu_to_le16(HW_RX_HIGHEST_RATE), \
3802 .tx_params = IEEE80211_HT_MCS_TX_DEFINED, \
3803 }, \
3804}
Shahar Levi18357852010-10-13 16:09:41 +02003805#else
Shahar Levi00d20102010-11-08 11:20:10 +00003806#define WL12XX_HT_CAP { \
Shahar Levi18357852010-10-13 16:09:41 +02003807 .ht_supported = false, \
3808}
3809#endif
Shahar Levie8b03a22010-10-13 16:09:39 +02003810
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03003811/* can't be const, mac80211 writes to this */
3812static struct ieee80211_supported_band wl1271_band_2ghz = {
3813 .channels = wl1271_channels,
3814 .n_channels = ARRAY_SIZE(wl1271_channels),
3815 .bitrates = wl1271_rates,
3816 .n_bitrates = ARRAY_SIZE(wl1271_rates),
Shahar Levi00d20102010-11-08 11:20:10 +00003817 .ht_cap = WL12XX_HT_CAP,
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03003818};
3819
Teemu Paasikivi1ebec3d2009-10-13 12:47:48 +03003820/* 5 GHz data rates for WL1273 */
3821static struct ieee80211_rate wl1271_rates_5ghz[] = {
3822 { .bitrate = 60,
3823 .hw_value = CONF_HW_BIT_RATE_6MBPS,
3824 .hw_value_short = CONF_HW_BIT_RATE_6MBPS, },
3825 { .bitrate = 90,
3826 .hw_value = CONF_HW_BIT_RATE_9MBPS,
3827 .hw_value_short = CONF_HW_BIT_RATE_9MBPS, },
3828 { .bitrate = 120,
3829 .hw_value = CONF_HW_BIT_RATE_12MBPS,
3830 .hw_value_short = CONF_HW_BIT_RATE_12MBPS, },
3831 { .bitrate = 180,
3832 .hw_value = CONF_HW_BIT_RATE_18MBPS,
3833 .hw_value_short = CONF_HW_BIT_RATE_18MBPS, },
3834 { .bitrate = 240,
3835 .hw_value = CONF_HW_BIT_RATE_24MBPS,
3836 .hw_value_short = CONF_HW_BIT_RATE_24MBPS, },
3837 { .bitrate = 360,
3838 .hw_value = CONF_HW_BIT_RATE_36MBPS,
3839 .hw_value_short = CONF_HW_BIT_RATE_36MBPS, },
3840 { .bitrate = 480,
3841 .hw_value = CONF_HW_BIT_RATE_48MBPS,
3842 .hw_value_short = CONF_HW_BIT_RATE_48MBPS, },
3843 { .bitrate = 540,
3844 .hw_value = CONF_HW_BIT_RATE_54MBPS,
3845 .hw_value_short = CONF_HW_BIT_RATE_54MBPS, },
3846};
3847
Juuso Oikarinenfa97f462010-11-10 11:27:20 +01003848/* 5 GHz band channels for WL1273 */
Teemu Paasikivi1ebec3d2009-10-13 12:47:48 +03003849static struct ieee80211_channel wl1271_channels_5ghz[] = {
Juuso Oikarinenfa21c7a2010-08-10 08:22:02 +02003850 { .hw_value = 7, .center_freq = 5035},
Juuso Oikarinenfa97f462010-11-10 11:27:20 +01003851 { .hw_value = 8, .center_freq = 5040},
3852 { .hw_value = 9, .center_freq = 5045},
3853 { .hw_value = 11, .center_freq = 5055},
3854 { .hw_value = 12, .center_freq = 5060},
Juuso Oikarinenfa21c7a2010-08-10 08:22:02 +02003855 { .hw_value = 16, .center_freq = 5080},
Juuso Oikarinenfa97f462010-11-10 11:27:20 +01003856 { .hw_value = 34, .center_freq = 5170},
3857 { .hw_value = 36, .center_freq = 5180},
3858 { .hw_value = 38, .center_freq = 5190},
3859 { .hw_value = 40, .center_freq = 5200},
Juuso Oikarinenfa21c7a2010-08-10 08:22:02 +02003860 { .hw_value = 42, .center_freq = 5210},
Juuso Oikarinenfa97f462010-11-10 11:27:20 +01003861 { .hw_value = 44, .center_freq = 5220},
3862 { .hw_value = 46, .center_freq = 5230},
3863 { .hw_value = 48, .center_freq = 5240},
3864 { .hw_value = 52, .center_freq = 5260},
Juuso Oikarinenfa21c7a2010-08-10 08:22:02 +02003865 { .hw_value = 56, .center_freq = 5280},
Juuso Oikarinenfa97f462010-11-10 11:27:20 +01003866 { .hw_value = 60, .center_freq = 5300},
3867 { .hw_value = 64, .center_freq = 5320},
3868 { .hw_value = 100, .center_freq = 5500},
3869 { .hw_value = 104, .center_freq = 5520},
Juuso Oikarinenfa21c7a2010-08-10 08:22:02 +02003870 { .hw_value = 108, .center_freq = 5540},
Juuso Oikarinenfa97f462010-11-10 11:27:20 +01003871 { .hw_value = 112, .center_freq = 5560},
3872 { .hw_value = 116, .center_freq = 5580},
3873 { .hw_value = 120, .center_freq = 5600},
3874 { .hw_value = 124, .center_freq = 5620},
Juuso Oikarinenfa21c7a2010-08-10 08:22:02 +02003875 { .hw_value = 128, .center_freq = 5640},
Juuso Oikarinenfa97f462010-11-10 11:27:20 +01003876 { .hw_value = 132, .center_freq = 5660},
3877 { .hw_value = 136, .center_freq = 5680},
3878 { .hw_value = 140, .center_freq = 5700},
3879 { .hw_value = 149, .center_freq = 5745},
Juuso Oikarinenfa21c7a2010-08-10 08:22:02 +02003880 { .hw_value = 153, .center_freq = 5765},
Juuso Oikarinenfa97f462010-11-10 11:27:20 +01003881 { .hw_value = 157, .center_freq = 5785},
3882 { .hw_value = 161, .center_freq = 5805},
Teemu Paasikivi1ebec3d2009-10-13 12:47:48 +03003883 { .hw_value = 165, .center_freq = 5825},
3884};
3885
Juuso Oikarinenf876bb92010-03-26 12:53:11 +02003886/* mapping to indexes for wl1271_rates_5ghz */
Tobias Klausera0ea9492010-05-20 10:38:11 +02003887static const u8 wl1271_rate_to_idx_5ghz[] = {
Juuso Oikarinenf876bb92010-03-26 12:53:11 +02003888 /* MCS rates are used only with 11n */
Shahar Levi18357852010-10-13 16:09:41 +02003889 7, /* CONF_HW_RXTX_RATE_MCS7 */
3890 6, /* CONF_HW_RXTX_RATE_MCS6 */
3891 5, /* CONF_HW_RXTX_RATE_MCS5 */
3892 4, /* CONF_HW_RXTX_RATE_MCS4 */
3893 3, /* CONF_HW_RXTX_RATE_MCS3 */
3894 2, /* CONF_HW_RXTX_RATE_MCS2 */
3895 1, /* CONF_HW_RXTX_RATE_MCS1 */
3896 0, /* CONF_HW_RXTX_RATE_MCS0 */
Juuso Oikarinenf876bb92010-03-26 12:53:11 +02003897
3898 7, /* CONF_HW_RXTX_RATE_54 */
3899 6, /* CONF_HW_RXTX_RATE_48 */
3900 5, /* CONF_HW_RXTX_RATE_36 */
3901 4, /* CONF_HW_RXTX_RATE_24 */
3902
3903 /* TI-specific rate */
3904 CONF_HW_RXTX_RATE_UNSUPPORTED, /* CONF_HW_RXTX_RATE_22 */
3905
3906 3, /* CONF_HW_RXTX_RATE_18 */
3907 2, /* CONF_HW_RXTX_RATE_12 */
3908 CONF_HW_RXTX_RATE_UNSUPPORTED, /* CONF_HW_RXTX_RATE_11 */
3909 1, /* CONF_HW_RXTX_RATE_9 */
3910 0, /* CONF_HW_RXTX_RATE_6 */
3911 CONF_HW_RXTX_RATE_UNSUPPORTED, /* CONF_HW_RXTX_RATE_5_5 */
3912 CONF_HW_RXTX_RATE_UNSUPPORTED, /* CONF_HW_RXTX_RATE_2 */
3913 CONF_HW_RXTX_RATE_UNSUPPORTED /* CONF_HW_RXTX_RATE_1 */
3914};
Teemu Paasikivi1ebec3d2009-10-13 12:47:48 +03003915
3916static struct ieee80211_supported_band wl1271_band_5ghz = {
3917 .channels = wl1271_channels_5ghz,
3918 .n_channels = ARRAY_SIZE(wl1271_channels_5ghz),
3919 .bitrates = wl1271_rates_5ghz,
3920 .n_bitrates = ARRAY_SIZE(wl1271_rates_5ghz),
Shahar Levi00d20102010-11-08 11:20:10 +00003921 .ht_cap = WL12XX_HT_CAP,
Teemu Paasikivi1ebec3d2009-10-13 12:47:48 +03003922};
3923
Tobias Klausera0ea9492010-05-20 10:38:11 +02003924static const u8 *wl1271_band_rate_to_idx[] = {
Juuso Oikarinenf876bb92010-03-26 12:53:11 +02003925 [IEEE80211_BAND_2GHZ] = wl1271_rate_to_idx_2ghz,
3926 [IEEE80211_BAND_5GHZ] = wl1271_rate_to_idx_5ghz
3927};
3928
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03003929static const struct ieee80211_ops wl1271_ops = {
3930 .start = wl1271_op_start,
3931 .stop = wl1271_op_stop,
3932 .add_interface = wl1271_op_add_interface,
3933 .remove_interface = wl1271_op_remove_interface,
Luciano Coelhof634a4e2011-05-18 16:51:26 -04003934#ifdef CONFIG_PM
Eliad Peller402e48612011-05-13 11:57:09 +03003935 .suspend = wl1271_op_suspend,
3936 .resume = wl1271_op_resume,
Luciano Coelhof634a4e2011-05-18 16:51:26 -04003937#endif
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03003938 .config = wl1271_op_config,
Juuso Oikarinenc87dec92009-10-08 21:56:31 +03003939 .prepare_multicast = wl1271_op_prepare_multicast,
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03003940 .configure_filter = wl1271_op_configure_filter,
3941 .tx = wl1271_op_tx,
3942 .set_key = wl1271_op_set_key,
3943 .hw_scan = wl1271_op_hw_scan,
Luciano Coelho33c2c062011-05-10 14:46:02 +03003944 .sched_scan_start = wl1271_op_sched_scan_start,
3945 .sched_scan_stop = wl1271_op_sched_scan_stop,
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03003946 .bss_info_changed = wl1271_op_bss_info_changed,
Arik Nemtsov68d069c2010-11-08 10:51:07 +01003947 .set_frag_threshold = wl1271_op_set_frag_threshold,
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03003948 .set_rts_threshold = wl1271_op_set_rts_threshold,
Kalle Valoc6999d82010-02-18 13:25:41 +02003949 .conf_tx = wl1271_op_conf_tx,
Juuso Oikarinenbbbb5382010-07-08 17:49:57 +03003950 .get_tsf = wl1271_op_get_tsf,
John W. Linvilleece550d2010-07-28 16:41:06 -04003951 .get_survey = wl1271_op_get_survey,
Arik Nemtsovf84f7d72010-10-16 20:21:23 +02003952 .sta_add = wl1271_op_sta_add,
3953 .sta_remove = wl1271_op_sta_remove,
Levi, Shaharbbba3e62011-01-23 07:27:23 +01003954 .ampdu_action = wl1271_op_ampdu_action,
Arik Nemtsov33437892011-04-26 23:35:39 +03003955 .tx_frames_pending = wl1271_tx_frames_pending,
Kalle Valoc8c90872010-02-18 13:25:53 +02003956 CFG80211_TESTMODE_CMD(wl1271_tm_cmd)
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03003957};
3958
Juuso Oikarinenf876bb92010-03-26 12:53:11 +02003959
Teemu Paasikivi6a2de932010-10-14 11:00:04 +02003960u8 wl1271_rate_to_idx(int rate, enum ieee80211_band band)
Juuso Oikarinenf876bb92010-03-26 12:53:11 +02003961{
3962 u8 idx;
3963
Teemu Paasikivi6a2de932010-10-14 11:00:04 +02003964 BUG_ON(band >= sizeof(wl1271_band_rate_to_idx)/sizeof(u8 *));
Juuso Oikarinenf876bb92010-03-26 12:53:11 +02003965
3966 if (unlikely(rate >= CONF_HW_RXTX_RATE_MAX)) {
3967 wl1271_error("Illegal RX rate from HW: %d", rate);
3968 return 0;
3969 }
3970
Teemu Paasikivi6a2de932010-10-14 11:00:04 +02003971 idx = wl1271_band_rate_to_idx[band][rate];
Juuso Oikarinenf876bb92010-03-26 12:53:11 +02003972 if (unlikely(idx == CONF_HW_RXTX_RATE_UNSUPPORTED)) {
3973 wl1271_error("Unsupported RX rate from HW: %d", rate);
3974 return 0;
3975 }
3976
3977 return idx;
3978}
3979
Juuso Oikarinen7fc3a862010-03-18 12:26:32 +02003980static ssize_t wl1271_sysfs_show_bt_coex_state(struct device *dev,
3981 struct device_attribute *attr,
3982 char *buf)
3983{
3984 struct wl1271 *wl = dev_get_drvdata(dev);
3985 ssize_t len;
3986
Juuso Oikarinen2f63b012010-08-10 06:38:35 +02003987 len = PAGE_SIZE;
Juuso Oikarinen7fc3a862010-03-18 12:26:32 +02003988
3989 mutex_lock(&wl->mutex);
3990 len = snprintf(buf, len, "%d\n\n0 - off\n1 - on\n",
3991 wl->sg_enabled);
3992 mutex_unlock(&wl->mutex);
3993
3994 return len;
3995
3996}
3997
3998static ssize_t wl1271_sysfs_store_bt_coex_state(struct device *dev,
3999 struct device_attribute *attr,
4000 const char *buf, size_t count)
4001{
4002 struct wl1271 *wl = dev_get_drvdata(dev);
4003 unsigned long res;
4004 int ret;
4005
Luciano Coelho6277ed62011-04-01 17:49:54 +03004006 ret = kstrtoul(buf, 10, &res);
Juuso Oikarinen7fc3a862010-03-18 12:26:32 +02004007 if (ret < 0) {
4008 wl1271_warning("incorrect value written to bt_coex_mode");
4009 return count;
4010 }
4011
4012 mutex_lock(&wl->mutex);
4013
4014 res = !!res;
4015
4016 if (res == wl->sg_enabled)
4017 goto out;
4018
4019 wl->sg_enabled = res;
4020
4021 if (wl->state == WL1271_STATE_OFF)
4022 goto out;
4023
Ido Yariva6208652011-03-01 15:14:41 +02004024 ret = wl1271_ps_elp_wakeup(wl);
Juuso Oikarinen7fc3a862010-03-18 12:26:32 +02004025 if (ret < 0)
4026 goto out;
4027
4028 wl1271_acx_sg_enable(wl, wl->sg_enabled);
4029 wl1271_ps_elp_sleep(wl);
4030
4031 out:
4032 mutex_unlock(&wl->mutex);
4033 return count;
4034}
4035
4036static DEVICE_ATTR(bt_coex_state, S_IRUGO | S_IWUSR,
4037 wl1271_sysfs_show_bt_coex_state,
4038 wl1271_sysfs_store_bt_coex_state);
4039
Juuso Oikarinend717fd62010-05-07 11:38:58 +03004040static ssize_t wl1271_sysfs_show_hw_pg_ver(struct device *dev,
4041 struct device_attribute *attr,
4042 char *buf)
4043{
4044 struct wl1271 *wl = dev_get_drvdata(dev);
4045 ssize_t len;
4046
Juuso Oikarinen2f63b012010-08-10 06:38:35 +02004047 len = PAGE_SIZE;
Juuso Oikarinend717fd62010-05-07 11:38:58 +03004048
4049 mutex_lock(&wl->mutex);
4050 if (wl->hw_pg_ver >= 0)
4051 len = snprintf(buf, len, "%d\n", wl->hw_pg_ver);
4052 else
4053 len = snprintf(buf, len, "n/a\n");
4054 mutex_unlock(&wl->mutex);
4055
4056 return len;
4057}
4058
4059static DEVICE_ATTR(hw_pg_ver, S_IRUGO | S_IWUSR,
4060 wl1271_sysfs_show_hw_pg_ver, NULL);
4061
Ido Yariv95dac04f2011-06-06 14:57:06 +03004062static ssize_t wl1271_sysfs_read_fwlog(struct file *filp, struct kobject *kobj,
4063 struct bin_attribute *bin_attr,
4064 char *buffer, loff_t pos, size_t count)
4065{
4066 struct device *dev = container_of(kobj, struct device, kobj);
4067 struct wl1271 *wl = dev_get_drvdata(dev);
4068 ssize_t len;
4069 int ret;
4070
4071 ret = mutex_lock_interruptible(&wl->mutex);
4072 if (ret < 0)
4073 return -ERESTARTSYS;
4074
4075 /* Let only one thread read the log at a time, blocking others */
4076 while (wl->fwlog_size == 0) {
4077 DEFINE_WAIT(wait);
4078
4079 prepare_to_wait_exclusive(&wl->fwlog_waitq,
4080 &wait,
4081 TASK_INTERRUPTIBLE);
4082
4083 if (wl->fwlog_size != 0) {
4084 finish_wait(&wl->fwlog_waitq, &wait);
4085 break;
4086 }
4087
4088 mutex_unlock(&wl->mutex);
4089
4090 schedule();
4091 finish_wait(&wl->fwlog_waitq, &wait);
4092
4093 if (signal_pending(current))
4094 return -ERESTARTSYS;
4095
4096 ret = mutex_lock_interruptible(&wl->mutex);
4097 if (ret < 0)
4098 return -ERESTARTSYS;
4099 }
4100
4101 /* Check if the fwlog is still valid */
4102 if (wl->fwlog_size < 0) {
4103 mutex_unlock(&wl->mutex);
4104 return 0;
4105 }
4106
4107 /* Seeking is not supported - old logs are not kept. Disregard pos. */
4108 len = min(count, (size_t)wl->fwlog_size);
4109 wl->fwlog_size -= len;
4110 memcpy(buffer, wl->fwlog, len);
4111
4112 /* Make room for new messages */
4113 memmove(wl->fwlog, wl->fwlog + len, wl->fwlog_size);
4114
4115 mutex_unlock(&wl->mutex);
4116
4117 return len;
4118}
4119
4120static struct bin_attribute fwlog_attr = {
4121 .attr = {.name = "fwlog", .mode = S_IRUSR},
4122 .read = wl1271_sysfs_read_fwlog,
4123};
4124
Teemu Paasikivi2d5e82b2010-02-22 08:38:21 +02004125int wl1271_register_hw(struct wl1271 *wl)
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03004126{
4127 int ret;
4128
4129 if (wl->mac80211_registered)
4130 return 0;
4131
Arik Nemtsov31d26ec2010-10-16 21:49:52 +02004132 ret = wl1271_fetch_nvs(wl);
4133 if (ret == 0) {
Shahar Levibc765bf2011-03-06 16:32:10 +02004134 /* NOTE: The wl->nvs->nvs element must be first, in
4135 * order to simplify the casting, we assume it is at
4136 * the beginning of the wl->nvs structure.
4137 */
4138 u8 *nvs_ptr = (u8 *)wl->nvs;
Arik Nemtsov31d26ec2010-10-16 21:49:52 +02004139
4140 wl->mac_addr[0] = nvs_ptr[11];
4141 wl->mac_addr[1] = nvs_ptr[10];
4142 wl->mac_addr[2] = nvs_ptr[6];
4143 wl->mac_addr[3] = nvs_ptr[5];
4144 wl->mac_addr[4] = nvs_ptr[4];
4145 wl->mac_addr[5] = nvs_ptr[3];
4146 }
4147
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03004148 SET_IEEE80211_PERM_ADDR(wl->hw, wl->mac_addr);
4149
4150 ret = ieee80211_register_hw(wl->hw);
4151 if (ret < 0) {
4152 wl1271_error("unable to register mac80211 hw: %d", ret);
4153 return ret;
4154 }
4155
4156 wl->mac80211_registered = true;
4157
Eliad Pellerd60080a2010-11-24 12:53:16 +02004158 wl1271_debugfs_init(wl);
4159
Juuso Oikarinenc2c192a2010-07-27 03:30:09 +03004160 register_netdevice_notifier(&wl1271_dev_notifier);
4161
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03004162 wl1271_notice("loaded");
4163
4164 return 0;
4165}
Teemu Paasikivi50b3eb42010-02-22 08:38:26 +02004166EXPORT_SYMBOL_GPL(wl1271_register_hw);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03004167
Teemu Paasikivi3b56dd62010-03-18 12:26:46 +02004168void wl1271_unregister_hw(struct wl1271 *wl)
4169{
Juuso Oikarinen4ae3fa82011-01-14 12:48:46 +01004170 if (wl->state == WL1271_STATE_PLT)
4171 __wl1271_plt_stop(wl);
4172
Juuso Oikarinenc2c192a2010-07-27 03:30:09 +03004173 unregister_netdevice_notifier(&wl1271_dev_notifier);
Teemu Paasikivi3b56dd62010-03-18 12:26:46 +02004174 ieee80211_unregister_hw(wl->hw);
4175 wl->mac80211_registered = false;
4176
4177}
4178EXPORT_SYMBOL_GPL(wl1271_unregister_hw);
4179
Teemu Paasikivi2d5e82b2010-02-22 08:38:21 +02004180int wl1271_init_ieee80211(struct wl1271 *wl)
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03004181{
Juuso Oikarinen7a557242010-09-27 12:42:07 +02004182 static const u32 cipher_suites[] = {
4183 WLAN_CIPHER_SUITE_WEP40,
4184 WLAN_CIPHER_SUITE_WEP104,
4185 WLAN_CIPHER_SUITE_TKIP,
4186 WLAN_CIPHER_SUITE_CCMP,
4187 WL1271_CIPHER_SUITE_GEM,
4188 };
4189
Juuso Oikarinen1e2b7972009-10-08 21:56:20 +03004190 /* The tx descriptor buffer and the TKIP space. */
4191 wl->hw->extra_tx_headroom = WL1271_TKIP_IV_SPACE +
4192 sizeof(struct wl1271_tx_hw_descr);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03004193
4194 /* unit us */
4195 /* FIXME: find a proper value */
4196 wl->hw->channel_change_time = 10000;
Juuso Oikarinen50c500a2010-04-01 11:38:22 +03004197 wl->hw->max_listen_interval = wl->conf.conn.max_listen_interval;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03004198
4199 wl->hw->flags = IEEE80211_HW_SIGNAL_DBM |
Juuso Oikarinen03442a32009-11-23 23:22:14 +02004200 IEEE80211_HW_BEACON_FILTER |
Juuso Oikarinen0a343322010-02-22 08:38:41 +02004201 IEEE80211_HW_SUPPORTS_PS |
Kalle Valo4695dc92010-03-18 12:26:38 +02004202 IEEE80211_HW_SUPPORTS_UAPSD |
Juuso Oikarinena9af0922010-03-26 12:53:30 +02004203 IEEE80211_HW_HAS_RATE_CONTROL |
Juuso Oikarinen00236aed2010-04-09 11:07:30 +03004204 IEEE80211_HW_CONNECTION_MONITOR |
Eliad Peller62c07402011-02-02 11:20:05 +02004205 IEEE80211_HW_SUPPORTS_CQM_RSSI |
Luciano Coelho25eaea302011-05-02 12:37:33 +03004206 IEEE80211_HW_REPORTS_TX_ACK_STATUS |
Shahar Levifcd23b62011-05-11 12:12:56 +03004207 IEEE80211_HW_SPECTRUM_MGMT |
Arik Nemtsovba7c0822011-02-23 00:22:28 +02004208 IEEE80211_HW_AP_LINK_PS;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03004209
Juuso Oikarinen7a557242010-09-27 12:42:07 +02004210 wl->hw->wiphy->cipher_suites = cipher_suites;
4211 wl->hw->wiphy->n_cipher_suites = ARRAY_SIZE(cipher_suites);
4212
Juuso Oikarinene0d8bbf2009-12-11 15:41:04 +02004213 wl->hw->wiphy->interface_modes = BIT(NL80211_IFTYPE_STATION) |
Arik Nemtsov038d9252010-10-16 21:53:24 +02004214 BIT(NL80211_IFTYPE_ADHOC) | BIT(NL80211_IFTYPE_AP);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03004215 wl->hw->wiphy->max_scan_ssids = 1;
Guy Eilamea559b42010-12-09 16:54:59 +02004216 /*
4217 * Maximum length of elements in scanning probe request templates
4218 * should be the maximum length possible for a template, without
4219 * the IEEE80211 header of the template
4220 */
4221 wl->hw->wiphy->max_scan_ie_len = WL1271_CMD_TEMPL_MAX_SIZE -
4222 sizeof(struct ieee80211_header);
Luciano Coelhoa8aaaf52011-01-11 18:25:18 +01004223
Luciano Coelho4a31c112011-03-21 23:16:14 +02004224 /* make sure all our channels fit in the scanned_ch bitmask */
4225 BUILD_BUG_ON(ARRAY_SIZE(wl1271_channels) +
4226 ARRAY_SIZE(wl1271_channels_5ghz) >
4227 WL1271_MAX_CHANNELS);
Luciano Coelhoa8aaaf52011-01-11 18:25:18 +01004228 /*
4229 * We keep local copies of the band structs because we need to
4230 * modify them on a per-device basis.
4231 */
4232 memcpy(&wl->bands[IEEE80211_BAND_2GHZ], &wl1271_band_2ghz,
4233 sizeof(wl1271_band_2ghz));
4234 memcpy(&wl->bands[IEEE80211_BAND_5GHZ], &wl1271_band_5ghz,
4235 sizeof(wl1271_band_5ghz));
4236
4237 wl->hw->wiphy->bands[IEEE80211_BAND_2GHZ] =
4238 &wl->bands[IEEE80211_BAND_2GHZ];
4239 wl->hw->wiphy->bands[IEEE80211_BAND_5GHZ] =
4240 &wl->bands[IEEE80211_BAND_5GHZ];
Teemu Paasikivi1ebec3d2009-10-13 12:47:48 +03004241
Kalle Valo12bd8942010-03-18 12:26:33 +02004242 wl->hw->queues = 4;
Juuso Oikarinen31627dc2010-03-26 12:53:12 +02004243 wl->hw->max_rates = 1;
Kalle Valo12bd8942010-03-18 12:26:33 +02004244
Juuso Oikarinenb7417d92010-11-10 11:27:19 +01004245 wl->hw->wiphy->reg_notifier = wl1271_reg_notify;
4246
Teemu Paasikivi8197b712010-02-22 08:38:23 +02004247 SET_IEEE80211_DEV(wl->hw, wl1271_wl_to_dev(wl));
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03004248
Arik Nemtsovf84f7d72010-10-16 20:21:23 +02004249 wl->hw->sta_data_size = sizeof(struct wl1271_station);
4250
Luciano Coelho4c9cfa72011-01-12 14:27:03 +01004251 wl->hw->max_rx_aggregation_subframes = 8;
4252
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03004253 return 0;
4254}
Teemu Paasikivi50b3eb42010-02-22 08:38:26 +02004255EXPORT_SYMBOL_GPL(wl1271_init_ieee80211);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03004256
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03004257#define WL1271_DEFAULT_CHANNEL 0
Teemu Paasikivic332a4b2010-02-18 13:25:57 +02004258
Teemu Paasikivi2d5e82b2010-02-22 08:38:21 +02004259struct ieee80211_hw *wl1271_alloc_hw(void)
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03004260{
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03004261 struct ieee80211_hw *hw;
Teemu Paasikivi3b56dd62010-03-18 12:26:46 +02004262 struct platform_device *plat_dev = NULL;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03004263 struct wl1271 *wl;
Arik Nemtsova8c0ddb2011-02-23 00:22:26 +02004264 int i, j, ret;
Ido Yariv1f37cbc2010-09-30 13:28:27 +02004265 unsigned int order;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03004266
4267 hw = ieee80211_alloc_hw(sizeof(*wl), &wl1271_ops);
4268 if (!hw) {
4269 wl1271_error("could not alloc ieee80211_hw");
Juuso Oikarinena1dd8182010-03-18 12:26:31 +02004270 ret = -ENOMEM;
Teemu Paasikivi3b56dd62010-03-18 12:26:46 +02004271 goto err_hw_alloc;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03004272 }
4273
Julia Lawall929ebd32010-05-15 23:16:39 +02004274 plat_dev = kmemdup(&wl1271_device, sizeof(wl1271_device), GFP_KERNEL);
Teemu Paasikivi3b56dd62010-03-18 12:26:46 +02004275 if (!plat_dev) {
4276 wl1271_error("could not allocate platform_device");
4277 ret = -ENOMEM;
4278 goto err_plat_alloc;
4279 }
4280
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03004281 wl = hw->priv;
4282 memset(wl, 0, sizeof(*wl));
4283
Juuso Oikarinen01c09162009-10-13 12:47:55 +03004284 INIT_LIST_HEAD(&wl->list);
4285
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03004286 wl->hw = hw;
Teemu Paasikivi3b56dd62010-03-18 12:26:46 +02004287 wl->plat_dev = plat_dev;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03004288
Juuso Oikarinen6742f552010-12-13 09:52:37 +02004289 for (i = 0; i < NUM_TX_QUEUES; i++)
4290 skb_queue_head_init(&wl->tx_queue[i]);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03004291
Arik Nemtsova8c0ddb2011-02-23 00:22:26 +02004292 for (i = 0; i < NUM_TX_QUEUES; i++)
4293 for (j = 0; j < AP_MAX_LINKS; j++)
4294 skb_queue_head_init(&wl->links[j].tx_queue[i]);
4295
Ido Yariva6208652011-03-01 15:14:41 +02004296 skb_queue_head_init(&wl->deferred_rx_queue);
4297 skb_queue_head_init(&wl->deferred_tx_queue);
4298
Juuso Oikarinen37b70a82009-10-08 21:56:21 +03004299 INIT_DELAYED_WORK(&wl->elp_work, wl1271_elp_work);
Juuso Oikarinen90494a92010-07-08 17:50:00 +03004300 INIT_DELAYED_WORK(&wl->pspoll_work, wl1271_pspoll_work);
Ido Yariva6208652011-03-01 15:14:41 +02004301 INIT_WORK(&wl->netstack_work, wl1271_netstack_work);
Juuso Oikarinen117b38d2010-09-30 10:43:28 +02004302 INIT_WORK(&wl->tx_work, wl1271_tx_work);
4303 INIT_WORK(&wl->recovery_work, wl1271_recovery_work);
4304 INIT_DELAYED_WORK(&wl->scan_complete_work, wl1271_scan_complete_work);
Eliad Peller77ddaa12011-05-15 11:10:29 +03004305 INIT_WORK(&wl->rx_streaming_enable_work,
4306 wl1271_rx_streaming_enable_work);
4307 INIT_WORK(&wl->rx_streaming_disable_work,
4308 wl1271_rx_streaming_disable_work);
4309
Eliad Peller92ef8962011-06-07 12:50:46 +03004310 wl->freezable_wq = create_freezable_workqueue("wl12xx_wq");
4311 if (!wl->freezable_wq) {
4312 ret = -ENOMEM;
4313 goto err_hw;
4314 }
4315
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03004316 wl->channel = WL1271_DEFAULT_CHANNEL;
Juuso Oikarinen60e84c22010-03-26 12:53:25 +02004317 wl->beacon_int = WL1271_DEFAULT_BEACON_INT;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03004318 wl->default_key = 0;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03004319 wl->rx_counter = 0;
Arik Nemtsovae113b52010-10-16 18:45:07 +02004320 wl->rx_config = WL1271_DEFAULT_STA_RX_CONFIG;
4321 wl->rx_filter = WL1271_DEFAULT_STA_RX_FILTER;
Juuso Oikarinen19ad0712009-11-02 20:22:11 +02004322 wl->psm_entry_retry = 0;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03004323 wl->power_level = WL1271_DEFAULT_POWER_LEVEL;
Juuso Oikarinena6fe2312009-12-11 15:40:58 +02004324 wl->basic_rate_set = CONF_TX_RATE_MASK_BASIC;
Juuso Oikarinenebba60c2010-04-01 11:38:20 +03004325 wl->basic_rate = CONF_TX_RATE_MASK_BASIC;
Juuso Oikarinen830fb672009-12-11 15:41:06 +02004326 wl->rate_set = CONF_TX_RATE_MASK_BASIC;
Juuso Oikarinen8a5a37a2009-10-08 21:56:24 +03004327 wl->band = IEEE80211_BAND_2GHZ;
Juuso Oikarinenb771eee2009-10-08 21:56:34 +03004328 wl->vif = NULL;
Juuso Oikarinen830fb672009-12-11 15:41:06 +02004329 wl->flags = 0;
Juuso Oikarinen7fc3a862010-03-18 12:26:32 +02004330 wl->sg_enabled = true;
Juuso Oikarinend717fd62010-05-07 11:38:58 +03004331 wl->hw_pg_ver = -1;
Arik Nemtsov166d5042010-10-16 21:44:57 +02004332 wl->bss_type = MAX_BSS_TYPE;
4333 wl->set_bss_type = MAX_BSS_TYPE;
4334 wl->fw_bss_type = MAX_BSS_TYPE;
Arik Nemtsova8c0ddb2011-02-23 00:22:26 +02004335 wl->last_tx_hlid = 0;
Arik Nemtsovb622d992011-02-23 00:22:31 +02004336 wl->ap_ps_map = 0;
4337 wl->ap_fw_ps_map = 0;
Ido Yariv606ea9f2011-03-01 15:14:39 +02004338 wl->quirks = 0;
Ido Yariv341b7cd2011-03-31 10:07:01 +02004339 wl->platform_quirks = 0;
Luciano Coelho33c2c062011-05-10 14:46:02 +03004340 wl->sched_scanning = false;
Oz Krakowskib992c682011-06-26 10:36:02 +03004341 wl->tx_security_seq = 0;
4342 wl->tx_security_last_seq_lsb = 0;
4343
Eliad Peller77ddaa12011-05-15 11:10:29 +03004344 setup_timer(&wl->rx_streaming_timer, wl1271_rx_streaming_timer,
4345 (unsigned long) wl);
Ido Yariv95dac04f2011-06-06 14:57:06 +03004346 wl->fwlog_size = 0;
4347 init_waitqueue_head(&wl->fwlog_waitq);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03004348
Ido Yariv25eeb9e2010-10-12 16:20:06 +02004349 memset(wl->tx_frames_map, 0, sizeof(wl->tx_frames_map));
Juuso Oikarinenbe7078c2009-10-08 21:56:26 +03004350 for (i = 0; i < ACX_TX_DESCRIPTORS; i++)
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03004351 wl->tx_frames[i] = NULL;
4352
4353 spin_lock_init(&wl->wl_lock);
4354
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03004355 wl->state = WL1271_STATE_OFF;
4356 mutex_init(&wl->mutex);
4357
Teemu Paasikivic332a4b2010-02-18 13:25:57 +02004358 /* Apply default driver configuration. */
4359 wl1271_conf_init(wl);
4360
Ido Yariv1f37cbc2010-09-30 13:28:27 +02004361 order = get_order(WL1271_AGGR_BUFFER_SIZE);
4362 wl->aggr_buf = (u8 *)__get_free_pages(GFP_KERNEL, order);
4363 if (!wl->aggr_buf) {
4364 ret = -ENOMEM;
Eliad Peller92ef8962011-06-07 12:50:46 +03004365 goto err_wq;
Ido Yariv1f37cbc2010-09-30 13:28:27 +02004366 }
4367
Ido Yariv990f5de2011-03-31 10:06:59 +02004368 wl->dummy_packet = wl12xx_alloc_dummy_packet(wl);
4369 if (!wl->dummy_packet) {
4370 ret = -ENOMEM;
4371 goto err_aggr;
4372 }
4373
Ido Yariv95dac04f2011-06-06 14:57:06 +03004374 /* Allocate one page for the FW log */
4375 wl->fwlog = (u8 *)get_zeroed_page(GFP_KERNEL);
4376 if (!wl->fwlog) {
4377 ret = -ENOMEM;
4378 goto err_dummy_packet;
4379 }
4380
Juuso Oikarinena1dd8182010-03-18 12:26:31 +02004381 /* Register platform device */
Teemu Paasikivi3b56dd62010-03-18 12:26:46 +02004382 ret = platform_device_register(wl->plat_dev);
Juuso Oikarinena1dd8182010-03-18 12:26:31 +02004383 if (ret) {
4384 wl1271_error("couldn't register platform device");
Ido Yariv95dac04f2011-06-06 14:57:06 +03004385 goto err_fwlog;
Juuso Oikarinena1dd8182010-03-18 12:26:31 +02004386 }
Teemu Paasikivi3b56dd62010-03-18 12:26:46 +02004387 dev_set_drvdata(&wl->plat_dev->dev, wl);
Juuso Oikarinena1dd8182010-03-18 12:26:31 +02004388
Juuso Oikarinen7fc3a862010-03-18 12:26:32 +02004389 /* Create sysfs file to control bt coex state */
Teemu Paasikivi3b56dd62010-03-18 12:26:46 +02004390 ret = device_create_file(&wl->plat_dev->dev, &dev_attr_bt_coex_state);
Juuso Oikarinen7fc3a862010-03-18 12:26:32 +02004391 if (ret < 0) {
4392 wl1271_error("failed to create sysfs file bt_coex_state");
4393 goto err_platform;
4394 }
Juuso Oikarinena1dd8182010-03-18 12:26:31 +02004395
Juuso Oikarinend717fd62010-05-07 11:38:58 +03004396 /* Create sysfs file to get HW PG version */
4397 ret = device_create_file(&wl->plat_dev->dev, &dev_attr_hw_pg_ver);
4398 if (ret < 0) {
4399 wl1271_error("failed to create sysfs file hw_pg_ver");
4400 goto err_bt_coex_state;
4401 }
4402
Ido Yariv95dac04f2011-06-06 14:57:06 +03004403 /* Create sysfs file for the FW log */
4404 ret = device_create_bin_file(&wl->plat_dev->dev, &fwlog_attr);
4405 if (ret < 0) {
4406 wl1271_error("failed to create sysfs file fwlog");
4407 goto err_hw_pg_ver;
4408 }
4409
Teemu Paasikivic332a4b2010-02-18 13:25:57 +02004410 return hw;
Juuso Oikarinena1dd8182010-03-18 12:26:31 +02004411
Ido Yariv95dac04f2011-06-06 14:57:06 +03004412err_hw_pg_ver:
4413 device_remove_file(&wl->plat_dev->dev, &dev_attr_hw_pg_ver);
4414
Juuso Oikarinend717fd62010-05-07 11:38:58 +03004415err_bt_coex_state:
4416 device_remove_file(&wl->plat_dev->dev, &dev_attr_bt_coex_state);
4417
Juuso Oikarinen7fc3a862010-03-18 12:26:32 +02004418err_platform:
Teemu Paasikivi3b56dd62010-03-18 12:26:46 +02004419 platform_device_unregister(wl->plat_dev);
Juuso Oikarinen7fc3a862010-03-18 12:26:32 +02004420
Ido Yariv95dac04f2011-06-06 14:57:06 +03004421err_fwlog:
4422 free_page((unsigned long)wl->fwlog);
4423
Ido Yariv990f5de2011-03-31 10:06:59 +02004424err_dummy_packet:
4425 dev_kfree_skb(wl->dummy_packet);
4426
Ido Yariv1f37cbc2010-09-30 13:28:27 +02004427err_aggr:
4428 free_pages((unsigned long)wl->aggr_buf, order);
4429
Eliad Peller92ef8962011-06-07 12:50:46 +03004430err_wq:
4431 destroy_workqueue(wl->freezable_wq);
4432
Juuso Oikarinena1dd8182010-03-18 12:26:31 +02004433err_hw:
Teemu Paasikivi3b56dd62010-03-18 12:26:46 +02004434 wl1271_debugfs_exit(wl);
4435 kfree(plat_dev);
Juuso Oikarinena1dd8182010-03-18 12:26:31 +02004436
Teemu Paasikivi3b56dd62010-03-18 12:26:46 +02004437err_plat_alloc:
4438 ieee80211_free_hw(hw);
4439
4440err_hw_alloc:
4441
Juuso Oikarinena1dd8182010-03-18 12:26:31 +02004442 return ERR_PTR(ret);
Teemu Paasikivic332a4b2010-02-18 13:25:57 +02004443}
Teemu Paasikivi50b3eb42010-02-22 08:38:26 +02004444EXPORT_SYMBOL_GPL(wl1271_alloc_hw);
Teemu Paasikivic332a4b2010-02-18 13:25:57 +02004445
4446int wl1271_free_hw(struct wl1271 *wl)
4447{
Ido Yariv95dac04f2011-06-06 14:57:06 +03004448 /* Unblock any fwlog readers */
4449 mutex_lock(&wl->mutex);
4450 wl->fwlog_size = -1;
4451 wake_up_interruptible_all(&wl->fwlog_waitq);
4452 mutex_unlock(&wl->mutex);
4453
4454 device_remove_bin_file(&wl->plat_dev->dev, &fwlog_attr);
Teemu Paasikivi3b56dd62010-03-18 12:26:46 +02004455 platform_device_unregister(wl->plat_dev);
Ido Yariv95dac04f2011-06-06 14:57:06 +03004456 free_page((unsigned long)wl->fwlog);
Ido Yariv990f5de2011-03-31 10:06:59 +02004457 dev_kfree_skb(wl->dummy_packet);
Ido Yariv1f37cbc2010-09-30 13:28:27 +02004458 free_pages((unsigned long)wl->aggr_buf,
4459 get_order(WL1271_AGGR_BUFFER_SIZE));
Teemu Paasikivi3b56dd62010-03-18 12:26:46 +02004460 kfree(wl->plat_dev);
Teemu Paasikivic332a4b2010-02-18 13:25:57 +02004461
4462 wl1271_debugfs_exit(wl);
4463
Teemu Paasikivic332a4b2010-02-18 13:25:57 +02004464 vfree(wl->fw);
4465 wl->fw = NULL;
4466 kfree(wl->nvs);
4467 wl->nvs = NULL;
4468
4469 kfree(wl->fw_status);
4470 kfree(wl->tx_res_if);
Eliad Peller92ef8962011-06-07 12:50:46 +03004471 destroy_workqueue(wl->freezable_wq);
Teemu Paasikivic332a4b2010-02-18 13:25:57 +02004472
4473 ieee80211_free_hw(wl->hw);
4474
4475 return 0;
4476}
Teemu Paasikivi50b3eb42010-02-22 08:38:26 +02004477EXPORT_SYMBOL_GPL(wl1271_free_hw);
4478
Guy Eilam491bbd62011-01-12 10:33:29 +01004479u32 wl12xx_debug_level = DEBUG_NONE;
Eliad Peller17c17552010-12-12 12:15:35 +02004480EXPORT_SYMBOL_GPL(wl12xx_debug_level);
Guy Eilam491bbd62011-01-12 10:33:29 +01004481module_param_named(debug_level, wl12xx_debug_level, uint, S_IRUSR | S_IWUSR);
Eliad Peller17c17552010-12-12 12:15:35 +02004482MODULE_PARM_DESC(debug_level, "wl12xx debugging level");
4483
Ido Yariv95dac04f2011-06-06 14:57:06 +03004484module_param_named(fwlog, fwlog_param, charp, 0);
4485MODULE_PARM_DESC(keymap,
4486 "FW logger options: continuous, ondemand, dbgpins or disable");
4487
Teemu Paasikivi50b3eb42010-02-22 08:38:26 +02004488MODULE_LICENSE("GPL");
Luciano Coelhob1a48ca2011-02-22 14:19:28 +02004489MODULE_AUTHOR("Luciano Coelho <coelho@ti.com>");
Teemu Paasikivi50b3eb42010-02-22 08:38:26 +02004490MODULE_AUTHOR("Juuso Oikarinen <juuso.oikarinen@nokia.com>");