blob: e7c22d3c75ac09c2e5eb3c535e59821d4703f439 [file] [log] [blame]
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001/*
2 * This file is part of wl1271
3 *
4 * Copyright (C) 2008-2009 Nokia Corporation
5 *
6 * Contact: Luciano Coelho <luciano.coelho@nokia.com>
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License
10 * version 2 as published by the Free Software Foundation.
11 *
12 * This program is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
20 * 02110-1301 USA
21 *
22 */
23
24#include "wl1271_acx.h"
25
26#include <linux/module.h>
27#include <linux/platform_device.h>
28#include <linux/crc7.h>
29#include <linux/spi/spi.h>
30
31#include "wl1271.h"
32#include "wl12xx_80211.h"
33#include "wl1271_reg.h"
Luciano Coelhof5fc0f82009-08-06 16:25:28 +030034#include "wl1271_ps.h"
35
Juuso Oikarinen51f2be22009-10-13 12:47:42 +030036int wl1271_acx_wake_up_conditions(struct wl1271 *wl)
Luciano Coelhof5fc0f82009-08-06 16:25:28 +030037{
38 struct acx_wake_up_condition *wake_up;
39 int ret;
40
41 wl1271_debug(DEBUG_ACX, "acx wake up conditions");
42
43 wake_up = kzalloc(sizeof(*wake_up), GFP_KERNEL);
44 if (!wake_up) {
45 ret = -ENOMEM;
46 goto out;
47 }
48
Juuso Oikarinen51f2be22009-10-13 12:47:42 +030049 wake_up->wake_up_event = wl->conf.conn.wake_up_event;
50 wake_up->listen_interval = wl->conf.conn.listen_interval;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +030051
52 ret = wl1271_cmd_configure(wl, ACX_WAKE_UP_CONDITIONS,
53 wake_up, sizeof(*wake_up));
54 if (ret < 0) {
55 wl1271_warning("could not set wake up conditions: %d", ret);
56 goto out;
57 }
58
59out:
60 kfree(wake_up);
61 return ret;
62}
63
64int wl1271_acx_sleep_auth(struct wl1271 *wl, u8 sleep_auth)
65{
66 struct acx_sleep_auth *auth;
67 int ret;
68
69 wl1271_debug(DEBUG_ACX, "acx sleep auth");
70
71 auth = kzalloc(sizeof(*auth), GFP_KERNEL);
72 if (!auth) {
73 ret = -ENOMEM;
74 goto out;
75 }
76
77 auth->sleep_auth = sleep_auth;
78
79 ret = wl1271_cmd_configure(wl, ACX_SLEEP_AUTH, auth, sizeof(*auth));
80 if (ret < 0)
81 return ret;
82
83out:
84 kfree(auth);
85 return ret;
86}
87
88int wl1271_acx_fw_version(struct wl1271 *wl, char *buf, size_t len)
89{
90 struct acx_revision *rev;
91 int ret;
92
93 wl1271_debug(DEBUG_ACX, "acx fw rev");
94
95 rev = kzalloc(sizeof(*rev), GFP_KERNEL);
96 if (!rev) {
97 ret = -ENOMEM;
98 goto out;
99 }
100
101 ret = wl1271_cmd_interrogate(wl, ACX_FW_REV, rev, sizeof(*rev));
102 if (ret < 0) {
103 wl1271_warning("ACX_FW_REV interrogate failed");
104 goto out;
105 }
106
107 /* be careful with the buffer sizes */
108 strncpy(buf, rev->fw_version, min(len, sizeof(rev->fw_version)));
109
110 /*
111 * if the firmware version string is exactly
112 * sizeof(rev->fw_version) long or fw_len is less than
113 * sizeof(rev->fw_version) it won't be null terminated
114 */
115 buf[min(len, sizeof(rev->fw_version)) - 1] = '\0';
116
117out:
118 kfree(rev);
119 return ret;
120}
121
122int wl1271_acx_tx_power(struct wl1271 *wl, int power)
123{
124 struct acx_current_tx_power *acx;
125 int ret;
126
127 wl1271_debug(DEBUG_ACX, "acx dot11_cur_tx_pwr");
128
129 if (power < 0 || power > 25)
130 return -EINVAL;
131
132 acx = kzalloc(sizeof(*acx), GFP_KERNEL);
133 if (!acx) {
134 ret = -ENOMEM;
135 goto out;
136 }
137
Juuso Oikarinen6f6b5d42010-02-22 08:38:42 +0200138 acx->current_tx_power = power * 10;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300139
140 ret = wl1271_cmd_configure(wl, DOT11_CUR_TX_PWR, acx, sizeof(*acx));
141 if (ret < 0) {
142 wl1271_warning("configure of tx power failed: %d", ret);
143 goto out;
144 }
145
146out:
147 kfree(acx);
148 return ret;
149}
150
151int wl1271_acx_feature_cfg(struct wl1271 *wl)
152{
153 struct acx_feature_config *feature;
154 int ret;
155
156 wl1271_debug(DEBUG_ACX, "acx feature cfg");
157
158 feature = kzalloc(sizeof(*feature), GFP_KERNEL);
159 if (!feature) {
160 ret = -ENOMEM;
161 goto out;
162 }
163
164 /* DF_ENCRYPTION_DISABLE and DF_SNIFF_MODE_ENABLE are disabled */
165 feature->data_flow_options = 0;
166 feature->options = 0;
167
168 ret = wl1271_cmd_configure(wl, ACX_FEATURE_CFG,
169 feature, sizeof(*feature));
170 if (ret < 0) {
171 wl1271_error("Couldnt set HW encryption");
172 goto out;
173 }
174
175out:
176 kfree(feature);
177 return ret;
178}
179
180int wl1271_acx_mem_map(struct wl1271 *wl, struct acx_header *mem_map,
181 size_t len)
182{
183 int ret;
184
185 wl1271_debug(DEBUG_ACX, "acx mem map");
186
187 ret = wl1271_cmd_interrogate(wl, ACX_MEM_MAP, mem_map, len);
188 if (ret < 0)
189 return ret;
190
191 return 0;
192}
193
Juuso Oikarinen8793f9b2009-10-13 12:47:40 +0300194int wl1271_acx_rx_msdu_life_time(struct wl1271 *wl)
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300195{
196 struct acx_rx_msdu_lifetime *acx;
197 int ret;
198
199 wl1271_debug(DEBUG_ACX, "acx rx msdu life time");
200
201 acx = kzalloc(sizeof(*acx), GFP_KERNEL);
202 if (!acx) {
203 ret = -ENOMEM;
204 goto out;
205 }
206
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300207 acx->lifetime = cpu_to_le32(wl->conf.rx.rx_msdu_life_time);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300208 ret = wl1271_cmd_configure(wl, DOT11_RX_MSDU_LIFE_TIME,
209 acx, sizeof(*acx));
210 if (ret < 0) {
211 wl1271_warning("failed to set rx msdu life time: %d", ret);
212 goto out;
213 }
214
215out:
216 kfree(acx);
217 return ret;
218}
219
220int wl1271_acx_rx_config(struct wl1271 *wl, u32 config, u32 filter)
221{
222 struct acx_rx_config *rx_config;
223 int ret;
224
225 wl1271_debug(DEBUG_ACX, "acx rx config");
226
227 rx_config = kzalloc(sizeof(*rx_config), GFP_KERNEL);
228 if (!rx_config) {
229 ret = -ENOMEM;
230 goto out;
231 }
232
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300233 rx_config->config_options = cpu_to_le32(config);
234 rx_config->filter_options = cpu_to_le32(filter);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300235
236 ret = wl1271_cmd_configure(wl, ACX_RX_CFG,
237 rx_config, sizeof(*rx_config));
238 if (ret < 0) {
239 wl1271_warning("failed to set rx config: %d", ret);
240 goto out;
241 }
242
243out:
244 kfree(rx_config);
245 return ret;
246}
247
248int wl1271_acx_pd_threshold(struct wl1271 *wl)
249{
250 struct acx_packet_detection *pd;
251 int ret;
252
253 wl1271_debug(DEBUG_ACX, "acx data pd threshold");
254
255 pd = kzalloc(sizeof(*pd), GFP_KERNEL);
256 if (!pd) {
257 ret = -ENOMEM;
258 goto out;
259 }
260
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300261 pd->threshold = cpu_to_le32(wl->conf.rx.packet_detection_threshold);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300262
263 ret = wl1271_cmd_configure(wl, ACX_PD_THRESHOLD, pd, sizeof(*pd));
264 if (ret < 0) {
265 wl1271_warning("failed to set pd threshold: %d", ret);
266 goto out;
267 }
268
269out:
270 kfree(pd);
271 return 0;
272}
273
274int wl1271_acx_slot(struct wl1271 *wl, enum acx_slot_type slot_time)
275{
276 struct acx_slot *slot;
277 int ret;
278
279 wl1271_debug(DEBUG_ACX, "acx slot");
280
281 slot = kzalloc(sizeof(*slot), GFP_KERNEL);
282 if (!slot) {
283 ret = -ENOMEM;
284 goto out;
285 }
286
287 slot->wone_index = STATION_WONE_INDEX;
288 slot->slot_time = slot_time;
289
290 ret = wl1271_cmd_configure(wl, ACX_SLOT, slot, sizeof(*slot));
291 if (ret < 0) {
292 wl1271_warning("failed to set slot time: %d", ret);
293 goto out;
294 }
295
296out:
297 kfree(slot);
298 return ret;
299}
300
Juuso Oikarinenc87dec92009-10-08 21:56:31 +0300301int wl1271_acx_group_address_tbl(struct wl1271 *wl, bool enable,
302 void *mc_list, u32 mc_list_len)
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300303{
304 struct acx_dot11_grp_addr_tbl *acx;
305 int ret;
306
307 wl1271_debug(DEBUG_ACX, "acx group address tbl");
308
309 acx = kzalloc(sizeof(*acx), GFP_KERNEL);
310 if (!acx) {
311 ret = -ENOMEM;
312 goto out;
313 }
314
315 /* MAC filtering */
Juuso Oikarinenc87dec92009-10-08 21:56:31 +0300316 acx->enabled = enable;
317 acx->num_groups = mc_list_len;
318 memcpy(acx->mac_table, mc_list, mc_list_len * ETH_ALEN);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300319
320 ret = wl1271_cmd_configure(wl, DOT11_GROUP_ADDRESS_TBL,
321 acx, sizeof(*acx));
322 if (ret < 0) {
323 wl1271_warning("failed to set group addr table: %d", ret);
324 goto out;
325 }
326
327out:
328 kfree(acx);
329 return ret;
330}
331
332int wl1271_acx_service_period_timeout(struct wl1271 *wl)
333{
334 struct acx_rx_timeout *rx_timeout;
335 int ret;
336
337 rx_timeout = kzalloc(sizeof(*rx_timeout), GFP_KERNEL);
338 if (!rx_timeout) {
339 ret = -ENOMEM;
340 goto out;
341 }
342
343 wl1271_debug(DEBUG_ACX, "acx service period timeout");
344
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300345 rx_timeout->ps_poll_timeout = cpu_to_le16(wl->conf.rx.ps_poll_timeout);
346 rx_timeout->upsd_timeout = cpu_to_le16(wl->conf.rx.upsd_timeout);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300347
348 ret = wl1271_cmd_configure(wl, ACX_SERVICE_PERIOD_TIMEOUT,
349 rx_timeout, sizeof(*rx_timeout));
350 if (ret < 0) {
351 wl1271_warning("failed to set service period timeout: %d",
352 ret);
353 goto out;
354 }
355
356out:
357 kfree(rx_timeout);
358 return ret;
359}
360
361int wl1271_acx_rts_threshold(struct wl1271 *wl, u16 rts_threshold)
362{
363 struct acx_rts_threshold *rts;
364 int ret;
365
366 wl1271_debug(DEBUG_ACX, "acx rts threshold");
367
368 rts = kzalloc(sizeof(*rts), GFP_KERNEL);
369 if (!rts) {
370 ret = -ENOMEM;
371 goto out;
372 }
373
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300374 rts->threshold = cpu_to_le16(rts_threshold);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300375
376 ret = wl1271_cmd_configure(wl, DOT11_RTS_THRESHOLD, rts, sizeof(*rts));
377 if (ret < 0) {
378 wl1271_warning("failed to set rts threshold: %d", ret);
379 goto out;
380 }
381
382out:
383 kfree(rts);
384 return ret;
385}
386
Luciano Coelho6e92b412009-12-11 15:40:50 +0200387int wl1271_acx_dco_itrim_params(struct wl1271 *wl)
388{
389 struct acx_dco_itrim_params *dco;
390 struct conf_itrim_settings *c = &wl->conf.itrim;
391 int ret;
392
393 wl1271_debug(DEBUG_ACX, "acx dco itrim parameters");
394
395 dco = kzalloc(sizeof(*dco), GFP_KERNEL);
396 if (!dco) {
397 ret = -ENOMEM;
398 goto out;
399 }
400
401 dco->enable = c->enable;
402 dco->timeout = cpu_to_le32(c->timeout);
403
404 ret = wl1271_cmd_configure(wl, ACX_SET_DCO_ITRIM_PARAMS,
405 dco, sizeof(*dco));
406 if (ret < 0) {
407 wl1271_warning("failed to set dco itrim parameters: %d", ret);
408 goto out;
409 }
410
411out:
412 kfree(dco);
413 return ret;
414}
415
Juuso Oikarinen19221672009-10-08 21:56:35 +0300416int wl1271_acx_beacon_filter_opt(struct wl1271 *wl, bool enable_filter)
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300417{
Juuso Oikarinen51f2be22009-10-13 12:47:42 +0300418 struct acx_beacon_filter_option *beacon_filter = NULL;
419 int ret = 0;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300420
421 wl1271_debug(DEBUG_ACX, "acx beacon filter opt");
422
Juuso Oikarinen51f2be22009-10-13 12:47:42 +0300423 if (enable_filter &&
424 wl->conf.conn.bcn_filt_mode == CONF_BCN_FILT_MODE_DISABLED)
425 goto out;
426
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300427 beacon_filter = kzalloc(sizeof(*beacon_filter), GFP_KERNEL);
428 if (!beacon_filter) {
429 ret = -ENOMEM;
430 goto out;
431 }
432
Juuso Oikarinen19221672009-10-08 21:56:35 +0300433 beacon_filter->enable = enable_filter;
Juuso Oikarinen51f2be22009-10-13 12:47:42 +0300434
435 /*
436 * When set to zero, and the filter is enabled, beacons
437 * without the unicast TIM bit set are dropped.
438 */
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300439 beacon_filter->max_num_beacons = 0;
440
441 ret = wl1271_cmd_configure(wl, ACX_BEACON_FILTER_OPT,
442 beacon_filter, sizeof(*beacon_filter));
443 if (ret < 0) {
444 wl1271_warning("failed to set beacon filter opt: %d", ret);
445 goto out;
446 }
447
448out:
449 kfree(beacon_filter);
450 return ret;
451}
452
453int wl1271_acx_beacon_filter_table(struct wl1271 *wl)
454{
455 struct acx_beacon_filter_ie_table *ie_table;
Juuso Oikarinen51f2be22009-10-13 12:47:42 +0300456 int i, idx = 0;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300457 int ret;
Juuso Oikarinen51f2be22009-10-13 12:47:42 +0300458 bool vendor_spec = false;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300459
460 wl1271_debug(DEBUG_ACX, "acx beacon filter table");
461
462 ie_table = kzalloc(sizeof(*ie_table), GFP_KERNEL);
463 if (!ie_table) {
464 ret = -ENOMEM;
465 goto out;
466 }
467
Juuso Oikarinen19221672009-10-08 21:56:35 +0300468 /* configure default beacon pass-through rules */
Juuso Oikarinen51f2be22009-10-13 12:47:42 +0300469 ie_table->num_ie = 0;
470 for (i = 0; i < wl->conf.conn.bcn_filt_ie_count; i++) {
471 struct conf_bcn_filt_rule *r = &(wl->conf.conn.bcn_filt_ie[i]);
472 ie_table->table[idx++] = r->ie;
473 ie_table->table[idx++] = r->rule;
474
475 if (r->ie == WLAN_EID_VENDOR_SPECIFIC) {
476 /* only one vendor specific ie allowed */
477 if (vendor_spec)
478 continue;
479
480 /* for vendor specific rules configure the
481 additional fields */
482 memcpy(&(ie_table->table[idx]), r->oui,
483 CONF_BCN_IE_OUI_LEN);
484 idx += CONF_BCN_IE_OUI_LEN;
485 ie_table->table[idx++] = r->type;
486 memcpy(&(ie_table->table[idx]), r->version,
487 CONF_BCN_IE_VER_LEN);
488 idx += CONF_BCN_IE_VER_LEN;
489 vendor_spec = true;
490 }
491
492 ie_table->num_ie++;
493 }
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300494
495 ret = wl1271_cmd_configure(wl, ACX_BEACON_FILTER_TABLE,
496 ie_table, sizeof(*ie_table));
497 if (ret < 0) {
498 wl1271_warning("failed to set beacon filter table: %d", ret);
499 goto out;
500 }
501
502out:
503 kfree(ie_table);
504 return ret;
505}
506
Juuso Oikarinen34415232009-10-08 21:56:33 +0300507int wl1271_acx_conn_monit_params(struct wl1271 *wl)
508{
509 struct acx_conn_monit_params *acx;
510 int ret;
511
512 wl1271_debug(DEBUG_ACX, "acx connection monitor parameters");
513
514 acx = kzalloc(sizeof(*acx), GFP_KERNEL);
515 if (!acx) {
516 ret = -ENOMEM;
517 goto out;
518 }
519
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300520 acx->synch_fail_thold = cpu_to_le32(wl->conf.conn.synch_fail_thold);
521 acx->bss_lose_timeout = cpu_to_le32(wl->conf.conn.bss_lose_timeout);
Juuso Oikarinen34415232009-10-08 21:56:33 +0300522
523 ret = wl1271_cmd_configure(wl, ACX_CONN_MONIT_PARAMS,
524 acx, sizeof(*acx));
525 if (ret < 0) {
526 wl1271_warning("failed to set connection monitor "
527 "parameters: %d", ret);
528 goto out;
529 }
530
531out:
532 kfree(acx);
533 return ret;
534}
535
536
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300537int wl1271_acx_sg_enable(struct wl1271 *wl)
538{
539 struct acx_bt_wlan_coex *pta;
540 int ret;
541
542 wl1271_debug(DEBUG_ACX, "acx sg enable");
543
544 pta = kzalloc(sizeof(*pta), GFP_KERNEL);
545 if (!pta) {
546 ret = -ENOMEM;
547 goto out;
548 }
549
Juuso Oikarinen1b00f542010-03-18 12:26:30 +0200550 pta->enable = wl->conf.sg.state;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300551
552 ret = wl1271_cmd_configure(wl, ACX_SG_ENABLE, pta, sizeof(*pta));
553 if (ret < 0) {
554 wl1271_warning("failed to set softgemini enable: %d", ret);
555 goto out;
556 }
557
558out:
559 kfree(pta);
560 return ret;
561}
562
563int wl1271_acx_sg_cfg(struct wl1271 *wl)
564{
565 struct acx_bt_wlan_coex_param *param;
Juuso Oikarinen2b60100b2009-10-13 12:47:39 +0300566 struct conf_sg_settings *c = &wl->conf.sg;
Juuso Oikarinen1b00f542010-03-18 12:26:30 +0200567 int i, ret;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300568
569 wl1271_debug(DEBUG_ACX, "acx sg cfg");
570
571 param = kzalloc(sizeof(*param), GFP_KERNEL);
572 if (!param) {
573 ret = -ENOMEM;
574 goto out;
575 }
576
577 /* BT-WLAN coext parameters */
Juuso Oikarinen1b00f542010-03-18 12:26:30 +0200578 for (i = 0; i < CONF_SG_PARAMS_MAX; i++)
579 param->params[i] = c->params[i];
580 param->param_idx = CONF_SG_PARAMS_ALL;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300581
582 ret = wl1271_cmd_configure(wl, ACX_SG_CFG, param, sizeof(*param));
583 if (ret < 0) {
584 wl1271_warning("failed to set sg config: %d", ret);
585 goto out;
586 }
587
588out:
589 kfree(param);
590 return ret;
591}
592
593int wl1271_acx_cca_threshold(struct wl1271 *wl)
594{
595 struct acx_energy_detection *detection;
596 int ret;
597
598 wl1271_debug(DEBUG_ACX, "acx cca threshold");
599
600 detection = kzalloc(sizeof(*detection), GFP_KERNEL);
601 if (!detection) {
602 ret = -ENOMEM;
603 goto out;
604 }
605
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300606 detection->rx_cca_threshold = cpu_to_le16(wl->conf.rx.rx_cca_threshold);
Juuso Oikarinen45b531a2009-10-13 12:47:41 +0300607 detection->tx_energy_detection = wl->conf.tx.tx_energy_detection;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300608
609 ret = wl1271_cmd_configure(wl, ACX_CCA_THRESHOLD,
610 detection, sizeof(*detection));
611 if (ret < 0) {
612 wl1271_warning("failed to set cca threshold: %d", ret);
613 return ret;
614 }
615
616out:
617 kfree(detection);
618 return ret;
619}
620
621int wl1271_acx_bcn_dtim_options(struct wl1271 *wl)
622{
623 struct acx_beacon_broadcast *bb;
624 int ret;
625
626 wl1271_debug(DEBUG_ACX, "acx bcn dtim options");
627
628 bb = kzalloc(sizeof(*bb), GFP_KERNEL);
629 if (!bb) {
630 ret = -ENOMEM;
631 goto out;
632 }
633
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300634 bb->beacon_rx_timeout = cpu_to_le16(wl->conf.conn.beacon_rx_timeout);
635 bb->broadcast_timeout = cpu_to_le16(wl->conf.conn.broadcast_timeout);
Juuso Oikarinen51f2be22009-10-13 12:47:42 +0300636 bb->rx_broadcast_in_ps = wl->conf.conn.rx_broadcast_in_ps;
637 bb->ps_poll_threshold = wl->conf.conn.ps_poll_threshold;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300638
639 ret = wl1271_cmd_configure(wl, ACX_BCN_DTIM_OPTIONS, bb, sizeof(*bb));
640 if (ret < 0) {
641 wl1271_warning("failed to set rx config: %d", ret);
642 goto out;
643 }
644
645out:
646 kfree(bb);
647 return ret;
648}
649
650int wl1271_acx_aid(struct wl1271 *wl, u16 aid)
651{
652 struct acx_aid *acx_aid;
653 int ret;
654
655 wl1271_debug(DEBUG_ACX, "acx aid");
656
657 acx_aid = kzalloc(sizeof(*acx_aid), GFP_KERNEL);
658 if (!acx_aid) {
659 ret = -ENOMEM;
660 goto out;
661 }
662
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300663 acx_aid->aid = cpu_to_le16(aid);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300664
665 ret = wl1271_cmd_configure(wl, ACX_AID, acx_aid, sizeof(*acx_aid));
666 if (ret < 0) {
667 wl1271_warning("failed to set aid: %d", ret);
668 goto out;
669 }
670
671out:
672 kfree(acx_aid);
673 return ret;
674}
675
676int wl1271_acx_event_mbox_mask(struct wl1271 *wl, u32 event_mask)
677{
678 struct acx_event_mask *mask;
679 int ret;
680
681 wl1271_debug(DEBUG_ACX, "acx event mbox mask");
682
683 mask = kzalloc(sizeof(*mask), GFP_KERNEL);
684 if (!mask) {
685 ret = -ENOMEM;
686 goto out;
687 }
688
689 /* high event mask is unused */
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300690 mask->high_event_mask = cpu_to_le32(0xffffffff);
691 mask->event_mask = cpu_to_le32(event_mask);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300692
693 ret = wl1271_cmd_configure(wl, ACX_EVENT_MBOX_MASK,
694 mask, sizeof(*mask));
695 if (ret < 0) {
696 wl1271_warning("failed to set acx_event_mbox_mask: %d", ret);
697 goto out;
698 }
699
700out:
701 kfree(mask);
702 return ret;
703}
704
705int wl1271_acx_set_preamble(struct wl1271 *wl, enum acx_preamble_type preamble)
706{
707 struct acx_preamble *acx;
708 int ret;
709
710 wl1271_debug(DEBUG_ACX, "acx_set_preamble");
711
712 acx = kzalloc(sizeof(*acx), GFP_KERNEL);
713 if (!acx) {
714 ret = -ENOMEM;
715 goto out;
716 }
717
718 acx->preamble = preamble;
719
720 ret = wl1271_cmd_configure(wl, ACX_PREAMBLE_TYPE, acx, sizeof(*acx));
721 if (ret < 0) {
722 wl1271_warning("Setting of preamble failed: %d", ret);
723 goto out;
724 }
725
726out:
727 kfree(acx);
728 return ret;
729}
730
731int wl1271_acx_cts_protect(struct wl1271 *wl,
732 enum acx_ctsprotect_type ctsprotect)
733{
734 struct acx_ctsprotect *acx;
735 int ret;
736
737 wl1271_debug(DEBUG_ACX, "acx_set_ctsprotect");
738
739 acx = kzalloc(sizeof(*acx), GFP_KERNEL);
740 if (!acx) {
741 ret = -ENOMEM;
742 goto out;
743 }
744
745 acx->ctsprotect = ctsprotect;
746
747 ret = wl1271_cmd_configure(wl, ACX_CTS_PROTECTION, acx, sizeof(*acx));
748 if (ret < 0) {
749 wl1271_warning("Setting of ctsprotect failed: %d", ret);
750 goto out;
751 }
752
753out:
754 kfree(acx);
755 return ret;
756}
757
758int wl1271_acx_statistics(struct wl1271 *wl, struct acx_statistics *stats)
759{
760 int ret;
761
762 wl1271_debug(DEBUG_ACX, "acx statistics");
763
764 ret = wl1271_cmd_interrogate(wl, ACX_STATISTICS, stats,
765 sizeof(*stats));
766 if (ret < 0) {
767 wl1271_warning("acx statistics failed: %d", ret);
768 return -ENOMEM;
769 }
770
771 return 0;
772}
773
Juuso Oikarinen830fb672009-12-11 15:41:06 +0200774int wl1271_acx_rate_policies(struct wl1271 *wl)
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300775{
776 struct acx_rate_policy *acx;
Juuso Oikarinen45b531a2009-10-13 12:47:41 +0300777 struct conf_tx_rate_class *c = &wl->conf.tx.rc_conf;
Juuso Oikarinen830fb672009-12-11 15:41:06 +0200778 int idx = 0;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300779 int ret = 0;
780
781 wl1271_debug(DEBUG_ACX, "acx rate policies");
782
783 acx = kzalloc(sizeof(*acx), GFP_KERNEL);
784
785 if (!acx) {
786 ret = -ENOMEM;
787 goto out;
788 }
789
Juuso Oikarinen830fb672009-12-11 15:41:06 +0200790 /* configure one basic rate class */
791 idx = ACX_TX_BASIC_RATE;
792 acx->rate_class[idx].enabled_rates = cpu_to_le32(wl->basic_rate_set);
793 acx->rate_class[idx].short_retry_limit = c->short_retry_limit;
794 acx->rate_class[idx].long_retry_limit = c->long_retry_limit;
795 acx->rate_class[idx].aflags = c->aflags;
796
797 /* configure one AP supported rate class */
798 idx = ACX_TX_AP_FULL_RATE;
799 acx->rate_class[idx].enabled_rates = cpu_to_le32(wl->rate_set);
800 acx->rate_class[idx].short_retry_limit = c->short_retry_limit;
801 acx->rate_class[idx].long_retry_limit = c->long_retry_limit;
802 acx->rate_class[idx].aflags = c->aflags;
803
804 acx->rate_class_cnt = cpu_to_le32(ACX_TX_RATE_POLICY_CNT);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300805
806 ret = wl1271_cmd_configure(wl, ACX_RATE_POLICY, acx, sizeof(*acx));
807 if (ret < 0) {
808 wl1271_warning("Setting of rate policies failed: %d", ret);
809 goto out;
810 }
811
812out:
813 kfree(acx);
814 return ret;
815}
816
Kalle Valo243eeb52010-02-18 13:25:39 +0200817int wl1271_acx_ac_cfg(struct wl1271 *wl, u8 ac, u8 cw_min, u16 cw_max,
818 u8 aifsn, u16 txop)
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300819{
820 struct acx_ac_cfg *acx;
Kalle Valo243eeb52010-02-18 13:25:39 +0200821 int ret = 0;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300822
Kalle Valo243eeb52010-02-18 13:25:39 +0200823 wl1271_debug(DEBUG_ACX, "acx ac cfg %d cw_ming %d cw_max %d "
824 "aifs %d txop %d", ac, cw_min, cw_max, aifsn, txop);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300825
826 acx = kzalloc(sizeof(*acx), GFP_KERNEL);
827
828 if (!acx) {
829 ret = -ENOMEM;
830 goto out;
831 }
832
Kalle Valo243eeb52010-02-18 13:25:39 +0200833 acx->ac = ac;
834 acx->cw_min = cw_min;
835 acx->cw_max = cpu_to_le16(cw_max);
836 acx->aifsn = aifsn;
837 acx->tx_op_limit = cpu_to_le16(txop);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300838
Kalle Valo243eeb52010-02-18 13:25:39 +0200839 ret = wl1271_cmd_configure(wl, ACX_AC_CFG, acx, sizeof(*acx));
840 if (ret < 0) {
841 wl1271_warning("acx ac cfg failed: %d", ret);
842 goto out;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300843 }
844
845out:
846 kfree(acx);
847 return ret;
848}
849
Kalle Valof2054df2010-02-18 13:25:40 +0200850int wl1271_acx_tid_cfg(struct wl1271 *wl, u8 queue_id, u8 channel_type,
851 u8 tsid, u8 ps_scheme, u8 ack_policy,
852 u32 apsd_conf0, u32 apsd_conf1)
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300853{
854 struct acx_tid_config *acx;
Kalle Valof2054df2010-02-18 13:25:40 +0200855 int ret = 0;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300856
857 wl1271_debug(DEBUG_ACX, "acx tid config");
858
859 acx = kzalloc(sizeof(*acx), GFP_KERNEL);
860
861 if (!acx) {
862 ret = -ENOMEM;
863 goto out;
864 }
865
Kalle Valof2054df2010-02-18 13:25:40 +0200866 acx->queue_id = queue_id;
867 acx->channel_type = channel_type;
868 acx->tsid = tsid;
869 acx->ps_scheme = ps_scheme;
870 acx->ack_policy = ack_policy;
871 acx->apsd_conf[0] = cpu_to_le32(apsd_conf0);
872 acx->apsd_conf[1] = cpu_to_le32(apsd_conf1);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300873
Kalle Valof2054df2010-02-18 13:25:40 +0200874 ret = wl1271_cmd_configure(wl, ACX_TID_CFG, acx, sizeof(*acx));
875 if (ret < 0) {
876 wl1271_warning("Setting of tid config failed: %d", ret);
877 goto out;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300878 }
879
880out:
881 kfree(acx);
882 return ret;
883}
884
885int wl1271_acx_frag_threshold(struct wl1271 *wl)
886{
887 struct acx_frag_threshold *acx;
888 int ret = 0;
889
890 wl1271_debug(DEBUG_ACX, "acx frag threshold");
891
892 acx = kzalloc(sizeof(*acx), GFP_KERNEL);
893
894 if (!acx) {
895 ret = -ENOMEM;
896 goto out;
897 }
898
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300899 acx->frag_threshold = cpu_to_le16(wl->conf.tx.frag_threshold);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300900 ret = wl1271_cmd_configure(wl, ACX_FRAG_CFG, acx, sizeof(*acx));
901 if (ret < 0) {
902 wl1271_warning("Setting of frag threshold failed: %d", ret);
903 goto out;
904 }
905
906out:
907 kfree(acx);
908 return ret;
909}
910
911int wl1271_acx_tx_config_options(struct wl1271 *wl)
912{
913 struct acx_tx_config_options *acx;
914 int ret = 0;
915
916 wl1271_debug(DEBUG_ACX, "acx tx config options");
917
918 acx = kzalloc(sizeof(*acx), GFP_KERNEL);
919
920 if (!acx) {
921 ret = -ENOMEM;
922 goto out;
923 }
924
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300925 acx->tx_compl_timeout = cpu_to_le16(wl->conf.tx.tx_compl_timeout);
926 acx->tx_compl_threshold = cpu_to_le16(wl->conf.tx.tx_compl_threshold);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300927 ret = wl1271_cmd_configure(wl, ACX_TX_CONFIG_OPT, acx, sizeof(*acx));
928 if (ret < 0) {
929 wl1271_warning("Setting of tx options failed: %d", ret);
930 goto out;
931 }
932
933out:
934 kfree(acx);
935 return ret;
936}
937
938int wl1271_acx_mem_cfg(struct wl1271 *wl)
939{
940 struct wl1271_acx_config_memory *mem_conf;
941 int ret;
942
943 wl1271_debug(DEBUG_ACX, "wl1271 mem cfg");
944
945 mem_conf = kzalloc(sizeof(*mem_conf), GFP_KERNEL);
946 if (!mem_conf) {
947 ret = -ENOMEM;
948 goto out;
949 }
950
951 /* memory config */
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300952 mem_conf->num_stations = DEFAULT_NUM_STATIONS;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300953 mem_conf->rx_mem_block_num = ACX_RX_MEM_BLOCKS;
954 mem_conf->tx_min_mem_block_num = ACX_TX_MIN_MEM_BLOCKS;
955 mem_conf->num_ssid_profiles = ACX_NUM_SSID_PROFILES;
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300956 mem_conf->total_tx_descriptors = cpu_to_le32(ACX_TX_DESCRIPTORS);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300957
958 ret = wl1271_cmd_configure(wl, ACX_MEM_CFG, mem_conf,
959 sizeof(*mem_conf));
960 if (ret < 0) {
961 wl1271_warning("wl1271 mem config failed: %d", ret);
962 goto out;
963 }
964
965out:
966 kfree(mem_conf);
967 return ret;
968}
969
970int wl1271_acx_init_mem_config(struct wl1271 *wl)
971{
972 int ret;
973
974 ret = wl1271_acx_mem_cfg(wl);
975 if (ret < 0)
976 return ret;
977
978 wl->target_mem_map = kzalloc(sizeof(struct wl1271_acx_mem_map),
Juuso Oikarinen45b531a2009-10-13 12:47:41 +0300979 GFP_KERNEL);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300980 if (!wl->target_mem_map) {
981 wl1271_error("couldn't allocate target memory map");
982 return -ENOMEM;
983 }
984
985 /* we now ask for the firmware built memory map */
986 ret = wl1271_acx_mem_map(wl, (void *)wl->target_mem_map,
987 sizeof(struct wl1271_acx_mem_map));
988 if (ret < 0) {
989 wl1271_error("couldn't retrieve firmware memory map");
990 kfree(wl->target_mem_map);
991 wl->target_mem_map = NULL;
992 return ret;
993 }
994
995 /* initialize TX block book keeping */
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300996 wl->tx_blocks_available =
997 le32_to_cpu(wl->target_mem_map->num_tx_mem_blocks);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300998 wl1271_debug(DEBUG_TX, "available tx blocks: %d",
999 wl->tx_blocks_available);
1000
1001 return 0;
1002}
1003
1004int wl1271_acx_init_rx_interrupt(struct wl1271 *wl)
1005{
1006 struct wl1271_acx_rx_config_opt *rx_conf;
1007 int ret;
1008
1009 wl1271_debug(DEBUG_ACX, "wl1271 rx interrupt config");
1010
1011 rx_conf = kzalloc(sizeof(*rx_conf), GFP_KERNEL);
1012 if (!rx_conf) {
1013 ret = -ENOMEM;
1014 goto out;
1015 }
1016
Luciano Coelhod0f63b22009-10-15 10:33:29 +03001017 rx_conf->threshold = cpu_to_le16(wl->conf.rx.irq_pkt_threshold);
1018 rx_conf->timeout = cpu_to_le16(wl->conf.rx.irq_timeout);
1019 rx_conf->mblk_threshold = cpu_to_le16(wl->conf.rx.irq_blk_threshold);
Juuso Oikarinen8793f9b2009-10-13 12:47:40 +03001020 rx_conf->queue_type = wl->conf.rx.queue_type;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001021
1022 ret = wl1271_cmd_configure(wl, ACX_RX_CONFIG_OPT, rx_conf,
1023 sizeof(*rx_conf));
1024 if (ret < 0) {
1025 wl1271_warning("wl1271 rx config opt failed: %d", ret);
1026 goto out;
1027 }
1028
1029out:
1030 kfree(rx_conf);
1031 return ret;
1032}
Juuso Oikarinen3cfd6cf2009-10-12 15:08:52 +03001033
Juuso Oikarinen11f70f92009-10-13 12:47:46 +03001034int wl1271_acx_bet_enable(struct wl1271 *wl, bool enable)
1035{
1036 struct wl1271_acx_bet_enable *acx = NULL;
1037 int ret = 0;
1038
1039 wl1271_debug(DEBUG_ACX, "acx bet enable");
1040
1041 if (enable && wl->conf.conn.bet_enable == CONF_BET_MODE_DISABLE)
1042 goto out;
1043
1044 acx = kzalloc(sizeof(*acx), GFP_KERNEL);
1045 if (!acx) {
1046 ret = -ENOMEM;
1047 goto out;
1048 }
1049
1050 acx->enable = enable ? CONF_BET_MODE_ENABLE : CONF_BET_MODE_DISABLE;
1051 acx->max_consecutive = wl->conf.conn.bet_max_consecutive;
1052
1053 ret = wl1271_cmd_configure(wl, ACX_BET_ENABLE, acx, sizeof(*acx));
1054 if (ret < 0) {
1055 wl1271_warning("acx bet enable failed: %d", ret);
1056 goto out;
1057 }
1058
1059out:
1060 kfree(acx);
1061 return ret;
1062}
Juuso Oikarinen01c09162009-10-13 12:47:55 +03001063
1064int wl1271_acx_arp_ip_filter(struct wl1271 *wl, bool enable, u8 *address,
1065 u8 version)
1066{
1067 struct wl1271_acx_arp_filter *acx;
1068 int ret;
1069
1070 wl1271_debug(DEBUG_ACX, "acx arp ip filter, enable: %d", enable);
1071
1072 acx = kzalloc(sizeof(*acx), GFP_KERNEL);
1073 if (!acx) {
1074 ret = -ENOMEM;
1075 goto out;
1076 }
1077
1078 acx->version = version;
1079 acx->enable = enable;
1080
1081 if (enable == true) {
1082 if (version == ACX_IPV4_VERSION)
1083 memcpy(acx->address, address, ACX_IPV4_ADDR_SIZE);
1084 else if (version == ACX_IPV6_VERSION)
1085 memcpy(acx->address, address, sizeof(acx->address));
1086 else
1087 wl1271_error("Invalid IP version");
1088 }
1089
1090 ret = wl1271_cmd_configure(wl, ACX_ARP_IP_FILTER,
1091 acx, sizeof(*acx));
1092 if (ret < 0) {
1093 wl1271_warning("failed to set arp ip filter: %d", ret);
1094 goto out;
1095 }
1096
1097out:
1098 kfree(acx);
1099 return ret;
1100}
Juuso Oikarinen38ad2d82009-12-11 15:41:08 +02001101
1102int wl1271_acx_pm_config(struct wl1271 *wl)
1103{
1104 struct wl1271_acx_pm_config *acx = NULL;
1105 struct conf_pm_config_settings *c = &wl->conf.pm_config;
1106 int ret = 0;
1107
1108 wl1271_debug(DEBUG_ACX, "acx pm config");
1109
1110 acx = kzalloc(sizeof(*acx), GFP_KERNEL);
1111 if (!acx) {
1112 ret = -ENOMEM;
1113 goto out;
1114 }
1115
1116 acx->host_clk_settling_time = cpu_to_le32(c->host_clk_settling_time);
1117 acx->host_fast_wakeup_support = c->host_fast_wakeup_support;
1118
1119 ret = wl1271_cmd_configure(wl, ACX_PM_CONFIG, acx, sizeof(*acx));
1120 if (ret < 0) {
1121 wl1271_warning("acx pm config failed: %d", ret);
1122 goto out;
1123 }
1124
1125out:
1126 kfree(acx);
1127 return ret;
1128}