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