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