wl1251: remove fixed address support from spi commands
[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>
5#include <linux/spi/spi.h>
6
13674118 7#include "wl1251.h"
2f01a1f5 8#include "reg.h"
ef2f8d45
KV
9#include "wl1251_spi.h"
10#include "wl1251_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
KV
143 if (ret < 0)
144 return ret;
145
ff25839b
KV
146out:
147 kfree(auth);
148 return ret;
2f01a1f5
KV
149}
150
80301cdc 151int wl1251_acx_fw_version(struct wl1251 *wl, char *buf, size_t len)
2f01a1f5 152{
2f01a1f5
KV
153 struct acx_revision *rev;
154 int ret;
155
80301cdc 156 wl1251_debug(DEBUG_ACX, "acx fw rev");
2f01a1f5 157
ff25839b
KV
158 rev = kzalloc(sizeof(*rev), GFP_KERNEL);
159 if (!rev) {
160 ret = -ENOMEM;
161 goto out;
162 }
2f01a1f5 163
80301cdc 164 ret = wl1251_cmd_interrogate(wl, ACX_FW_REV, rev, sizeof(*rev));
2f01a1f5 165 if (ret < 0) {
80301cdc 166 wl1251_warning("ACX_FW_REV interrogate failed");
ff25839b 167 goto out;
2f01a1f5
KV
168 }
169
2f01a1f5
KV
170 /* be careful with the buffer sizes */
171 strncpy(buf, rev->fw_version, min(len, sizeof(rev->fw_version)));
172
173 /*
174 * if the firmware version string is exactly
175 * sizeof(rev->fw_version) long or fw_len is less than
176 * sizeof(rev->fw_version) it won't be null terminated
177 */
178 buf[min(len, sizeof(rev->fw_version)) - 1] = '\0';
179
ff25839b
KV
180out:
181 kfree(rev);
182 return ret;
2f01a1f5
KV
183}
184
80301cdc 185int wl1251_acx_tx_power(struct wl1251 *wl, int power)
2f01a1f5 186{
ff25839b 187 struct acx_current_tx_power *acx;
2f01a1f5
KV
188 int ret;
189
80301cdc 190 wl1251_debug(DEBUG_ACX, "acx dot11_cur_tx_pwr");
2f01a1f5
KV
191
192 if (power < 0 || power > 25)
193 return -EINVAL;
194
ff25839b
KV
195 acx = kzalloc(sizeof(*acx), GFP_KERNEL);
196 if (!acx) {
197 ret = -ENOMEM;
198 goto out;
199 }
2f01a1f5 200
ff25839b 201 acx->current_tx_power = power * 10;
2f01a1f5 202
80301cdc 203 ret = wl1251_cmd_configure(wl, DOT11_CUR_TX_PWR, acx, sizeof(*acx));
2f01a1f5 204 if (ret < 0) {
80301cdc 205 wl1251_warning("configure of tx power failed: %d", ret);
ff25839b 206 goto out;
2f01a1f5
KV
207 }
208
ff25839b
KV
209out:
210 kfree(acx);
211 return ret;
2f01a1f5
KV
212}
213
80301cdc 214int wl1251_acx_feature_cfg(struct wl1251 *wl)
2f01a1f5 215{
ff25839b 216 struct acx_feature_config *feature;
2f01a1f5
KV
217 int ret;
218
80301cdc 219 wl1251_debug(DEBUG_ACX, "acx feature cfg");
2f01a1f5 220
ff25839b
KV
221 feature = kzalloc(sizeof(*feature), GFP_KERNEL);
222 if (!feature) {
223 ret = -ENOMEM;
224 goto out;
225 }
2f01a1f5
KV
226
227 /* DF_ENCRYPTION_DISABLE and DF_SNIFF_MODE_ENABLE are disabled */
ff25839b
KV
228 feature->data_flow_options = 0;
229 feature->options = 0;
2f01a1f5 230
80301cdc 231 ret = wl1251_cmd_configure(wl, ACX_FEATURE_CFG,
ff25839b
KV
232 feature, sizeof(*feature));
233 if (ret < 0) {
da3c821f 234 wl1251_error("Couldn't set HW encryption");
ff25839b
KV
235 goto out;
236 }
2f01a1f5 237
ff25839b
KV
238out:
239 kfree(feature);
2f01a1f5
KV
240 return ret;
241}
242
80301cdc 243int wl1251_acx_mem_map(struct wl1251 *wl, struct acx_header *mem_map,
ff25839b 244 size_t len)
2f01a1f5 245{
2f01a1f5
KV
246 int ret;
247
80301cdc 248 wl1251_debug(DEBUG_ACX, "acx mem map");
2f01a1f5 249
80301cdc 250 ret = wl1251_cmd_interrogate(wl, ACX_MEM_MAP, mem_map, len);
2f01a1f5
KV
251 if (ret < 0)
252 return ret;
2f01a1f5
KV
253
254 return 0;
255}
256
80301cdc 257int wl1251_acx_data_path_params(struct wl1251 *wl,
ff25839b 258 struct acx_data_path_params_resp *resp)
2f01a1f5 259{
ff25839b 260 struct acx_data_path_params *params;
2f01a1f5
KV
261 int ret;
262
80301cdc 263 wl1251_debug(DEBUG_ACX, "acx data path params");
2f01a1f5 264
ff25839b
KV
265 params = kzalloc(sizeof(*params), GFP_KERNEL);
266 if (!params) {
267 ret = -ENOMEM;
268 goto out;
269 }
2f01a1f5 270
ff25839b
KV
271 params->rx_packet_ring_chunk_size = DP_RX_PACKET_RING_CHUNK_SIZE;
272 params->tx_packet_ring_chunk_size = DP_TX_PACKET_RING_CHUNK_SIZE;
2f01a1f5 273
ff25839b
KV
274 params->rx_packet_ring_chunk_num = DP_RX_PACKET_RING_CHUNK_NUM;
275 params->tx_packet_ring_chunk_num = DP_TX_PACKET_RING_CHUNK_NUM;
2f01a1f5 276
ff25839b 277 params->tx_complete_threshold = 1;
2f01a1f5 278
ff25839b 279 params->tx_complete_ring_depth = FW_TX_CMPLT_BLOCK_SIZE;
2f01a1f5 280
ff25839b 281 params->tx_complete_timeout = DP_TX_COMPLETE_TIME_OUT;
2f01a1f5 282
80301cdc 283 ret = wl1251_cmd_configure(wl, ACX_DATA_PATH_PARAMS,
ff25839b 284 params, sizeof(*params));
2f01a1f5 285 if (ret < 0)
ff25839b 286 goto out;
2f01a1f5 287
ff25839b 288 /* FIXME: shouldn't this be ACX_DATA_PATH_RESP_PARAMS? */
80301cdc 289 ret = wl1251_cmd_interrogate(wl, ACX_DATA_PATH_PARAMS,
ff25839b 290 resp, sizeof(*resp));
2f01a1f5
KV
291
292 if (ret < 0) {
80301cdc 293 wl1251_warning("failed to read data path parameters: %d", ret);
ff25839b
KV
294 goto out;
295 } else if (resp->header.cmd.status != CMD_STATUS_SUCCESS) {
80301cdc 296 wl1251_warning("data path parameter acx status failed");
ff25839b
KV
297 ret = -EIO;
298 goto out;
2f01a1f5
KV
299 }
300
ff25839b
KV
301out:
302 kfree(params);
303 return ret;
2f01a1f5
KV
304}
305
80301cdc 306int wl1251_acx_rx_msdu_life_time(struct wl1251 *wl, u32 life_time)
2f01a1f5 307{
ff25839b 308 struct acx_rx_msdu_lifetime *acx;
2f01a1f5
KV
309 int ret;
310
80301cdc 311 wl1251_debug(DEBUG_ACX, "acx rx msdu life time");
2f01a1f5 312
ff25839b
KV
313 acx = kzalloc(sizeof(*acx), GFP_KERNEL);
314 if (!acx) {
315 ret = -ENOMEM;
316 goto out;
317 }
2f01a1f5 318
ce650b5c 319 acx->lifetime = life_time;
80301cdc 320 ret = wl1251_cmd_configure(wl, DOT11_RX_MSDU_LIFE_TIME,
ff25839b 321 acx, sizeof(*acx));
2f01a1f5 322 if (ret < 0) {
80301cdc 323 wl1251_warning("failed to set rx msdu life time: %d", ret);
ff25839b 324 goto out;
2f01a1f5
KV
325 }
326
ff25839b
KV
327out:
328 kfree(acx);
329 return ret;
2f01a1f5
KV
330}
331
80301cdc 332int wl1251_acx_rx_config(struct wl1251 *wl, u32 config, u32 filter)
2f01a1f5 333{
ff25839b 334 struct acx_rx_config *rx_config;
2f01a1f5
KV
335 int ret;
336
80301cdc 337 wl1251_debug(DEBUG_ACX, "acx rx config");
2f01a1f5 338
ff25839b
KV
339 rx_config = kzalloc(sizeof(*rx_config), GFP_KERNEL);
340 if (!rx_config) {
341 ret = -ENOMEM;
342 goto out;
343 }
344
345 rx_config->config_options = config;
346 rx_config->filter_options = filter;
2f01a1f5 347
80301cdc 348 ret = wl1251_cmd_configure(wl, ACX_RX_CFG,
ff25839b 349 rx_config, sizeof(*rx_config));
2f01a1f5 350 if (ret < 0) {
80301cdc 351 wl1251_warning("failed to set rx config: %d", ret);
ff25839b 352 goto out;
2f01a1f5
KV
353 }
354
ff25839b
KV
355out:
356 kfree(rx_config);
357 return ret;
2f01a1f5
KV
358}
359
80301cdc 360int wl1251_acx_pd_threshold(struct wl1251 *wl)
2f01a1f5 361{
ff25839b 362 struct acx_packet_detection *pd;
2f01a1f5
KV
363 int ret;
364
80301cdc 365 wl1251_debug(DEBUG_ACX, "acx data pd threshold");
2f01a1f5 366
ff25839b
KV
367 pd = kzalloc(sizeof(*pd), GFP_KERNEL);
368 if (!pd) {
369 ret = -ENOMEM;
370 goto out;
371 }
372
2f01a1f5 373 /* FIXME: threshold value not set */
2f01a1f5 374
80301cdc 375 ret = wl1251_cmd_configure(wl, ACX_PD_THRESHOLD, pd, sizeof(*pd));
2f01a1f5 376 if (ret < 0) {
80301cdc 377 wl1251_warning("failed to set pd threshold: %d", ret);
ff25839b 378 goto out;
2f01a1f5
KV
379 }
380
ff25839b
KV
381out:
382 kfree(pd);
2f01a1f5
KV
383 return 0;
384}
385
80301cdc 386int wl1251_acx_slot(struct wl1251 *wl, enum acx_slot_type slot_time)
2f01a1f5 387{
ff25839b 388 struct acx_slot *slot;
2f01a1f5
KV
389 int ret;
390
80301cdc 391 wl1251_debug(DEBUG_ACX, "acx slot");
2f01a1f5 392
ff25839b
KV
393 slot = kzalloc(sizeof(*slot), GFP_KERNEL);
394 if (!slot) {
395 ret = -ENOMEM;
396 goto out;
397 }
2f01a1f5 398
ff25839b
KV
399 slot->wone_index = STATION_WONE_INDEX;
400 slot->slot_time = slot_time;
2f01a1f5 401
80301cdc 402 ret = wl1251_cmd_configure(wl, ACX_SLOT, slot, sizeof(*slot));
2f01a1f5 403 if (ret < 0) {
80301cdc 404 wl1251_warning("failed to set slot time: %d", ret);
ff25839b 405 goto out;
2f01a1f5
KV
406 }
407
ff25839b
KV
408out:
409 kfree(slot);
410 return ret;
2f01a1f5
KV
411}
412
80301cdc 413int wl1251_acx_group_address_tbl(struct wl1251 *wl)
2f01a1f5 414{
ff25839b 415 struct acx_dot11_grp_addr_tbl *acx;
2f01a1f5
KV
416 int ret;
417
80301cdc 418 wl1251_debug(DEBUG_ACX, "acx group address tbl");
2f01a1f5 419
ff25839b
KV
420 acx = kzalloc(sizeof(*acx), GFP_KERNEL);
421 if (!acx) {
422 ret = -ENOMEM;
423 goto out;
424 }
2f01a1f5 425
ff25839b
KV
426 /* MAC filtering */
427 acx->enabled = 0;
428 acx->num_groups = 0;
429 memset(acx->mac_table, 0, ADDRESS_GROUP_MAX_LEN);
2f01a1f5 430
80301cdc 431 ret = wl1251_cmd_configure(wl, DOT11_GROUP_ADDRESS_TBL,
ff25839b 432 acx, sizeof(*acx));
2f01a1f5 433 if (ret < 0) {
80301cdc 434 wl1251_warning("failed to set group addr table: %d", ret);
ff25839b 435 goto out;
2f01a1f5
KV
436 }
437
ff25839b
KV
438out:
439 kfree(acx);
440 return ret;
2f01a1f5
KV
441}
442
80301cdc 443int wl1251_acx_service_period_timeout(struct wl1251 *wl)
2f01a1f5 444{
ff25839b 445 struct acx_rx_timeout *rx_timeout;
2f01a1f5
KV
446 int ret;
447
ff25839b
KV
448 rx_timeout = kzalloc(sizeof(*rx_timeout), GFP_KERNEL);
449 if (!rx_timeout) {
450 ret = -ENOMEM;
451 goto out;
452 }
2f01a1f5 453
80301cdc 454 wl1251_debug(DEBUG_ACX, "acx service period timeout");
2f01a1f5 455
ff25839b
KV
456 rx_timeout->ps_poll_timeout = RX_TIMEOUT_PS_POLL_DEF;
457 rx_timeout->upsd_timeout = RX_TIMEOUT_UPSD_DEF;
2f01a1f5 458
80301cdc 459 ret = wl1251_cmd_configure(wl, ACX_SERVICE_PERIOD_TIMEOUT,
ff25839b 460 rx_timeout, sizeof(*rx_timeout));
2f01a1f5 461 if (ret < 0) {
80301cdc 462 wl1251_warning("failed to set service period timeout: %d",
2f01a1f5 463 ret);
ff25839b 464 goto out;
2f01a1f5
KV
465 }
466
ff25839b
KV
467out:
468 kfree(rx_timeout);
469 return ret;
2f01a1f5
KV
470}
471
80301cdc 472int wl1251_acx_rts_threshold(struct wl1251 *wl, u16 rts_threshold)
2f01a1f5 473{
ff25839b 474 struct acx_rts_threshold *rts;
2f01a1f5
KV
475 int ret;
476
80301cdc 477 wl1251_debug(DEBUG_ACX, "acx rts threshold");
2f01a1f5 478
ff25839b
KV
479 rts = kzalloc(sizeof(*rts), GFP_KERNEL);
480 if (!rts) {
481 ret = -ENOMEM;
482 goto out;
483 }
2f01a1f5 484
ff25839b 485 rts->threshold = rts_threshold;
2f01a1f5 486
80301cdc 487 ret = wl1251_cmd_configure(wl, DOT11_RTS_THRESHOLD, rts, sizeof(*rts));
2f01a1f5 488 if (ret < 0) {
80301cdc 489 wl1251_warning("failed to set rts threshold: %d", ret);
ff25839b 490 goto out;
2f01a1f5
KV
491 }
492
ff25839b
KV
493out:
494 kfree(rts);
495 return ret;
2f01a1f5
KV
496}
497
80301cdc 498int wl1251_acx_beacon_filter_opt(struct wl1251 *wl)
2f01a1f5 499{
ff25839b 500 struct acx_beacon_filter_option *beacon_filter;
2f01a1f5
KV
501 int ret;
502
80301cdc 503 wl1251_debug(DEBUG_ACX, "acx beacon filter opt");
2f01a1f5 504
ff25839b
KV
505 beacon_filter = kzalloc(sizeof(*beacon_filter), GFP_KERNEL);
506 if (!beacon_filter) {
507 ret = -ENOMEM;
508 goto out;
509 }
2f01a1f5 510
ff25839b
KV
511 beacon_filter->enable = 0;
512 beacon_filter->max_num_beacons = 0;
2f01a1f5 513
80301cdc 514 ret = wl1251_cmd_configure(wl, ACX_BEACON_FILTER_OPT,
ff25839b 515 beacon_filter, sizeof(*beacon_filter));
2f01a1f5 516 if (ret < 0) {
80301cdc 517 wl1251_warning("failed to set beacon filter opt: %d", ret);
ff25839b 518 goto out;
2f01a1f5
KV
519 }
520
ff25839b
KV
521out:
522 kfree(beacon_filter);
523 return ret;
2f01a1f5
KV
524}
525
80301cdc 526int wl1251_acx_beacon_filter_table(struct wl1251 *wl)
2f01a1f5 527{
ff25839b 528 struct acx_beacon_filter_ie_table *ie_table;
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
ff25839b
KV
539 ie_table->num_ie = 0;
540 memset(ie_table->table, 0, BEACON_FILTER_TABLE_MAX_SIZE);
2f01a1f5 541
80301cdc 542 ret = wl1251_cmd_configure(wl, ACX_BEACON_FILTER_TABLE,
ff25839b 543 ie_table, sizeof(*ie_table));
2f01a1f5 544 if (ret < 0) {
80301cdc 545 wl1251_warning("failed to set beacon filter table: %d", ret);
ff25839b 546 goto out;
2f01a1f5
KV
547 }
548
ff25839b
KV
549out:
550 kfree(ie_table);
551 return ret;
2f01a1f5
KV
552}
553
80301cdc 554int wl1251_acx_sg_enable(struct wl1251 *wl)
2f01a1f5 555{
ff25839b 556 struct acx_bt_wlan_coex *pta;
2f01a1f5
KV
557 int ret;
558
80301cdc 559 wl1251_debug(DEBUG_ACX, "acx sg enable");
2f01a1f5 560
ff25839b
KV
561 pta = kzalloc(sizeof(*pta), GFP_KERNEL);
562 if (!pta) {
563 ret = -ENOMEM;
564 goto out;
565 }
2f01a1f5 566
ff25839b 567 pta->enable = SG_ENABLE;
2f01a1f5 568
80301cdc 569 ret = wl1251_cmd_configure(wl, ACX_SG_ENABLE, pta, sizeof(*pta));
2f01a1f5 570 if (ret < 0) {
80301cdc 571 wl1251_warning("failed to set softgemini enable: %d", ret);
ff25839b 572 goto out;
2f01a1f5
KV
573 }
574
ff25839b
KV
575out:
576 kfree(pta);
577 return ret;
2f01a1f5
KV
578}
579
80301cdc 580int wl1251_acx_sg_cfg(struct wl1251 *wl)
2f01a1f5 581{
ff25839b 582 struct acx_bt_wlan_coex_param *param;
2f01a1f5
KV
583 int ret;
584
80301cdc 585 wl1251_debug(DEBUG_ACX, "acx sg cfg");
2f01a1f5 586
ff25839b
KV
587 param = kzalloc(sizeof(*param), GFP_KERNEL);
588 if (!param) {
589 ret = -ENOMEM;
590 goto out;
591 }
592
2f01a1f5 593 /* BT-WLAN coext parameters */
ff25839b
KV
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
80301cdc 623 ret = wl1251_cmd_configure(wl, ACX_SG_CFG, param, sizeof(*param));
2f01a1f5 624 if (ret < 0) {
80301cdc 625 wl1251_warning("failed to set sg config: %d", ret);
ff25839b 626 goto out;
2f01a1f5
KV
627 }
628
ff25839b
KV
629out:
630 kfree(param);
631 return ret;
2f01a1f5
KV
632}
633
80301cdc 634int wl1251_acx_cca_threshold(struct wl1251 *wl)
2f01a1f5 635{
ff25839b 636 struct acx_energy_detection *detection;
2f01a1f5
KV
637 int ret;
638
80301cdc 639 wl1251_debug(DEBUG_ACX, "acx cca threshold");
2f01a1f5 640
ff25839b
KV
641 detection = kzalloc(sizeof(*detection), GFP_KERNEL);
642 if (!detection) {
643 ret = -ENOMEM;
644 goto out;
645 }
2f01a1f5 646
ff25839b
KV
647 detection->rx_cca_threshold = CCA_THRSH_DISABLE_ENERGY_D;
648 detection->tx_energy_detection = 0;
2f01a1f5 649
80301cdc 650 ret = wl1251_cmd_configure(wl, ACX_CCA_THRESHOLD,
ff25839b 651 detection, sizeof(*detection));
2f01a1f5 652 if (ret < 0) {
80301cdc 653 wl1251_warning("failed to set cca threshold: %d", ret);
2f01a1f5
KV
654 return ret;
655 }
656
ff25839b
KV
657out:
658 kfree(detection);
659 return ret;
2f01a1f5
KV
660}
661
80301cdc 662int wl1251_acx_bcn_dtim_options(struct wl1251 *wl)
2f01a1f5 663{
ff25839b 664 struct acx_beacon_broadcast *bb;
2f01a1f5
KV
665 int ret;
666
80301cdc 667 wl1251_debug(DEBUG_ACX, "acx bcn dtim options");
2f01a1f5 668
ff25839b
KV
669 bb = kzalloc(sizeof(*bb), GFP_KERNEL);
670 if (!bb) {
671 ret = -ENOMEM;
672 goto out;
673 }
2f01a1f5 674
ff25839b
KV
675 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;
2f01a1f5 679
80301cdc 680 ret = wl1251_cmd_configure(wl, ACX_BCN_DTIM_OPTIONS, bb, sizeof(*bb));
2f01a1f5 681 if (ret < 0) {
80301cdc 682 wl1251_warning("failed to set rx config: %d", ret);
ff25839b 683 goto out;
2f01a1f5
KV
684 }
685
ff25839b
KV
686out:
687 kfree(bb);
688 return ret;
2f01a1f5
KV
689}
690
80301cdc 691int wl1251_acx_aid(struct wl1251 *wl, u16 aid)
2f01a1f5 692{
ff25839b 693 struct acx_aid *acx_aid;
2f01a1f5
KV
694 int ret;
695
80301cdc 696 wl1251_debug(DEBUG_ACX, "acx aid");
2f01a1f5 697
ff25839b
KV
698 acx_aid = kzalloc(sizeof(*acx_aid), GFP_KERNEL);
699 if (!acx_aid) {
700 ret = -ENOMEM;
701 goto out;
702 }
2f01a1f5 703
ff25839b 704 acx_aid->aid = aid;
2f01a1f5 705
80301cdc 706 ret = wl1251_cmd_configure(wl, ACX_AID, acx_aid, sizeof(*acx_aid));
2f01a1f5 707 if (ret < 0) {
80301cdc 708 wl1251_warning("failed to set aid: %d", ret);
ff25839b 709 goto out;
2f01a1f5
KV
710 }
711
ff25839b
KV
712out:
713 kfree(acx_aid);
714 return ret;
2f01a1f5
KV
715}
716
80301cdc 717int wl1251_acx_event_mbox_mask(struct wl1251 *wl, u32 event_mask)
2f01a1f5 718{
ff25839b 719 struct acx_event_mask *mask;
2f01a1f5
KV
720 int ret;
721
80301cdc 722 wl1251_debug(DEBUG_ACX, "acx event mbox mask");
2f01a1f5 723
ff25839b
KV
724 mask = kzalloc(sizeof(*mask), GFP_KERNEL);
725 if (!mask) {
726 ret = -ENOMEM;
727 goto out;
728 }
2f01a1f5
KV
729
730 /* high event mask is unused */
ff25839b 731 mask->high_event_mask = 0xffffffff;
2f01a1f5 732
ff25839b 733 mask->event_mask = event_mask;
2f01a1f5 734
80301cdc 735 ret = wl1251_cmd_configure(wl, ACX_EVENT_MBOX_MASK,
ff25839b 736 mask, sizeof(*mask));
2f01a1f5 737 if (ret < 0) {
80301cdc 738 wl1251_warning("failed to set acx_event_mbox_mask: %d", ret);
ff25839b 739 goto out;
2f01a1f5
KV
740 }
741
ff25839b
KV
742out:
743 kfree(mask);
744 return ret;
2f01a1f5
KV
745}
746
80301cdc 747int wl1251_acx_set_preamble(struct wl1251 *wl, enum acx_preamble_type preamble)
2f01a1f5 748{
ff25839b 749 struct acx_preamble *acx;
2f01a1f5
KV
750 int ret;
751
80301cdc 752 wl1251_debug(DEBUG_ACX, "acx_set_preamble");
2f01a1f5 753
ff25839b
KV
754 acx = kzalloc(sizeof(*acx), GFP_KERNEL);
755 if (!acx) {
756 ret = -ENOMEM;
757 goto out;
758 }
2f01a1f5 759
ff25839b
KV
760 acx->preamble = preamble;
761
80301cdc 762 ret = wl1251_cmd_configure(wl, ACX_PREAMBLE_TYPE, acx, sizeof(*acx));
2f01a1f5 763 if (ret < 0) {
80301cdc 764 wl1251_warning("Setting of preamble failed: %d", ret);
ff25839b 765 goto out;
2f01a1f5 766 }
ff25839b
KV
767
768out:
769 kfree(acx);
770 return ret;
2f01a1f5
KV
771}
772
80301cdc 773int wl1251_acx_cts_protect(struct wl1251 *wl,
2f01a1f5
KV
774 enum acx_ctsprotect_type ctsprotect)
775{
ff25839b 776 struct acx_ctsprotect *acx;
2f01a1f5
KV
777 int ret;
778
80301cdc 779 wl1251_debug(DEBUG_ACX, "acx_set_ctsprotect");
2f01a1f5 780
ff25839b
KV
781 acx = kzalloc(sizeof(*acx), GFP_KERNEL);
782 if (!acx) {
783 ret = -ENOMEM;
784 goto out;
785 }
786
787 acx->ctsprotect = ctsprotect;
2f01a1f5 788
80301cdc 789 ret = wl1251_cmd_configure(wl, ACX_CTS_PROTECTION, acx, sizeof(*acx));
2f01a1f5 790 if (ret < 0) {
80301cdc 791 wl1251_warning("Setting of ctsprotect failed: %d", ret);
ff25839b 792 goto out;
2f01a1f5 793 }
ff25839b
KV
794
795out:
796 kfree(acx);
797 return ret;
2f01a1f5
KV
798}
799
80301cdc 800int wl1251_acx_tsf_info(struct wl1251 *wl, u64 *mactime)
2f01a1f5 801{
ff25839b 802 struct acx_tsf_info *tsf_info;
2f01a1f5
KV
803 int ret;
804
ff25839b
KV
805 tsf_info = kzalloc(sizeof(*tsf_info), GFP_KERNEL);
806 if (!tsf_info) {
2f01a1f5
KV
807 ret = -ENOMEM;
808 goto out;
809 }
810
80301cdc 811 ret = wl1251_cmd_interrogate(wl, ACX_TSF_INFO,
ff25839b 812 tsf_info, sizeof(*tsf_info));
2f01a1f5 813 if (ret < 0) {
80301cdc 814 wl1251_warning("ACX_FW_REV interrogate failed");
2f01a1f5
KV
815 goto out;
816 }
817
ff25839b
KV
818 *mactime = tsf_info->current_tsf_lsb |
819 (tsf_info->current_tsf_msb << 31);
2f01a1f5
KV
820
821out:
ff25839b 822 kfree(tsf_info);
2f01a1f5
KV
823 return ret;
824}
ff25839b 825
80301cdc 826int wl1251_acx_statistics(struct wl1251 *wl, struct acx_statistics *stats)
ff25839b
KV
827{
828 int ret;
829
80301cdc 830 wl1251_debug(DEBUG_ACX, "acx statistics");
ff25839b 831
80301cdc 832 ret = wl1251_cmd_interrogate(wl, ACX_STATISTICS, stats,
ff25839b
KV
833 sizeof(*stats));
834 if (ret < 0) {
80301cdc 835 wl1251_warning("acx statistics failed: %d", ret);
ff25839b
KV
836 return -ENOMEM;
837 }
838
839 return 0;
840}