blob: a6b894573f084c1864d26dd0324b47606a1ce021 [file] [log] [blame]
Kalle Valo2f01a1f2009-04-29 23:33:31 +03001#include "acx.h"
2
3#include <linux/module.h>
4#include <linux/crc7.h>
5#include <linux/spi/spi.h>
6
7#include "wl12xx.h"
8#include "wl12xx_80211.h"
9#include "reg.h"
10#include "spi.h"
11#include "ps.h"
12
13int wl12xx_acx_frame_rates(struct wl12xx *wl, u8 ctrl_rate, u8 ctrl_mod,
14 u8 mgt_rate, u8 mgt_mod)
15{
Kalle Valoff258392009-06-12 14:14:19 +030016 struct acx_fw_gen_frame_rates *rates;
Kalle Valo2f01a1f2009-04-29 23:33:31 +030017 int ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +030018
19 wl12xx_debug(DEBUG_ACX, "acx frame rates");
20
Kalle Valoff258392009-06-12 14:14:19 +030021 rates = kzalloc(sizeof(*rates), GFP_KERNEL);
22 if (!rates) {
23 ret = -ENOMEM;
24 goto out;
Kalle Valo2f01a1f2009-04-29 23:33:31 +030025 }
26
Kalle Valoff258392009-06-12 14:14:19 +030027 rates->tx_ctrl_frame_rate = ctrl_rate;
28 rates->tx_ctrl_frame_mod = ctrl_mod;
29 rates->tx_mgt_frame_rate = mgt_rate;
30 rates->tx_mgt_frame_mod = mgt_mod;
31
32 ret = wl12xx_cmd_configure(wl, ACX_FW_GEN_FRAME_RATES,
33 rates, sizeof(*rates));
34 if (ret < 0) {
35 wl12xx_error("Failed to set FW rates and modulation");
36 goto out;
37 }
38
39out:
40 kfree(rates);
41 return ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +030042}
43
44
45int wl12xx_acx_station_id(struct wl12xx *wl)
46{
Kalle Valoff258392009-06-12 14:14:19 +030047 struct acx_dot11_station_id *mac;
Kalle Valo2f01a1f2009-04-29 23:33:31 +030048 int ret, i;
Kalle Valo2f01a1f2009-04-29 23:33:31 +030049
50 wl12xx_debug(DEBUG_ACX, "acx dot11_station_id");
51
Kalle Valoff258392009-06-12 14:14:19 +030052 mac = kzalloc(sizeof(*mac), GFP_KERNEL);
53 if (!mac) {
54 ret = -ENOMEM;
55 goto out;
56 }
Kalle Valo2f01a1f2009-04-29 23:33:31 +030057
58 for (i = 0; i < ETH_ALEN; i++)
Kalle Valoff258392009-06-12 14:14:19 +030059 mac->mac[i] = wl->mac_addr[ETH_ALEN - 1 - i];
Kalle Valo2f01a1f2009-04-29 23:33:31 +030060
Kalle Valoff258392009-06-12 14:14:19 +030061 ret = wl12xx_cmd_configure(wl, DOT11_STATION_ID, mac, sizeof(*mac));
Kalle Valo2f01a1f2009-04-29 23:33:31 +030062 if (ret < 0)
Kalle Valoff258392009-06-12 14:14:19 +030063 goto out;
Kalle Valo2f01a1f2009-04-29 23:33:31 +030064
Kalle Valoff258392009-06-12 14:14:19 +030065out:
66 kfree(mac);
67 return ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +030068}
69
70int wl12xx_acx_default_key(struct wl12xx *wl, u8 key_id)
71{
Kalle Valoff258392009-06-12 14:14:19 +030072 struct acx_dot11_default_key *default_key;
Kalle Valo2f01a1f2009-04-29 23:33:31 +030073 int ret;
74
75 wl12xx_debug(DEBUG_ACX, "acx dot11_default_key (%d)", key_id);
76
Kalle Valoff258392009-06-12 14:14:19 +030077 default_key = kzalloc(sizeof(*default_key), GFP_KERNEL);
78 if (!default_key) {
79 ret = -ENOMEM;
80 goto out;
81 }
Kalle Valo2f01a1f2009-04-29 23:33:31 +030082
Kalle Valoff258392009-06-12 14:14:19 +030083 default_key->id = key_id;
Kalle Valo2f01a1f2009-04-29 23:33:31 +030084
Kalle Valoff258392009-06-12 14:14:19 +030085 ret = wl12xx_cmd_configure(wl, DOT11_DEFAULT_KEY,
86 default_key, sizeof(*default_key));
Kalle Valo2f01a1f2009-04-29 23:33:31 +030087 if (ret < 0) {
88 wl12xx_error("Couldnt set default key");
Kalle Valoff258392009-06-12 14:14:19 +030089 goto out;
Kalle Valo2f01a1f2009-04-29 23:33:31 +030090 }
91
92 wl->default_key = key_id;
93
Kalle Valoff258392009-06-12 14:14:19 +030094out:
95 kfree(default_key);
96 return ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +030097}
98
Luciano Coelho9f483dc2009-06-12 14:15:46 +030099int wl12xx_acx_wake_up_conditions(struct wl12xx *wl, u8 wake_up_event,
100 u8 listen_interval)
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300101{
Kalle Valoff258392009-06-12 14:14:19 +0300102 struct acx_wake_up_condition *wake_up;
103 int ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300104
105 wl12xx_debug(DEBUG_ACX, "acx wake up conditions");
106
Kalle Valoff258392009-06-12 14:14:19 +0300107 wake_up = kzalloc(sizeof(*wake_up), GFP_KERNEL);
108 if (!wake_up) {
109 ret = -ENOMEM;
110 goto out;
111 }
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300112
Luciano Coelho9f483dc2009-06-12 14:15:46 +0300113 wake_up->wake_up_event = wake_up_event;
Kalle Valoff258392009-06-12 14:14:19 +0300114 wake_up->listen_interval = listen_interval;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300115
Kalle Valoff258392009-06-12 14:14:19 +0300116 ret = wl12xx_cmd_configure(wl, ACX_WAKE_UP_CONDITIONS,
117 wake_up, sizeof(*wake_up));
118 if (ret < 0) {
119 wl12xx_warning("could not set wake up conditions: %d", ret);
120 goto out;
121 }
122
123out:
124 kfree(wake_up);
125 return ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300126}
127
128int wl12xx_acx_sleep_auth(struct wl12xx *wl, u8 sleep_auth)
129{
Kalle Valoff258392009-06-12 14:14:19 +0300130 struct acx_sleep_auth *auth;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300131 int ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300132
133 wl12xx_debug(DEBUG_ACX, "acx sleep auth");
134
Kalle Valoff258392009-06-12 14:14:19 +0300135 auth = kzalloc(sizeof(*auth), GFP_KERNEL);
136 if (!auth) {
137 ret = -ENOMEM;
138 goto out;
139 }
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300140
Kalle Valoff258392009-06-12 14:14:19 +0300141 auth->sleep_auth = sleep_auth;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300142
Kalle Valoff258392009-06-12 14:14:19 +0300143 ret = wl12xx_cmd_configure(wl, ACX_SLEEP_AUTH, auth, sizeof(*auth));
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300144 if (ret < 0)
145 return ret;
146
Kalle Valoff258392009-06-12 14:14:19 +0300147out:
148 kfree(auth);
149 return ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300150}
151
152int wl12xx_acx_fw_version(struct wl12xx *wl, char *buf, size_t len)
153{
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300154 struct acx_revision *rev;
155 int ret;
156
157 wl12xx_debug(DEBUG_ACX, "acx fw rev");
158
Kalle Valoff258392009-06-12 14:14:19 +0300159 rev = kzalloc(sizeof(*rev), GFP_KERNEL);
160 if (!rev) {
161 ret = -ENOMEM;
162 goto out;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300163 }
164
Kalle Valoff258392009-06-12 14:14:19 +0300165 ret = wl12xx_cmd_interrogate(wl, ACX_FW_REV, rev, sizeof(*rev));
166 if (ret < 0) {
167 wl12xx_warning("ACX_FW_REV interrogate failed");
168 goto out;
169 }
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300170
171 /* be careful with the buffer sizes */
172 strncpy(buf, rev->fw_version, min(len, sizeof(rev->fw_version)));
173
174 /*
175 * if the firmware version string is exactly
176 * sizeof(rev->fw_version) long or fw_len is less than
177 * sizeof(rev->fw_version) it won't be null terminated
178 */
179 buf[min(len, sizeof(rev->fw_version)) - 1] = '\0';
180
Kalle Valoff258392009-06-12 14:14:19 +0300181out:
182 kfree(rev);
183 return ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300184}
185
186int wl12xx_acx_tx_power(struct wl12xx *wl, int power)
187{
Kalle Valoff258392009-06-12 14:14:19 +0300188 struct acx_current_tx_power *acx;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300189 int ret;
190
191 wl12xx_debug(DEBUG_ACX, "acx dot11_cur_tx_pwr");
192
193 if (power < 0 || power > 25)
194 return -EINVAL;
195
Kalle Valoff258392009-06-12 14:14:19 +0300196 acx = kzalloc(sizeof(*acx), GFP_KERNEL);
197 if (!acx) {
198 ret = -ENOMEM;
199 goto out;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300200 }
201
Kalle Valoff258392009-06-12 14:14:19 +0300202 acx->current_tx_power = power * 10;
203
204 ret = wl12xx_cmd_configure(wl, DOT11_CUR_TX_PWR, acx, sizeof(*acx));
205 if (ret < 0) {
206 wl12xx_warning("configure of tx power failed: %d", ret);
207 goto out;
208 }
209
210out:
211 kfree(acx);
212 return ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300213}
214
215int wl12xx_acx_feature_cfg(struct wl12xx *wl)
216{
Kalle Valoff258392009-06-12 14:14:19 +0300217 struct acx_feature_config *feature;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300218 int ret;
219
220 wl12xx_debug(DEBUG_ACX, "acx feature cfg");
221
Kalle Valoff258392009-06-12 14:14:19 +0300222 feature = kzalloc(sizeof(*feature), GFP_KERNEL);
223 if (!feature) {
224 ret = -ENOMEM;
225 goto out;
226 }
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300227
228 /* DF_ENCRYPTION_DISABLE and DF_SNIFF_MODE_ENABLE are disabled */
Kalle Valoff258392009-06-12 14:14:19 +0300229 feature->data_flow_options = 0;
230 feature->options = 0;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300231
Kalle Valoff258392009-06-12 14:14:19 +0300232 ret = wl12xx_cmd_configure(wl, ACX_FEATURE_CFG,
233 feature, sizeof(*feature));
234 if (ret < 0) {
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300235 wl12xx_error("Couldnt set HW encryption");
Kalle Valoff258392009-06-12 14:14:19 +0300236 goto out;
237 }
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300238
Kalle Valoff258392009-06-12 14:14:19 +0300239out:
240 kfree(feature);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300241 return ret;
242}
243
Kalle Valoff258392009-06-12 14:14:19 +0300244int wl12xx_acx_mem_map(struct wl12xx *wl, struct acx_header *mem_map,
245 size_t len)
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300246{
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300247 int ret;
248
249 wl12xx_debug(DEBUG_ACX, "acx mem map");
250
Kalle Valoff258392009-06-12 14:14:19 +0300251 ret = wl12xx_cmd_interrogate(wl, ACX_MEM_MAP, mem_map, len);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300252 if (ret < 0)
253 return ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300254
255 return 0;
256}
257
258int wl12xx_acx_data_path_params(struct wl12xx *wl,
Kalle Valoff258392009-06-12 14:14:19 +0300259 struct acx_data_path_params_resp *resp)
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300260{
Kalle Valoff258392009-06-12 14:14:19 +0300261 struct acx_data_path_params *params;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300262 int ret;
263
264 wl12xx_debug(DEBUG_ACX, "acx data path params");
265
Kalle Valoff258392009-06-12 14:14:19 +0300266 params = kzalloc(sizeof(*params), GFP_KERNEL);
267 if (!params) {
268 ret = -ENOMEM;
269 goto out;
270 }
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300271
Kalle Valoff258392009-06-12 14:14:19 +0300272 params->rx_packet_ring_chunk_size = DP_RX_PACKET_RING_CHUNK_SIZE;
273 params->tx_packet_ring_chunk_size = DP_TX_PACKET_RING_CHUNK_SIZE;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300274
Kalle Valoff258392009-06-12 14:14:19 +0300275 params->rx_packet_ring_chunk_num = DP_RX_PACKET_RING_CHUNK_NUM;
276 params->tx_packet_ring_chunk_num = DP_TX_PACKET_RING_CHUNK_NUM;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300277
Kalle Valoff258392009-06-12 14:14:19 +0300278 params->tx_complete_threshold = 1;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300279
Kalle Valoff258392009-06-12 14:14:19 +0300280 params->tx_complete_ring_depth = FW_TX_CMPLT_BLOCK_SIZE;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300281
Kalle Valoff258392009-06-12 14:14:19 +0300282 params->tx_complete_timeout = DP_TX_COMPLETE_TIME_OUT;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300283
Kalle Valoff258392009-06-12 14:14:19 +0300284 ret = wl12xx_cmd_configure(wl, ACX_DATA_PATH_PARAMS,
285 params, sizeof(*params));
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300286 if (ret < 0)
Kalle Valoff258392009-06-12 14:14:19 +0300287 goto out;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300288
Kalle Valoff258392009-06-12 14:14:19 +0300289 /* FIXME: shouldn't this be ACX_DATA_PATH_RESP_PARAMS? */
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300290 ret = wl12xx_cmd_interrogate(wl, ACX_DATA_PATH_PARAMS,
Kalle Valoff258392009-06-12 14:14:19 +0300291 resp, sizeof(*resp));
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300292
293 if (ret < 0) {
294 wl12xx_warning("failed to read data path parameters: %d", ret);
Kalle Valoff258392009-06-12 14:14:19 +0300295 goto out;
296 } else if (resp->header.cmd.status != CMD_STATUS_SUCCESS) {
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300297 wl12xx_warning("data path parameter acx status failed");
Kalle Valoff258392009-06-12 14:14:19 +0300298 ret = -EIO;
299 goto out;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300300 }
301
Kalle Valoff258392009-06-12 14:14:19 +0300302out:
303 kfree(params);
304 return ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300305}
306
307int wl12xx_acx_rx_msdu_life_time(struct wl12xx *wl, u32 life_time)
308{
Kalle Valoff258392009-06-12 14:14:19 +0300309 struct acx_rx_msdu_lifetime *acx;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300310 int ret;
311
312 wl12xx_debug(DEBUG_ACX, "acx rx msdu life time");
313
Kalle Valoff258392009-06-12 14:14:19 +0300314 acx = kzalloc(sizeof(*acx), GFP_KERNEL);
315 if (!acx) {
316 ret = -ENOMEM;
317 goto out;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300318 }
319
Kalle Valoff258392009-06-12 14:14:19 +0300320 ret = wl12xx_cmd_configure(wl, DOT11_RX_MSDU_LIFE_TIME,
321 acx, sizeof(*acx));
322 if (ret < 0) {
323 wl12xx_warning("failed to set rx msdu life time: %d", ret);
324 goto out;
325 }
326
327out:
328 kfree(acx);
329 return ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300330}
331
332int wl12xx_acx_rx_config(struct wl12xx *wl, u32 config, u32 filter)
333{
Kalle Valoff258392009-06-12 14:14:19 +0300334 struct acx_rx_config *rx_config;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300335 int ret;
336
337 wl12xx_debug(DEBUG_ACX, "acx rx config");
338
Kalle Valoff258392009-06-12 14:14:19 +0300339 rx_config = kzalloc(sizeof(*rx_config), GFP_KERNEL);
340 if (!rx_config) {
341 ret = -ENOMEM;
342 goto out;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300343 }
344
Kalle Valoff258392009-06-12 14:14:19 +0300345 rx_config->config_options = config;
346 rx_config->filter_options = filter;
347
348 ret = wl12xx_cmd_configure(wl, ACX_RX_CFG,
349 rx_config, sizeof(*rx_config));
350 if (ret < 0) {
351 wl12xx_warning("failed to set rx config: %d", ret);
352 goto out;
353 }
354
355out:
356 kfree(rx_config);
357 return ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300358}
359
360int wl12xx_acx_pd_threshold(struct wl12xx *wl)
361{
Kalle Valoff258392009-06-12 14:14:19 +0300362 struct acx_packet_detection *pd;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300363 int ret;
364
365 wl12xx_debug(DEBUG_ACX, "acx data pd threshold");
366
Kalle Valoff258392009-06-12 14:14:19 +0300367 pd = kzalloc(sizeof(*pd), GFP_KERNEL);
368 if (!pd) {
369 ret = -ENOMEM;
370 goto out;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300371 }
372
Kalle Valoff258392009-06-12 14:14:19 +0300373 /* FIXME: threshold value not set */
374
375 ret = wl12xx_cmd_configure(wl, ACX_PD_THRESHOLD, pd, sizeof(*pd));
376 if (ret < 0) {
377 wl12xx_warning("failed to set pd threshold: %d", ret);
378 goto out;
379 }
380
381out:
382 kfree(pd);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300383 return 0;
384}
385
386int wl12xx_acx_slot(struct wl12xx *wl, enum acx_slot_type slot_time)
387{
Kalle Valoff258392009-06-12 14:14:19 +0300388 struct acx_slot *slot;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300389 int ret;
390
391 wl12xx_debug(DEBUG_ACX, "acx slot");
392
Kalle Valoff258392009-06-12 14:14:19 +0300393 slot = kzalloc(sizeof(*slot), GFP_KERNEL);
394 if (!slot) {
395 ret = -ENOMEM;
396 goto out;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300397 }
398
Kalle Valoff258392009-06-12 14:14:19 +0300399 slot->wone_index = STATION_WONE_INDEX;
400 slot->slot_time = slot_time;
401
402 ret = wl12xx_cmd_configure(wl, ACX_SLOT, slot, sizeof(*slot));
403 if (ret < 0) {
404 wl12xx_warning("failed to set slot time: %d", ret);
405 goto out;
406 }
407
408out:
409 kfree(slot);
410 return ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300411}
412
413int wl12xx_acx_group_address_tbl(struct wl12xx *wl)
414{
Kalle Valoff258392009-06-12 14:14:19 +0300415 struct acx_dot11_grp_addr_tbl *acx;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300416 int ret;
417
418 wl12xx_debug(DEBUG_ACX, "acx group address tbl");
419
Kalle Valoff258392009-06-12 14:14:19 +0300420 acx = kzalloc(sizeof(*acx), GFP_KERNEL);
421 if (!acx) {
422 ret = -ENOMEM;
423 goto out;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300424 }
425
Kalle Valoff258392009-06-12 14:14:19 +0300426 /* MAC filtering */
427 acx->enabled = 0;
428 acx->num_groups = 0;
429 memset(acx->mac_table, 0, ADDRESS_GROUP_MAX_LEN);
430
431 ret = wl12xx_cmd_configure(wl, DOT11_GROUP_ADDRESS_TBL,
432 acx, sizeof(*acx));
433 if (ret < 0) {
434 wl12xx_warning("failed to set group addr table: %d", ret);
435 goto out;
436 }
437
438out:
439 kfree(acx);
440 return ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300441}
442
443int wl12xx_acx_service_period_timeout(struct wl12xx *wl)
444{
Kalle Valoff258392009-06-12 14:14:19 +0300445 struct acx_rx_timeout *rx_timeout;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300446 int ret;
447
Kalle Valoff258392009-06-12 14:14:19 +0300448 rx_timeout = kzalloc(sizeof(*rx_timeout), GFP_KERNEL);
449 if (!rx_timeout) {
450 ret = -ENOMEM;
451 goto out;
452 }
453
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300454 wl12xx_debug(DEBUG_ACX, "acx service period timeout");
455
Kalle Valoff258392009-06-12 14:14:19 +0300456 rx_timeout->ps_poll_timeout = RX_TIMEOUT_PS_POLL_DEF;
457 rx_timeout->upsd_timeout = RX_TIMEOUT_UPSD_DEF;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300458
Kalle Valoff258392009-06-12 14:14:19 +0300459 ret = wl12xx_cmd_configure(wl, ACX_SERVICE_PERIOD_TIMEOUT,
460 rx_timeout, sizeof(*rx_timeout));
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300461 if (ret < 0) {
462 wl12xx_warning("failed to set service period timeout: %d",
463 ret);
Kalle Valoff258392009-06-12 14:14:19 +0300464 goto out;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300465 }
466
Kalle Valoff258392009-06-12 14:14:19 +0300467out:
468 kfree(rx_timeout);
469 return ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300470}
471
472int wl12xx_acx_rts_threshold(struct wl12xx *wl, u16 rts_threshold)
473{
Kalle Valoff258392009-06-12 14:14:19 +0300474 struct acx_rts_threshold *rts;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300475 int ret;
476
477 wl12xx_debug(DEBUG_ACX, "acx rts threshold");
478
Kalle Valoff258392009-06-12 14:14:19 +0300479 rts = kzalloc(sizeof(*rts), GFP_KERNEL);
480 if (!rts) {
481 ret = -ENOMEM;
482 goto out;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300483 }
484
Kalle Valoff258392009-06-12 14:14:19 +0300485 rts->threshold = rts_threshold;
486
487 ret = wl12xx_cmd_configure(wl, DOT11_RTS_THRESHOLD, rts, sizeof(*rts));
488 if (ret < 0) {
489 wl12xx_warning("failed to set rts threshold: %d", ret);
490 goto out;
491 }
492
493out:
494 kfree(rts);
495 return ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300496}
497
498int wl12xx_acx_beacon_filter_opt(struct wl12xx *wl)
499{
Kalle Valoff258392009-06-12 14:14:19 +0300500 struct acx_beacon_filter_option *beacon_filter;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300501 int ret;
502
503 wl12xx_debug(DEBUG_ACX, "acx beacon filter opt");
504
Kalle Valoff258392009-06-12 14:14:19 +0300505 beacon_filter = kzalloc(sizeof(*beacon_filter), GFP_KERNEL);
506 if (!beacon_filter) {
507 ret = -ENOMEM;
508 goto out;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300509 }
510
Kalle Valoff258392009-06-12 14:14:19 +0300511 beacon_filter->enable = 0;
512 beacon_filter->max_num_beacons = 0;
513
514 ret = wl12xx_cmd_configure(wl, ACX_BEACON_FILTER_OPT,
515 beacon_filter, sizeof(*beacon_filter));
516 if (ret < 0) {
517 wl12xx_warning("failed to set beacon filter opt: %d", ret);
518 goto out;
519 }
520
521out:
522 kfree(beacon_filter);
523 return ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300524}
525
526int wl12xx_acx_beacon_filter_table(struct wl12xx *wl)
527{
Kalle Valoff258392009-06-12 14:14:19 +0300528 struct acx_beacon_filter_ie_table *ie_table;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300529 int ret;
530
531 wl12xx_debug(DEBUG_ACX, "acx beacon filter table");
532
Kalle Valoff258392009-06-12 14:14:19 +0300533 ie_table = kzalloc(sizeof(*ie_table), GFP_KERNEL);
534 if (!ie_table) {
535 ret = -ENOMEM;
536 goto out;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300537 }
538
Kalle Valoff258392009-06-12 14:14:19 +0300539 ie_table->num_ie = 0;
540 memset(ie_table->table, 0, BEACON_FILTER_TABLE_MAX_SIZE);
541
542 ret = wl12xx_cmd_configure(wl, ACX_BEACON_FILTER_TABLE,
543 ie_table, sizeof(*ie_table));
544 if (ret < 0) {
545 wl12xx_warning("failed to set beacon filter table: %d", ret);
546 goto out;
547 }
548
549out:
550 kfree(ie_table);
551 return ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300552}
553
554int wl12xx_acx_sg_enable(struct wl12xx *wl)
555{
Kalle Valoff258392009-06-12 14:14:19 +0300556 struct acx_bt_wlan_coex *pta;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300557 int ret;
558
559 wl12xx_debug(DEBUG_ACX, "acx sg enable");
560
Kalle Valoff258392009-06-12 14:14:19 +0300561 pta = kzalloc(sizeof(*pta), GFP_KERNEL);
562 if (!pta) {
563 ret = -ENOMEM;
564 goto out;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300565 }
566
Kalle Valoff258392009-06-12 14:14:19 +0300567 pta->enable = SG_ENABLE;
568
569 ret = wl12xx_cmd_configure(wl, ACX_SG_ENABLE, pta, sizeof(*pta));
570 if (ret < 0) {
571 wl12xx_warning("failed to set softgemini enable: %d", ret);
572 goto out;
573 }
574
575out:
576 kfree(pta);
577 return ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300578}
579
580int wl12xx_acx_sg_cfg(struct wl12xx *wl)
581{
Kalle Valoff258392009-06-12 14:14:19 +0300582 struct acx_bt_wlan_coex_param *param;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300583 int ret;
584
585 wl12xx_debug(DEBUG_ACX, "acx sg cfg");
586
Kalle Valoff258392009-06-12 14:14:19 +0300587 param = kzalloc(sizeof(*param), GFP_KERNEL);
588 if (!param) {
589 ret = -ENOMEM;
590 goto out;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300591 }
592
Kalle Valoff258392009-06-12 14:14:19 +0300593 /* BT-WLAN coext parameters */
594 param->min_rate = RATE_INDEX_24MBPS;
595 param->bt_hp_max_time = PTA_BT_HP_MAXTIME_DEF;
596 param->wlan_hp_max_time = PTA_WLAN_HP_MAX_TIME_DEF;
597 param->sense_disable_timer = PTA_SENSE_DISABLE_TIMER_DEF;
598 param->rx_time_bt_hp = PTA_PROTECTIVE_RX_TIME_DEF;
599 param->tx_time_bt_hp = PTA_PROTECTIVE_TX_TIME_DEF;
600 param->rx_time_bt_hp_fast = PTA_PROTECTIVE_RX_TIME_FAST_DEF;
601 param->tx_time_bt_hp_fast = PTA_PROTECTIVE_TX_TIME_FAST_DEF;
602 param->wlan_cycle_fast = PTA_CYCLE_TIME_FAST_DEF;
603 param->bt_anti_starvation_period = PTA_ANTI_STARVE_PERIOD_DEF;
604 param->next_bt_lp_packet = PTA_TIMEOUT_NEXT_BT_LP_PACKET_DEF;
605 param->wake_up_beacon = PTA_TIME_BEFORE_BEACON_DEF;
606 param->hp_dm_max_guard_time = PTA_HPDM_MAX_TIME_DEF;
607 param->next_wlan_packet = PTA_TIME_OUT_NEXT_WLAN_DEF;
608 param->antenna_type = PTA_ANTENNA_TYPE_DEF;
609 param->signal_type = PTA_SIGNALING_TYPE_DEF;
610 param->afh_leverage_on = PTA_AFH_LEVERAGE_ON_DEF;
611 param->quiet_cycle_num = PTA_NUMBER_QUIET_CYCLE_DEF;
612 param->max_cts = PTA_MAX_NUM_CTS_DEF;
613 param->wlan_packets_num = PTA_NUMBER_OF_WLAN_PACKETS_DEF;
614 param->bt_packets_num = PTA_NUMBER_OF_BT_PACKETS_DEF;
615 param->missed_rx_avalanche = PTA_RX_FOR_AVALANCHE_DEF;
616 param->wlan_elp_hp = PTA_ELP_HP_DEF;
617 param->bt_anti_starvation_cycles = PTA_ANTI_STARVE_NUM_CYCLE_DEF;
618 param->ack_mode_dual_ant = PTA_ACK_MODE_DEF;
619 param->pa_sd_enable = PTA_ALLOW_PA_SD_DEF;
620 param->pta_auto_mode_enable = PTA_AUTO_MODE_NO_CTS_DEF;
621 param->bt_hp_respected_num = PTA_BT_HP_RESPECTED_DEF;
622
623 ret = wl12xx_cmd_configure(wl, ACX_SG_CFG, param, sizeof(*param));
624 if (ret < 0) {
625 wl12xx_warning("failed to set sg config: %d", ret);
626 goto out;
627 }
628
629out:
630 kfree(param);
631 return ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300632}
633
634int wl12xx_acx_cca_threshold(struct wl12xx *wl)
635{
Kalle Valoff258392009-06-12 14:14:19 +0300636 struct acx_energy_detection *detection;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300637 int ret;
638
639 wl12xx_debug(DEBUG_ACX, "acx cca threshold");
640
Kalle Valoff258392009-06-12 14:14:19 +0300641 detection = kzalloc(sizeof(*detection), GFP_KERNEL);
642 if (!detection) {
643 ret = -ENOMEM;
644 goto out;
645 }
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300646
Kalle Valoff258392009-06-12 14:14:19 +0300647 detection->rx_cca_threshold = CCA_THRSH_DISABLE_ENERGY_D;
648 detection->tx_energy_detection = 0;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300649
Kalle Valoff258392009-06-12 14:14:19 +0300650 ret = wl12xx_cmd_configure(wl, ACX_CCA_THRESHOLD,
651 detection, sizeof(*detection));
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300652 if (ret < 0) {
653 wl12xx_warning("failed to set cca threshold: %d", ret);
654 return ret;
655 }
656
Kalle Valoff258392009-06-12 14:14:19 +0300657out:
658 kfree(detection);
659 return ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300660}
661
662int wl12xx_acx_bcn_dtim_options(struct wl12xx *wl)
663{
Kalle Valoff258392009-06-12 14:14:19 +0300664 struct acx_beacon_broadcast *bb;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300665 int ret;
666
667 wl12xx_debug(DEBUG_ACX, "acx bcn dtim options");
668
Kalle Valoff258392009-06-12 14:14:19 +0300669 bb = kzalloc(sizeof(*bb), GFP_KERNEL);
670 if (!bb) {
671 ret = -ENOMEM;
672 goto out;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300673 }
674
Kalle Valoff258392009-06-12 14:14:19 +0300675 bb->beacon_rx_timeout = BCN_RX_TIMEOUT_DEF_VALUE;
676 bb->broadcast_timeout = BROADCAST_RX_TIMEOUT_DEF_VALUE;
677 bb->rx_broadcast_in_ps = RX_BROADCAST_IN_PS_DEF_VALUE;
678 bb->ps_poll_threshold = CONSECUTIVE_PS_POLL_FAILURE_DEF;
679
680 ret = wl12xx_cmd_configure(wl, ACX_BCN_DTIM_OPTIONS, bb, sizeof(*bb));
681 if (ret < 0) {
682 wl12xx_warning("failed to set rx config: %d", ret);
683 goto out;
684 }
685
686out:
687 kfree(bb);
688 return ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300689}
690
691int wl12xx_acx_aid(struct wl12xx *wl, u16 aid)
692{
Kalle Valoff258392009-06-12 14:14:19 +0300693 struct acx_aid *acx_aid;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300694 int ret;
695
696 wl12xx_debug(DEBUG_ACX, "acx aid");
697
Kalle Valoff258392009-06-12 14:14:19 +0300698 acx_aid = kzalloc(sizeof(*acx_aid), GFP_KERNEL);
699 if (!acx_aid) {
700 ret = -ENOMEM;
701 goto out;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300702 }
703
Kalle Valoff258392009-06-12 14:14:19 +0300704 acx_aid->aid = aid;
705
706 ret = wl12xx_cmd_configure(wl, ACX_AID, acx_aid, sizeof(*acx_aid));
707 if (ret < 0) {
708 wl12xx_warning("failed to set aid: %d", ret);
709 goto out;
710 }
711
712out:
713 kfree(acx_aid);
714 return ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300715}
716
717int wl12xx_acx_event_mbox_mask(struct wl12xx *wl, u32 event_mask)
718{
Kalle Valoff258392009-06-12 14:14:19 +0300719 struct acx_event_mask *mask;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300720 int ret;
721
722 wl12xx_debug(DEBUG_ACX, "acx event mbox mask");
723
Kalle Valoff258392009-06-12 14:14:19 +0300724 mask = kzalloc(sizeof(*mask), GFP_KERNEL);
725 if (!mask) {
726 ret = -ENOMEM;
727 goto out;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300728 }
729
Kalle Valoff258392009-06-12 14:14:19 +0300730 /* high event mask is unused */
731 mask->high_event_mask = 0xffffffff;
732
733 mask->event_mask = event_mask;
734
735 ret = wl12xx_cmd_configure(wl, ACX_EVENT_MBOX_MASK,
736 mask, sizeof(*mask));
737 if (ret < 0) {
738 wl12xx_warning("failed to set aid: %d", ret);
739 goto out;
740 }
741
742out:
743 kfree(mask);
744 return ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300745}
746
747int wl12xx_acx_set_preamble(struct wl12xx *wl, enum acx_preamble_type preamble)
748{
Kalle Valoff258392009-06-12 14:14:19 +0300749 struct acx_preamble *acx;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300750 int ret;
751
752 wl12xx_debug(DEBUG_ACX, "acx_set_preamble");
753
Kalle Valoff258392009-06-12 14:14:19 +0300754 acx = kzalloc(sizeof(*acx), GFP_KERNEL);
755 if (!acx) {
756 ret = -ENOMEM;
757 goto out;
758 }
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300759
Kalle Valoff258392009-06-12 14:14:19 +0300760 acx->preamble = preamble;
761
762 ret = wl12xx_cmd_configure(wl, ACX_PREAMBLE_TYPE, acx, sizeof(*acx));
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300763 if (ret < 0) {
764 wl12xx_warning("Setting of preamble failed: %d", ret);
Kalle Valoff258392009-06-12 14:14:19 +0300765 goto out;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300766 }
Kalle Valoff258392009-06-12 14:14:19 +0300767
768out:
769 kfree(acx);
770 return ret;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300771}
772
773int wl12xx_acx_cts_protect(struct wl12xx *wl,
774 enum acx_ctsprotect_type ctsprotect)
775{
Kalle Valoff258392009-06-12 14:14:19 +0300776 struct acx_ctsprotect *acx;
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300777 int ret;
778
779 wl12xx_debug(DEBUG_ACX, "acx_set_ctsprotect");
780
Kalle Valoff258392009-06-12 14:14:19 +0300781 acx = kzalloc(sizeof(*acx), GFP_KERNEL);
782 if (!acx) {
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300783 ret = -ENOMEM;
784 goto out;
785 }
786
Kalle Valoff258392009-06-12 14:14:19 +0300787 acx->ctsprotect = ctsprotect;
788
789 ret = wl12xx_cmd_configure(wl, ACX_CTS_PROTECTION, acx, sizeof(*acx));
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300790 if (ret < 0) {
Kalle Valoff258392009-06-12 14:14:19 +0300791 wl12xx_warning("Setting of ctsprotect failed: %d", ret);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300792 goto out;
793 }
794
Kalle Valoff258392009-06-12 14:14:19 +0300795out:
796 kfree(acx);
797 return ret;
798}
799
800int wl12xx_acx_tsf_info(struct wl12xx *wl, u64 *mactime)
801{
802 struct acx_tsf_info *tsf_info;
803 int ret;
804
805 tsf_info = kzalloc(sizeof(*tsf_info), GFP_KERNEL);
806 if (!tsf_info) {
807 ret = -ENOMEM;
808 goto out;
809 }
810
811 ret = wl12xx_cmd_interrogate(wl, ACX_TSF_INFO,
812 tsf_info, sizeof(*tsf_info));
813 if (ret < 0) {
814 wl12xx_warning("ACX_FW_REV interrogate failed");
815 goto out;
816 }
817
818 *mactime = tsf_info->current_tsf_lsb |
819 (tsf_info->current_tsf_msb << 31);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300820
821out:
Kalle Valoff258392009-06-12 14:14:19 +0300822 kfree(tsf_info);
Kalle Valo2f01a1f2009-04-29 23:33:31 +0300823 return ret;
824}
Kalle Valoff258392009-06-12 14:14:19 +0300825
826int wl12xx_acx_statistics(struct wl12xx *wl, struct acx_statistics *stats)
827{
828 int ret;
829
830 wl12xx_debug(DEBUG_ACX, "acx statistics");
831
832 ret = wl12xx_cmd_interrogate(wl, ACX_STATISTICS, stats,
833 sizeof(*stats));
834 if (ret < 0) {
835 wl12xx_warning("acx statistics failed: %d", ret);
836 return -ENOMEM;
837 }
838
839 return 0;
840}