wl12xx: increase scan timeout to 30s
[deliverable/linux.git] / drivers / net / wireless / wl1251 / acx.c
CommitLineData
9bc6772e 1#include "acx.h"
2f01a1f5
KV
2
3#include <linux/module.h>
5a0e3ad6 4#include <linux/slab.h>
2f01a1f5 5#include <linux/crc7.h>
2f01a1f5 6
13674118 7#include "wl1251.h"
9bc6772e
KV
8#include "reg.h"
9#include "cmd.h"
10#include "ps.h"
2f01a1f5 11
80301cdc 12int wl1251_acx_frame_rates(struct wl1251 *wl, u8 ctrl_rate, u8 ctrl_mod,
2f01a1f5
KV
13 u8 mgt_rate, u8 mgt_mod)
14{
ff25839b 15 struct acx_fw_gen_frame_rates *rates;
2f01a1f5 16 int ret;
2f01a1f5 17
80301cdc 18 wl1251_debug(DEBUG_ACX, "acx frame rates");
2f01a1f5 19
ff25839b
KV
20 rates = kzalloc(sizeof(*rates), GFP_KERNEL);
21 if (!rates) {
22 ret = -ENOMEM;
23 goto out;
24 }
2f01a1f5 25
ff25839b
KV
26 rates->tx_ctrl_frame_rate = ctrl_rate;
27 rates->tx_ctrl_frame_mod = ctrl_mod;
28 rates->tx_mgt_frame_rate = mgt_rate;
29 rates->tx_mgt_frame_mod = mgt_mod;
2f01a1f5 30
80301cdc 31 ret = wl1251_cmd_configure(wl, ACX_FW_GEN_FRAME_RATES,
ff25839b 32 rates, sizeof(*rates));
2f01a1f5 33 if (ret < 0) {
80301cdc 34 wl1251_error("Failed to set FW rates and modulation");
ff25839b 35 goto out;
2f01a1f5
KV
36 }
37
ff25839b
KV
38out:
39 kfree(rates);
40 return ret;
2f01a1f5
KV
41}
42
43
80301cdc 44int wl1251_acx_station_id(struct wl1251 *wl)
2f01a1f5 45{
ff25839b 46 struct acx_dot11_station_id *mac;
2f01a1f5 47 int ret, i;
2f01a1f5 48
80301cdc 49 wl1251_debug(DEBUG_ACX, "acx dot11_station_id");
2f01a1f5 50
ff25839b
KV
51 mac = kzalloc(sizeof(*mac), GFP_KERNEL);
52 if (!mac) {
53 ret = -ENOMEM;
54 goto out;
55 }
2f01a1f5
KV
56
57 for (i = 0; i < ETH_ALEN; i++)
ff25839b 58 mac->mac[i] = wl->mac_addr[ETH_ALEN - 1 - i];
2f01a1f5 59
80301cdc 60 ret = wl1251_cmd_configure(wl, DOT11_STATION_ID, mac, sizeof(*mac));
2f01a1f5 61 if (ret < 0)
ff25839b 62 goto out;
2f01a1f5 63
ff25839b
KV
64out:
65 kfree(mac);
66 return ret;
2f01a1f5
KV
67}
68
80301cdc 69int wl1251_acx_default_key(struct wl1251 *wl, u8 key_id)
2f01a1f5 70{
ff25839b 71 struct acx_dot11_default_key *default_key;
2f01a1f5
KV
72 int ret;
73
80301cdc 74 wl1251_debug(DEBUG_ACX, "acx dot11_default_key (%d)", key_id);
2f01a1f5 75
ff25839b
KV
76 default_key = kzalloc(sizeof(*default_key), GFP_KERNEL);
77 if (!default_key) {
78 ret = -ENOMEM;
79 goto out;
80 }
2f01a1f5 81
ff25839b 82 default_key->id = key_id;
2f01a1f5 83
80301cdc 84 ret = wl1251_cmd_configure(wl, DOT11_DEFAULT_KEY,
ff25839b 85 default_key, sizeof(*default_key));
2f01a1f5 86 if (ret < 0) {
da3c821f 87 wl1251_error("Couldn't set default key");
ff25839b 88 goto out;
2f01a1f5
KV
89 }
90
91 wl->default_key = key_id;
92
ff25839b
KV
93out:
94 kfree(default_key);
95 return ret;
2f01a1f5
KV
96}
97
80301cdc 98int wl1251_acx_wake_up_conditions(struct wl1251 *wl, u8 wake_up_event,
9f483dc3 99 u8 listen_interval)
2f01a1f5 100{
ff25839b
KV
101 struct acx_wake_up_condition *wake_up;
102 int ret;
2f01a1f5 103
80301cdc 104 wl1251_debug(DEBUG_ACX, "acx wake up conditions");
2f01a1f5 105
ff25839b
KV
106 wake_up = kzalloc(sizeof(*wake_up), GFP_KERNEL);
107 if (!wake_up) {
108 ret = -ENOMEM;
109 goto out;
110 }
2f01a1f5 111
9f483dc3 112 wake_up->wake_up_event = wake_up_event;
ff25839b 113 wake_up->listen_interval = listen_interval;
2f01a1f5 114
80301cdc 115 ret = wl1251_cmd_configure(wl, ACX_WAKE_UP_CONDITIONS,
ff25839b
KV
116 wake_up, sizeof(*wake_up));
117 if (ret < 0) {
80301cdc 118 wl1251_warning("could not set wake up conditions: %d", ret);
ff25839b
KV
119 goto out;
120 }
121
122out:
123 kfree(wake_up);
124 return ret;
2f01a1f5
KV
125}
126
80301cdc 127int wl1251_acx_sleep_auth(struct wl1251 *wl, u8 sleep_auth)
2f01a1f5 128{
ff25839b 129 struct acx_sleep_auth *auth;
2f01a1f5 130 int ret;
2f01a1f5 131
80301cdc 132 wl1251_debug(DEBUG_ACX, "acx sleep auth");
2f01a1f5 133
ff25839b
KV
134 auth = kzalloc(sizeof(*auth), GFP_KERNEL);
135 if (!auth) {
136 ret = -ENOMEM;
137 goto out;
138 }
2f01a1f5 139
ff25839b 140 auth->sleep_auth = sleep_auth;
2f01a1f5 141
80301cdc 142 ret = wl1251_cmd_configure(wl, ACX_SLEEP_AUTH, auth, sizeof(*auth));
2f01a1f5 143
ff25839b
KV
144out:
145 kfree(auth);
146 return ret;
2f01a1f5
KV
147}
148
80301cdc 149int wl1251_acx_fw_version(struct wl1251 *wl, char *buf, size_t len)
2f01a1f5 150{
2f01a1f5
KV
151 struct acx_revision *rev;
152 int ret;
153
80301cdc 154 wl1251_debug(DEBUG_ACX, "acx fw rev");
2f01a1f5 155
ff25839b
KV
156 rev = kzalloc(sizeof(*rev), GFP_KERNEL);
157 if (!rev) {
158 ret = -ENOMEM;
159 goto out;
160 }
2f01a1f5 161
80301cdc 162 ret = wl1251_cmd_interrogate(wl, ACX_FW_REV, rev, sizeof(*rev));
2f01a1f5 163 if (ret < 0) {
80301cdc 164 wl1251_warning("ACX_FW_REV interrogate failed");
ff25839b 165 goto out;
2f01a1f5
KV
166 }
167
2f01a1f5
KV
168 /* be careful with the buffer sizes */
169 strncpy(buf, rev->fw_version, min(len, sizeof(rev->fw_version)));
170
171 /*
172 * if the firmware version string is exactly
173 * sizeof(rev->fw_version) long or fw_len is less than
174 * sizeof(rev->fw_version) it won't be null terminated
175 */
176 buf[min(len, sizeof(rev->fw_version)) - 1] = '\0';
177
ff25839b
KV
178out:
179 kfree(rev);
180 return ret;
2f01a1f5
KV
181}
182
80301cdc 183int wl1251_acx_tx_power(struct wl1251 *wl, int power)
2f01a1f5 184{
ff25839b 185 struct acx_current_tx_power *acx;
2f01a1f5
KV
186 int ret;
187
80301cdc 188 wl1251_debug(DEBUG_ACX, "acx dot11_cur_tx_pwr");
2f01a1f5
KV
189
190 if (power < 0 || power > 25)
191 return -EINVAL;
192
ff25839b
KV
193 acx = kzalloc(sizeof(*acx), GFP_KERNEL);
194 if (!acx) {
195 ret = -ENOMEM;
196 goto out;
197 }
2f01a1f5 198
ff25839b 199 acx->current_tx_power = power * 10;
2f01a1f5 200
80301cdc 201 ret = wl1251_cmd_configure(wl, DOT11_CUR_TX_PWR, acx, sizeof(*acx));
2f01a1f5 202 if (ret < 0) {
80301cdc 203 wl1251_warning("configure of tx power failed: %d", ret);
ff25839b 204 goto out;
2f01a1f5
KV
205 }
206
ff25839b
KV
207out:
208 kfree(acx);
209 return ret;
2f01a1f5
KV
210}
211
80301cdc 212int wl1251_acx_feature_cfg(struct wl1251 *wl)
2f01a1f5 213{
ff25839b 214 struct acx_feature_config *feature;
2f01a1f5
KV
215 int ret;
216
80301cdc 217 wl1251_debug(DEBUG_ACX, "acx feature cfg");
2f01a1f5 218
ff25839b
KV
219 feature = kzalloc(sizeof(*feature), GFP_KERNEL);
220 if (!feature) {
221 ret = -ENOMEM;
222 goto out;
223 }
2f01a1f5
KV
224
225 /* DF_ENCRYPTION_DISABLE and DF_SNIFF_MODE_ENABLE are disabled */
ff25839b
KV
226 feature->data_flow_options = 0;
227 feature->options = 0;
2f01a1f5 228
80301cdc 229 ret = wl1251_cmd_configure(wl, ACX_FEATURE_CFG,
ff25839b
KV
230 feature, sizeof(*feature));
231 if (ret < 0) {
da3c821f 232 wl1251_error("Couldn't set HW encryption");
ff25839b
KV
233 goto out;
234 }
2f01a1f5 235
ff25839b
KV
236out:
237 kfree(feature);
2f01a1f5
KV
238 return ret;
239}
240
80301cdc 241int wl1251_acx_mem_map(struct wl1251 *wl, struct acx_header *mem_map,
ff25839b 242 size_t len)
2f01a1f5 243{
2f01a1f5
KV
244 int ret;
245
80301cdc 246 wl1251_debug(DEBUG_ACX, "acx mem map");
2f01a1f5 247
80301cdc 248 ret = wl1251_cmd_interrogate(wl, ACX_MEM_MAP, mem_map, len);
2f01a1f5
KV
249 if (ret < 0)
250 return ret;
2f01a1f5
KV
251
252 return 0;
253}
254
80301cdc 255int wl1251_acx_data_path_params(struct wl1251 *wl,
ff25839b 256 struct acx_data_path_params_resp *resp)
2f01a1f5 257{
ff25839b 258 struct acx_data_path_params *params;
2f01a1f5
KV
259 int ret;
260
80301cdc 261 wl1251_debug(DEBUG_ACX, "acx data path params");
2f01a1f5 262
ff25839b
KV
263 params = kzalloc(sizeof(*params), GFP_KERNEL);
264 if (!params) {
265 ret = -ENOMEM;
266 goto out;
267 }
2f01a1f5 268
ff25839b
KV
269 params->rx_packet_ring_chunk_size = DP_RX_PACKET_RING_CHUNK_SIZE;
270 params->tx_packet_ring_chunk_size = DP_TX_PACKET_RING_CHUNK_SIZE;
2f01a1f5 271
ff25839b
KV
272 params->rx_packet_ring_chunk_num = DP_RX_PACKET_RING_CHUNK_NUM;
273 params->tx_packet_ring_chunk_num = DP_TX_PACKET_RING_CHUNK_NUM;
2f01a1f5 274
ff25839b 275 params->tx_complete_threshold = 1;
2f01a1f5 276
ff25839b 277 params->tx_complete_ring_depth = FW_TX_CMPLT_BLOCK_SIZE;
2f01a1f5 278
ff25839b 279 params->tx_complete_timeout = DP_TX_COMPLETE_TIME_OUT;
2f01a1f5 280
80301cdc 281 ret = wl1251_cmd_configure(wl, ACX_DATA_PATH_PARAMS,
ff25839b 282 params, sizeof(*params));
2f01a1f5 283 if (ret < 0)
ff25839b 284 goto out;
2f01a1f5 285
ff25839b 286 /* FIXME: shouldn't this be ACX_DATA_PATH_RESP_PARAMS? */
80301cdc 287 ret = wl1251_cmd_interrogate(wl, ACX_DATA_PATH_PARAMS,
ff25839b 288 resp, sizeof(*resp));
2f01a1f5
KV
289
290 if (ret < 0) {
80301cdc 291 wl1251_warning("failed to read data path parameters: %d", ret);
ff25839b
KV
292 goto out;
293 } else if (resp->header.cmd.status != CMD_STATUS_SUCCESS) {
80301cdc 294 wl1251_warning("data path parameter acx status failed");
ff25839b
KV
295 ret = -EIO;
296 goto out;
2f01a1f5
KV
297 }
298
ff25839b
KV
299out:
300 kfree(params);
301 return ret;
2f01a1f5
KV
302}
303
80301cdc 304int wl1251_acx_rx_msdu_life_time(struct wl1251 *wl, u32 life_time)
2f01a1f5 305{
ff25839b 306 struct acx_rx_msdu_lifetime *acx;
2f01a1f5
KV
307 int ret;
308
80301cdc 309 wl1251_debug(DEBUG_ACX, "acx rx msdu life time");
2f01a1f5 310
ff25839b
KV
311 acx = kzalloc(sizeof(*acx), GFP_KERNEL);
312 if (!acx) {
313 ret = -ENOMEM;
314 goto out;
315 }
2f01a1f5 316
ce650b5c 317 acx->lifetime = life_time;
80301cdc 318 ret = wl1251_cmd_configure(wl, DOT11_RX_MSDU_LIFE_TIME,
ff25839b 319 acx, sizeof(*acx));
2f01a1f5 320 if (ret < 0) {
80301cdc 321 wl1251_warning("failed to set rx msdu life time: %d", ret);
ff25839b 322 goto out;
2f01a1f5
KV
323 }
324
ff25839b
KV
325out:
326 kfree(acx);
327 return ret;
2f01a1f5
KV
328}
329
80301cdc 330int wl1251_acx_rx_config(struct wl1251 *wl, u32 config, u32 filter)
2f01a1f5 331{
ff25839b 332 struct acx_rx_config *rx_config;
2f01a1f5
KV
333 int ret;
334
80301cdc 335 wl1251_debug(DEBUG_ACX, "acx rx config");
2f01a1f5 336
ff25839b
KV
337 rx_config = kzalloc(sizeof(*rx_config), GFP_KERNEL);
338 if (!rx_config) {
339 ret = -ENOMEM;
340 goto out;
341 }
342
343 rx_config->config_options = config;
344 rx_config->filter_options = filter;
2f01a1f5 345
80301cdc 346 ret = wl1251_cmd_configure(wl, ACX_RX_CFG,
ff25839b 347 rx_config, sizeof(*rx_config));
2f01a1f5 348 if (ret < 0) {
80301cdc 349 wl1251_warning("failed to set rx config: %d", ret);
ff25839b 350 goto out;
2f01a1f5
KV
351 }
352
ff25839b
KV
353out:
354 kfree(rx_config);
355 return ret;
2f01a1f5
KV
356}
357
80301cdc 358int wl1251_acx_pd_threshold(struct wl1251 *wl)
2f01a1f5 359{
ff25839b 360 struct acx_packet_detection *pd;
2f01a1f5
KV
361 int ret;
362
80301cdc 363 wl1251_debug(DEBUG_ACX, "acx data pd threshold");
2f01a1f5 364
ff25839b
KV
365 pd = kzalloc(sizeof(*pd), GFP_KERNEL);
366 if (!pd) {
367 ret = -ENOMEM;
368 goto out;
369 }
370
2f01a1f5 371 /* FIXME: threshold value not set */
2f01a1f5 372
80301cdc 373 ret = wl1251_cmd_configure(wl, ACX_PD_THRESHOLD, pd, sizeof(*pd));
2f01a1f5 374 if (ret < 0) {
80301cdc 375 wl1251_warning("failed to set pd threshold: %d", ret);
ff25839b 376 goto out;
2f01a1f5
KV
377 }
378
ff25839b
KV
379out:
380 kfree(pd);
9f19fa62 381 return ret;
2f01a1f5
KV
382}
383
80301cdc 384int wl1251_acx_slot(struct wl1251 *wl, enum acx_slot_type slot_time)
2f01a1f5 385{
ff25839b 386 struct acx_slot *slot;
2f01a1f5
KV
387 int ret;
388
80301cdc 389 wl1251_debug(DEBUG_ACX, "acx slot");
2f01a1f5 390
ff25839b
KV
391 slot = kzalloc(sizeof(*slot), GFP_KERNEL);
392 if (!slot) {
393 ret = -ENOMEM;
394 goto out;
395 }
2f01a1f5 396
ff25839b
KV
397 slot->wone_index = STATION_WONE_INDEX;
398 slot->slot_time = slot_time;
2f01a1f5 399
80301cdc 400 ret = wl1251_cmd_configure(wl, ACX_SLOT, slot, sizeof(*slot));
2f01a1f5 401 if (ret < 0) {
80301cdc 402 wl1251_warning("failed to set slot time: %d", ret);
ff25839b 403 goto out;
2f01a1f5
KV
404 }
405
ff25839b
KV
406out:
407 kfree(slot);
408 return ret;
2f01a1f5
KV
409}
410
80301cdc 411int wl1251_acx_group_address_tbl(struct wl1251 *wl)
2f01a1f5 412{
ff25839b 413 struct acx_dot11_grp_addr_tbl *acx;
2f01a1f5
KV
414 int ret;
415
80301cdc 416 wl1251_debug(DEBUG_ACX, "acx group address tbl");
2f01a1f5 417
ff25839b
KV
418 acx = kzalloc(sizeof(*acx), GFP_KERNEL);
419 if (!acx) {
420 ret = -ENOMEM;
421 goto out;
422 }
2f01a1f5 423
ff25839b
KV
424 /* MAC filtering */
425 acx->enabled = 0;
426 acx->num_groups = 0;
427 memset(acx->mac_table, 0, ADDRESS_GROUP_MAX_LEN);
2f01a1f5 428
80301cdc 429 ret = wl1251_cmd_configure(wl, DOT11_GROUP_ADDRESS_TBL,
ff25839b 430 acx, sizeof(*acx));
2f01a1f5 431 if (ret < 0) {
80301cdc 432 wl1251_warning("failed to set group addr table: %d", ret);
ff25839b 433 goto out;
2f01a1f5
KV
434 }
435
ff25839b
KV
436out:
437 kfree(acx);
438 return ret;
2f01a1f5
KV
439}
440
80301cdc 441int wl1251_acx_service_period_timeout(struct wl1251 *wl)
2f01a1f5 442{
ff25839b 443 struct acx_rx_timeout *rx_timeout;
2f01a1f5
KV
444 int ret;
445
ff25839b
KV
446 rx_timeout = kzalloc(sizeof(*rx_timeout), GFP_KERNEL);
447 if (!rx_timeout) {
448 ret = -ENOMEM;
449 goto out;
450 }
2f01a1f5 451
80301cdc 452 wl1251_debug(DEBUG_ACX, "acx service period timeout");
2f01a1f5 453
ff25839b
KV
454 rx_timeout->ps_poll_timeout = RX_TIMEOUT_PS_POLL_DEF;
455 rx_timeout->upsd_timeout = RX_TIMEOUT_UPSD_DEF;
2f01a1f5 456
80301cdc 457 ret = wl1251_cmd_configure(wl, ACX_SERVICE_PERIOD_TIMEOUT,
ff25839b 458 rx_timeout, sizeof(*rx_timeout));
2f01a1f5 459 if (ret < 0) {
80301cdc 460 wl1251_warning("failed to set service period timeout: %d",
2f01a1f5 461 ret);
ff25839b 462 goto out;
2f01a1f5
KV
463 }
464
ff25839b
KV
465out:
466 kfree(rx_timeout);
467 return ret;
2f01a1f5
KV
468}
469
80301cdc 470int wl1251_acx_rts_threshold(struct wl1251 *wl, u16 rts_threshold)
2f01a1f5 471{
ff25839b 472 struct acx_rts_threshold *rts;
2f01a1f5
KV
473 int ret;
474
80301cdc 475 wl1251_debug(DEBUG_ACX, "acx rts threshold");
2f01a1f5 476
ff25839b
KV
477 rts = kzalloc(sizeof(*rts), GFP_KERNEL);
478 if (!rts) {
479 ret = -ENOMEM;
480 goto out;
481 }
2f01a1f5 482
ff25839b 483 rts->threshold = rts_threshold;
2f01a1f5 484
80301cdc 485 ret = wl1251_cmd_configure(wl, DOT11_RTS_THRESHOLD, rts, sizeof(*rts));
2f01a1f5 486 if (ret < 0) {
80301cdc 487 wl1251_warning("failed to set rts threshold: %d", ret);
ff25839b 488 goto out;
2f01a1f5
KV
489 }
490
ff25839b
KV
491out:
492 kfree(rts);
493 return ret;
2f01a1f5
KV
494}
495
6b21a2cd 496int wl1251_acx_beacon_filter_opt(struct wl1251 *wl, bool enable_filter)
2f01a1f5 497{
ff25839b 498 struct acx_beacon_filter_option *beacon_filter;
2f01a1f5
KV
499 int ret;
500
80301cdc 501 wl1251_debug(DEBUG_ACX, "acx beacon filter opt");
2f01a1f5 502
ff25839b
KV
503 beacon_filter = kzalloc(sizeof(*beacon_filter), GFP_KERNEL);
504 if (!beacon_filter) {
505 ret = -ENOMEM;
506 goto out;
507 }
2f01a1f5 508
6b21a2cd 509 beacon_filter->enable = enable_filter;
ff25839b 510 beacon_filter->max_num_beacons = 0;
2f01a1f5 511
80301cdc 512 ret = wl1251_cmd_configure(wl, ACX_BEACON_FILTER_OPT,
ff25839b 513 beacon_filter, sizeof(*beacon_filter));
2f01a1f5 514 if (ret < 0) {
80301cdc 515 wl1251_warning("failed to set beacon filter opt: %d", ret);
ff25839b 516 goto out;
2f01a1f5
KV
517 }
518
ff25839b
KV
519out:
520 kfree(beacon_filter);
521 return ret;
2f01a1f5
KV
522}
523
80301cdc 524int wl1251_acx_beacon_filter_table(struct wl1251 *wl)
2f01a1f5 525{
ff25839b 526 struct acx_beacon_filter_ie_table *ie_table;
6b21a2cd 527 int idx = 0;
2f01a1f5
KV
528 int ret;
529
80301cdc 530 wl1251_debug(DEBUG_ACX, "acx beacon filter table");
2f01a1f5 531
ff25839b
KV
532 ie_table = kzalloc(sizeof(*ie_table), GFP_KERNEL);
533 if (!ie_table) {
534 ret = -ENOMEM;
535 goto out;
536 }
2f01a1f5 537
6b21a2cd
JO
538 /* configure default beacon pass-through rules */
539 ie_table->num_ie = 1;
540 ie_table->table[idx++] = BEACON_FILTER_IE_ID_CHANNEL_SWITCH_ANN;
541 ie_table->table[idx++] = BEACON_RULE_PASS_ON_APPEARANCE;
2f01a1f5 542
80301cdc 543 ret = wl1251_cmd_configure(wl, ACX_BEACON_FILTER_TABLE,
ff25839b 544 ie_table, sizeof(*ie_table));
2f01a1f5 545 if (ret < 0) {
80301cdc 546 wl1251_warning("failed to set beacon filter table: %d", ret);
ff25839b 547 goto out;
2f01a1f5
KV
548 }
549
ff25839b
KV
550out:
551 kfree(ie_table);
552 return ret;
2f01a1f5
KV
553}
554
474c48c9
JO
555int wl1251_acx_conn_monit_params(struct wl1251 *wl)
556{
557 struct acx_conn_monit_params *acx;
558 int ret;
559
560 wl1251_debug(DEBUG_ACX, "acx connection monitor parameters");
561
562 acx = kzalloc(sizeof(*acx), GFP_KERNEL);
563 if (!acx) {
564 ret = -ENOMEM;
565 goto out;
566 }
567
568 acx->synch_fail_thold = SYNCH_FAIL_DEFAULT_THRESHOLD;
569 acx->bss_lose_timeout = NO_BEACON_DEFAULT_TIMEOUT;
570
571 ret = wl1251_cmd_configure(wl, ACX_CONN_MONIT_PARAMS,
572 acx, sizeof(*acx));
573 if (ret < 0) {
574 wl1251_warning("failed to set connection monitor "
575 "parameters: %d", ret);
576 goto out;
577 }
578
579out:
580 kfree(acx);
581 return ret;
582}
583
80301cdc 584int wl1251_acx_sg_enable(struct wl1251 *wl)
2f01a1f5 585{
ff25839b 586 struct acx_bt_wlan_coex *pta;
2f01a1f5
KV
587 int ret;
588
80301cdc 589 wl1251_debug(DEBUG_ACX, "acx sg enable");
2f01a1f5 590
ff25839b
KV
591 pta = kzalloc(sizeof(*pta), GFP_KERNEL);
592 if (!pta) {
593 ret = -ENOMEM;
594 goto out;
595 }
2f01a1f5 596
ff25839b 597 pta->enable = SG_ENABLE;
2f01a1f5 598
80301cdc 599 ret = wl1251_cmd_configure(wl, ACX_SG_ENABLE, pta, sizeof(*pta));
2f01a1f5 600 if (ret < 0) {
80301cdc 601 wl1251_warning("failed to set softgemini enable: %d", ret);
ff25839b 602 goto out;
2f01a1f5
KV
603 }
604
ff25839b
KV
605out:
606 kfree(pta);
607 return ret;
2f01a1f5
KV
608}
609
80301cdc 610int wl1251_acx_sg_cfg(struct wl1251 *wl)
2f01a1f5 611{
ff25839b 612 struct acx_bt_wlan_coex_param *param;
2f01a1f5
KV
613 int ret;
614
80301cdc 615 wl1251_debug(DEBUG_ACX, "acx sg cfg");
2f01a1f5 616
ff25839b
KV
617 param = kzalloc(sizeof(*param), GFP_KERNEL);
618 if (!param) {
619 ret = -ENOMEM;
620 goto out;
621 }
622
2f01a1f5 623 /* BT-WLAN coext parameters */
ff25839b
KV
624 param->min_rate = RATE_INDEX_24MBPS;
625 param->bt_hp_max_time = PTA_BT_HP_MAXTIME_DEF;
626 param->wlan_hp_max_time = PTA_WLAN_HP_MAX_TIME_DEF;
627 param->sense_disable_timer = PTA_SENSE_DISABLE_TIMER_DEF;
628 param->rx_time_bt_hp = PTA_PROTECTIVE_RX_TIME_DEF;
629 param->tx_time_bt_hp = PTA_PROTECTIVE_TX_TIME_DEF;
630 param->rx_time_bt_hp_fast = PTA_PROTECTIVE_RX_TIME_FAST_DEF;
631 param->tx_time_bt_hp_fast = PTA_PROTECTIVE_TX_TIME_FAST_DEF;
632 param->wlan_cycle_fast = PTA_CYCLE_TIME_FAST_DEF;
633 param->bt_anti_starvation_period = PTA_ANTI_STARVE_PERIOD_DEF;
634 param->next_bt_lp_packet = PTA_TIMEOUT_NEXT_BT_LP_PACKET_DEF;
635 param->wake_up_beacon = PTA_TIME_BEFORE_BEACON_DEF;
636 param->hp_dm_max_guard_time = PTA_HPDM_MAX_TIME_DEF;
637 param->next_wlan_packet = PTA_TIME_OUT_NEXT_WLAN_DEF;
638 param->antenna_type = PTA_ANTENNA_TYPE_DEF;
639 param->signal_type = PTA_SIGNALING_TYPE_DEF;
640 param->afh_leverage_on = PTA_AFH_LEVERAGE_ON_DEF;
641 param->quiet_cycle_num = PTA_NUMBER_QUIET_CYCLE_DEF;
642 param->max_cts = PTA_MAX_NUM_CTS_DEF;
643 param->wlan_packets_num = PTA_NUMBER_OF_WLAN_PACKETS_DEF;
644 param->bt_packets_num = PTA_NUMBER_OF_BT_PACKETS_DEF;
645 param->missed_rx_avalanche = PTA_RX_FOR_AVALANCHE_DEF;
646 param->wlan_elp_hp = PTA_ELP_HP_DEF;
647 param->bt_anti_starvation_cycles = PTA_ANTI_STARVE_NUM_CYCLE_DEF;
648 param->ack_mode_dual_ant = PTA_ACK_MODE_DEF;
649 param->pa_sd_enable = PTA_ALLOW_PA_SD_DEF;
650 param->pta_auto_mode_enable = PTA_AUTO_MODE_NO_CTS_DEF;
651 param->bt_hp_respected_num = PTA_BT_HP_RESPECTED_DEF;
652
80301cdc 653 ret = wl1251_cmd_configure(wl, ACX_SG_CFG, param, sizeof(*param));
2f01a1f5 654 if (ret < 0) {
80301cdc 655 wl1251_warning("failed to set sg config: %d", ret);
ff25839b 656 goto out;
2f01a1f5
KV
657 }
658
ff25839b
KV
659out:
660 kfree(param);
661 return ret;
2f01a1f5
KV
662}
663
80301cdc 664int wl1251_acx_cca_threshold(struct wl1251 *wl)
2f01a1f5 665{
ff25839b 666 struct acx_energy_detection *detection;
2f01a1f5
KV
667 int ret;
668
80301cdc 669 wl1251_debug(DEBUG_ACX, "acx cca threshold");
2f01a1f5 670
ff25839b
KV
671 detection = kzalloc(sizeof(*detection), GFP_KERNEL);
672 if (!detection) {
673 ret = -ENOMEM;
674 goto out;
675 }
2f01a1f5 676
ff25839b
KV
677 detection->rx_cca_threshold = CCA_THRSH_DISABLE_ENERGY_D;
678 detection->tx_energy_detection = 0;
2f01a1f5 679
80301cdc 680 ret = wl1251_cmd_configure(wl, ACX_CCA_THRESHOLD,
ff25839b 681 detection, sizeof(*detection));
059c4383 682 if (ret < 0)
80301cdc 683 wl1251_warning("failed to set cca threshold: %d", ret);
2f01a1f5 684
ff25839b
KV
685out:
686 kfree(detection);
687 return ret;
2f01a1f5
KV
688}
689
80301cdc 690int wl1251_acx_bcn_dtim_options(struct wl1251 *wl)
2f01a1f5 691{
ff25839b 692 struct acx_beacon_broadcast *bb;
2f01a1f5
KV
693 int ret;
694
80301cdc 695 wl1251_debug(DEBUG_ACX, "acx bcn dtim options");
2f01a1f5 696
ff25839b
KV
697 bb = kzalloc(sizeof(*bb), GFP_KERNEL);
698 if (!bb) {
699 ret = -ENOMEM;
700 goto out;
701 }
2f01a1f5 702
ff25839b
KV
703 bb->beacon_rx_timeout = BCN_RX_TIMEOUT_DEF_VALUE;
704 bb->broadcast_timeout = BROADCAST_RX_TIMEOUT_DEF_VALUE;
705 bb->rx_broadcast_in_ps = RX_BROADCAST_IN_PS_DEF_VALUE;
706 bb->ps_poll_threshold = CONSECUTIVE_PS_POLL_FAILURE_DEF;
2f01a1f5 707
80301cdc 708 ret = wl1251_cmd_configure(wl, ACX_BCN_DTIM_OPTIONS, bb, sizeof(*bb));
2f01a1f5 709 if (ret < 0) {
80301cdc 710 wl1251_warning("failed to set rx config: %d", ret);
ff25839b 711 goto out;
2f01a1f5
KV
712 }
713
ff25839b
KV
714out:
715 kfree(bb);
716 return ret;
2f01a1f5
KV
717}
718
80301cdc 719int wl1251_acx_aid(struct wl1251 *wl, u16 aid)
2f01a1f5 720{
ff25839b 721 struct acx_aid *acx_aid;
2f01a1f5
KV
722 int ret;
723
80301cdc 724 wl1251_debug(DEBUG_ACX, "acx aid");
2f01a1f5 725
ff25839b
KV
726 acx_aid = kzalloc(sizeof(*acx_aid), GFP_KERNEL);
727 if (!acx_aid) {
728 ret = -ENOMEM;
729 goto out;
730 }
2f01a1f5 731
ff25839b 732 acx_aid->aid = aid;
2f01a1f5 733
80301cdc 734 ret = wl1251_cmd_configure(wl, ACX_AID, acx_aid, sizeof(*acx_aid));
2f01a1f5 735 if (ret < 0) {
80301cdc 736 wl1251_warning("failed to set aid: %d", ret);
ff25839b 737 goto out;
2f01a1f5
KV
738 }
739
ff25839b
KV
740out:
741 kfree(acx_aid);
742 return ret;
2f01a1f5
KV
743}
744
80301cdc 745int wl1251_acx_event_mbox_mask(struct wl1251 *wl, u32 event_mask)
2f01a1f5 746{
ff25839b 747 struct acx_event_mask *mask;
2f01a1f5
KV
748 int ret;
749
80301cdc 750 wl1251_debug(DEBUG_ACX, "acx event mbox mask");
2f01a1f5 751
ff25839b
KV
752 mask = kzalloc(sizeof(*mask), GFP_KERNEL);
753 if (!mask) {
754 ret = -ENOMEM;
755 goto out;
756 }
2f01a1f5
KV
757
758 /* high event mask is unused */
ff25839b 759 mask->high_event_mask = 0xffffffff;
2f01a1f5 760
ff25839b 761 mask->event_mask = event_mask;
2f01a1f5 762
80301cdc 763 ret = wl1251_cmd_configure(wl, ACX_EVENT_MBOX_MASK,
ff25839b 764 mask, sizeof(*mask));
2f01a1f5 765 if (ret < 0) {
80301cdc 766 wl1251_warning("failed to set acx_event_mbox_mask: %d", ret);
ff25839b 767 goto out;
2f01a1f5
KV
768 }
769
ff25839b
KV
770out:
771 kfree(mask);
772 return ret;
2f01a1f5
KV
773}
774
8964e492
DG
775int wl1251_acx_low_rssi(struct wl1251 *wl, s8 threshold, u8 weight,
776 u8 depth, enum wl1251_acx_low_rssi_type type)
777{
778 struct acx_low_rssi *rssi;
779 int ret;
780
781 wl1251_debug(DEBUG_ACX, "acx low rssi");
782
783 rssi = kzalloc(sizeof(*rssi), GFP_KERNEL);
784 if (!rssi)
785 return -ENOMEM;
786
787 rssi->threshold = threshold;
788 rssi->weight = weight;
789 rssi->depth = depth;
790 rssi->type = type;
791
792 ret = wl1251_cmd_configure(wl, ACX_LOW_RSSI, rssi, sizeof(*rssi));
793 if (ret < 0)
794 wl1251_warning("failed to set low rssi threshold: %d", ret);
795
796 kfree(rssi);
797 return ret;
798}
799
80301cdc 800int wl1251_acx_set_preamble(struct wl1251 *wl, enum acx_preamble_type preamble)
2f01a1f5 801{
ff25839b 802 struct acx_preamble *acx;
2f01a1f5
KV
803 int ret;
804
80301cdc 805 wl1251_debug(DEBUG_ACX, "acx_set_preamble");
2f01a1f5 806
ff25839b
KV
807 acx = kzalloc(sizeof(*acx), GFP_KERNEL);
808 if (!acx) {
809 ret = -ENOMEM;
810 goto out;
811 }
2f01a1f5 812
ff25839b
KV
813 acx->preamble = preamble;
814
80301cdc 815 ret = wl1251_cmd_configure(wl, ACX_PREAMBLE_TYPE, acx, sizeof(*acx));
2f01a1f5 816 if (ret < 0) {
80301cdc 817 wl1251_warning("Setting of preamble failed: %d", ret);
ff25839b 818 goto out;
2f01a1f5 819 }
ff25839b
KV
820
821out:
822 kfree(acx);
823 return ret;
2f01a1f5
KV
824}
825
80301cdc 826int wl1251_acx_cts_protect(struct wl1251 *wl,
2f01a1f5
KV
827 enum acx_ctsprotect_type ctsprotect)
828{
ff25839b 829 struct acx_ctsprotect *acx;
2f01a1f5
KV
830 int ret;
831
80301cdc 832 wl1251_debug(DEBUG_ACX, "acx_set_ctsprotect");
2f01a1f5 833
ff25839b
KV
834 acx = kzalloc(sizeof(*acx), GFP_KERNEL);
835 if (!acx) {
836 ret = -ENOMEM;
837 goto out;
838 }
839
840 acx->ctsprotect = ctsprotect;
2f01a1f5 841
80301cdc 842 ret = wl1251_cmd_configure(wl, ACX_CTS_PROTECTION, acx, sizeof(*acx));
2f01a1f5 843 if (ret < 0) {
80301cdc 844 wl1251_warning("Setting of ctsprotect failed: %d", ret);
ff25839b 845 goto out;
2f01a1f5 846 }
ff25839b
KV
847
848out:
849 kfree(acx);
850 return ret;
2f01a1f5
KV
851}
852
80301cdc 853int wl1251_acx_tsf_info(struct wl1251 *wl, u64 *mactime)
2f01a1f5 854{
ff25839b 855 struct acx_tsf_info *tsf_info;
2f01a1f5
KV
856 int ret;
857
ff25839b
KV
858 tsf_info = kzalloc(sizeof(*tsf_info), GFP_KERNEL);
859 if (!tsf_info) {
2f01a1f5
KV
860 ret = -ENOMEM;
861 goto out;
862 }
863
80301cdc 864 ret = wl1251_cmd_interrogate(wl, ACX_TSF_INFO,
ff25839b 865 tsf_info, sizeof(*tsf_info));
2f01a1f5 866 if (ret < 0) {
80301cdc 867 wl1251_warning("ACX_FW_REV interrogate failed");
2f01a1f5
KV
868 goto out;
869 }
870
ff25839b
KV
871 *mactime = tsf_info->current_tsf_lsb |
872 (tsf_info->current_tsf_msb << 31);
2f01a1f5
KV
873
874out:
ff25839b 875 kfree(tsf_info);
2f01a1f5
KV
876 return ret;
877}
ff25839b 878
80301cdc 879int wl1251_acx_statistics(struct wl1251 *wl, struct acx_statistics *stats)
ff25839b
KV
880{
881 int ret;
882
80301cdc 883 wl1251_debug(DEBUG_ACX, "acx statistics");
ff25839b 884
80301cdc 885 ret = wl1251_cmd_interrogate(wl, ACX_STATISTICS, stats,
ff25839b
KV
886 sizeof(*stats));
887 if (ret < 0) {
80301cdc 888 wl1251_warning("acx statistics failed: %d", ret);
ff25839b
KV
889 return -ENOMEM;
890 }
891
892 return 0;
893}
0e71bb08
KV
894
895int wl1251_acx_rate_policies(struct wl1251 *wl)
896{
897 struct acx_rate_policy *acx;
898 int ret = 0;
899
900 wl1251_debug(DEBUG_ACX, "acx rate policies");
901
902 acx = kzalloc(sizeof(*acx), GFP_KERNEL);
903
904 if (!acx) {
905 ret = -ENOMEM;
906 goto out;
907 }
908
909 /* configure one default (one-size-fits-all) rate class */
910 acx->rate_class_cnt = 1;
911 acx->rate_class[0].enabled_rates = ACX_RATE_MASK_UNSPECIFIED;
912 acx->rate_class[0].short_retry_limit = ACX_RATE_RETRY_LIMIT;
913 acx->rate_class[0].long_retry_limit = ACX_RATE_RETRY_LIMIT;
914 acx->rate_class[0].aflags = 0;
915
916 ret = wl1251_cmd_configure(wl, ACX_RATE_POLICY, acx, sizeof(*acx));
917 if (ret < 0) {
918 wl1251_warning("Setting of rate policies failed: %d", ret);
919 goto out;
920 }
921
922out:
923 kfree(acx);
924 return ret;
925}
926
927int wl1251_acx_mem_cfg(struct wl1251 *wl)
928{
929 struct wl1251_acx_config_memory *mem_conf;
930 int ret, i;
931
932 wl1251_debug(DEBUG_ACX, "acx mem cfg");
933
934 mem_conf = kzalloc(sizeof(*mem_conf), GFP_KERNEL);
935 if (!mem_conf) {
936 ret = -ENOMEM;
937 goto out;
938 }
939
940 /* memory config */
941 mem_conf->mem_config.num_stations = cpu_to_le16(DEFAULT_NUM_STATIONS);
942 mem_conf->mem_config.rx_mem_block_num = 35;
943 mem_conf->mem_config.tx_min_mem_block_num = 64;
944 mem_conf->mem_config.num_tx_queues = MAX_TX_QUEUES;
945 mem_conf->mem_config.host_if_options = HOSTIF_PKT_RING;
946 mem_conf->mem_config.num_ssid_profiles = 1;
947 mem_conf->mem_config.debug_buffer_size =
948 cpu_to_le16(TRACE_BUFFER_MAX_SIZE);
949
950 /* RX queue config */
951 mem_conf->rx_queue_config.dma_address = 0;
952 mem_conf->rx_queue_config.num_descs = ACX_RX_DESC_DEF;
953 mem_conf->rx_queue_config.priority = DEFAULT_RXQ_PRIORITY;
954 mem_conf->rx_queue_config.type = DEFAULT_RXQ_TYPE;
955
956 /* TX queue config */
957 for (i = 0; i < MAX_TX_QUEUES; i++) {
958 mem_conf->tx_queue_config[i].num_descs = ACX_TX_DESC_DEF;
959 mem_conf->tx_queue_config[i].attributes = i;
960 }
961
962 ret = wl1251_cmd_configure(wl, ACX_MEM_CFG, mem_conf,
963 sizeof(*mem_conf));
964 if (ret < 0) {
965 wl1251_warning("wl1251 mem config failed: %d", ret);
966 goto out;
967 }
968
969out:
970 kfree(mem_conf);
971 return ret;
972}
d531cf30
VG
973
974int wl1251_acx_wr_tbtt_and_dtim(struct wl1251 *wl, u16 tbtt, u8 dtim)
975{
976 struct wl1251_acx_wr_tbtt_and_dtim *acx;
977 int ret;
978
979 wl1251_debug(DEBUG_ACX, "acx tbtt and dtim");
980
981 acx = kzalloc(sizeof(*acx), GFP_KERNEL);
982 if (!acx) {
983 ret = -ENOMEM;
984 goto out;
985 }
986
987 acx->tbtt = tbtt;
988 acx->dtim = dtim;
989
990 ret = wl1251_cmd_configure(wl, ACX_WR_TBTT_AND_DTIM,
991 acx, sizeof(*acx));
992 if (ret < 0) {
993 wl1251_warning("failed to set tbtt and dtim: %d", ret);
994 goto out;
995 }
996
997out:
998 kfree(acx);
999 return ret;
1000}
86dff7a7 1001
c3e334d2
DG
1002int wl1251_acx_bet_enable(struct wl1251 *wl, enum wl1251_acx_bet_mode mode,
1003 u8 max_consecutive)
1004{
1005 struct wl1251_acx_bet_enable *acx;
1006 int ret;
1007
1008 wl1251_debug(DEBUG_ACX, "acx bet enable");
1009
1010 acx = kzalloc(sizeof(*acx), GFP_KERNEL);
1011 if (!acx) {
1012 ret = -ENOMEM;
1013 goto out;
1014 }
1015
1016 acx->enable = mode;
1017 acx->max_consecutive = max_consecutive;
1018
1019 ret = wl1251_cmd_configure(wl, ACX_BET_ENABLE, acx, sizeof(*acx));
1020 if (ret < 0) {
1021 wl1251_warning("wl1251 acx bet enable failed: %d", ret);
1022 goto out;
1023 }
1024
1025out:
1026 kfree(acx);
1027 return ret;
1028}
1029
86dff7a7
KV
1030int wl1251_acx_ac_cfg(struct wl1251 *wl, u8 ac, u8 cw_min, u16 cw_max,
1031 u8 aifs, u16 txop)
1032{
1033 struct wl1251_acx_ac_cfg *acx;
1034 int ret = 0;
1035
1036 wl1251_debug(DEBUG_ACX, "acx ac cfg %d cw_ming %d cw_max %d "
1037 "aifs %d txop %d", ac, cw_min, cw_max, aifs, txop);
1038
1039 acx = kzalloc(sizeof(*acx), GFP_KERNEL);
1040
1041 if (!acx) {
1042 ret = -ENOMEM;
1043 goto out;
1044 }
1045
1046 acx->ac = ac;
1047 acx->cw_min = cw_min;
1048 acx->cw_max = cw_max;
1049 acx->aifsn = aifs;
1050 acx->txop_limit = txop;
1051
1052 ret = wl1251_cmd_configure(wl, ACX_AC_CFG, acx, sizeof(*acx));
1053 if (ret < 0) {
1054 wl1251_warning("acx ac cfg failed: %d", ret);
1055 goto out;
1056 }
1057
1058out:
1059 kfree(acx);
1060 return ret;
1061}
27336f1c
KV
1062
1063int wl1251_acx_tid_cfg(struct wl1251 *wl, u8 queue,
1064 enum wl1251_acx_channel_type type,
1065 u8 tsid, enum wl1251_acx_ps_scheme ps_scheme,
1066 enum wl1251_acx_ack_policy ack_policy)
1067{
1068 struct wl1251_acx_tid_cfg *acx;
1069 int ret = 0;
1070
1071 wl1251_debug(DEBUG_ACX, "acx tid cfg %d type %d tsid %d "
1072 "ps_scheme %d ack_policy %d", queue, type, tsid,
1073 ps_scheme, ack_policy);
1074
1075 acx = kzalloc(sizeof(*acx), GFP_KERNEL);
1076
1077 if (!acx) {
1078 ret = -ENOMEM;
1079 goto out;
1080 }
1081
1082 acx->queue = queue;
1083 acx->type = type;
1084 acx->tsid = tsid;
1085 acx->ps_scheme = ps_scheme;
1086 acx->ack_policy = ack_policy;
1087
1088 ret = wl1251_cmd_configure(wl, ACX_TID_CFG, acx, sizeof(*acx));
1089 if (ret < 0) {
1090 wl1251_warning("acx tid cfg failed: %d", ret);
1091 goto out;
1092 }
1093
1094out:
1095 kfree(acx);
1096 return ret;
1097}
This page took 0.364839 seconds and 5 git commands to generate.