blob: 7e337cea9905e3b47b2d9c8b7f79021719ef851e [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
Juuso Oikarinen7fc3a862010-03-18 12:26:32 +0200537int wl1271_acx_sg_enable(struct wl1271 *wl, bool enable)
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300538{
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 Oikarinen7fc3a862010-03-18 12:26:32 +0200550 if (enable)
551 pta->enable = wl->conf.sg.state;
552 else
553 pta->enable = CONF_SG_DISABLE;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300554
555 ret = wl1271_cmd_configure(wl, ACX_SG_ENABLE, pta, sizeof(*pta));
556 if (ret < 0) {
557 wl1271_warning("failed to set softgemini enable: %d", ret);
558 goto out;
559 }
560
561out:
562 kfree(pta);
563 return ret;
564}
565
566int wl1271_acx_sg_cfg(struct wl1271 *wl)
567{
568 struct acx_bt_wlan_coex_param *param;
Juuso Oikarinen2b60100b2009-10-13 12:47:39 +0300569 struct conf_sg_settings *c = &wl->conf.sg;
Juuso Oikarinen1b00f542010-03-18 12:26:30 +0200570 int i, ret;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300571
572 wl1271_debug(DEBUG_ACX, "acx sg cfg");
573
574 param = kzalloc(sizeof(*param), GFP_KERNEL);
575 if (!param) {
576 ret = -ENOMEM;
577 goto out;
578 }
579
580 /* BT-WLAN coext parameters */
Juuso Oikarinen1b00f542010-03-18 12:26:30 +0200581 for (i = 0; i < CONF_SG_PARAMS_MAX; i++)
582 param->params[i] = c->params[i];
583 param->param_idx = CONF_SG_PARAMS_ALL;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300584
585 ret = wl1271_cmd_configure(wl, ACX_SG_CFG, param, sizeof(*param));
586 if (ret < 0) {
587 wl1271_warning("failed to set sg config: %d", ret);
588 goto out;
589 }
590
591out:
592 kfree(param);
593 return ret;
594}
595
596int wl1271_acx_cca_threshold(struct wl1271 *wl)
597{
598 struct acx_energy_detection *detection;
599 int ret;
600
601 wl1271_debug(DEBUG_ACX, "acx cca threshold");
602
603 detection = kzalloc(sizeof(*detection), GFP_KERNEL);
604 if (!detection) {
605 ret = -ENOMEM;
606 goto out;
607 }
608
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300609 detection->rx_cca_threshold = cpu_to_le16(wl->conf.rx.rx_cca_threshold);
Juuso Oikarinen45b531a2009-10-13 12:47:41 +0300610 detection->tx_energy_detection = wl->conf.tx.tx_energy_detection;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300611
612 ret = wl1271_cmd_configure(wl, ACX_CCA_THRESHOLD,
613 detection, sizeof(*detection));
614 if (ret < 0) {
615 wl1271_warning("failed to set cca threshold: %d", ret);
616 return ret;
617 }
618
619out:
620 kfree(detection);
621 return ret;
622}
623
624int wl1271_acx_bcn_dtim_options(struct wl1271 *wl)
625{
626 struct acx_beacon_broadcast *bb;
627 int ret;
628
629 wl1271_debug(DEBUG_ACX, "acx bcn dtim options");
630
631 bb = kzalloc(sizeof(*bb), GFP_KERNEL);
632 if (!bb) {
633 ret = -ENOMEM;
634 goto out;
635 }
636
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300637 bb->beacon_rx_timeout = cpu_to_le16(wl->conf.conn.beacon_rx_timeout);
638 bb->broadcast_timeout = cpu_to_le16(wl->conf.conn.broadcast_timeout);
Juuso Oikarinen51f2be22009-10-13 12:47:42 +0300639 bb->rx_broadcast_in_ps = wl->conf.conn.rx_broadcast_in_ps;
640 bb->ps_poll_threshold = wl->conf.conn.ps_poll_threshold;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300641
642 ret = wl1271_cmd_configure(wl, ACX_BCN_DTIM_OPTIONS, bb, sizeof(*bb));
643 if (ret < 0) {
644 wl1271_warning("failed to set rx config: %d", ret);
645 goto out;
646 }
647
648out:
649 kfree(bb);
650 return ret;
651}
652
653int wl1271_acx_aid(struct wl1271 *wl, u16 aid)
654{
655 struct acx_aid *acx_aid;
656 int ret;
657
658 wl1271_debug(DEBUG_ACX, "acx aid");
659
660 acx_aid = kzalloc(sizeof(*acx_aid), GFP_KERNEL);
661 if (!acx_aid) {
662 ret = -ENOMEM;
663 goto out;
664 }
665
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300666 acx_aid->aid = cpu_to_le16(aid);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300667
668 ret = wl1271_cmd_configure(wl, ACX_AID, acx_aid, sizeof(*acx_aid));
669 if (ret < 0) {
670 wl1271_warning("failed to set aid: %d", ret);
671 goto out;
672 }
673
674out:
675 kfree(acx_aid);
676 return ret;
677}
678
679int wl1271_acx_event_mbox_mask(struct wl1271 *wl, u32 event_mask)
680{
681 struct acx_event_mask *mask;
682 int ret;
683
684 wl1271_debug(DEBUG_ACX, "acx event mbox mask");
685
686 mask = kzalloc(sizeof(*mask), GFP_KERNEL);
687 if (!mask) {
688 ret = -ENOMEM;
689 goto out;
690 }
691
692 /* high event mask is unused */
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300693 mask->high_event_mask = cpu_to_le32(0xffffffff);
694 mask->event_mask = cpu_to_le32(event_mask);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300695
696 ret = wl1271_cmd_configure(wl, ACX_EVENT_MBOX_MASK,
697 mask, sizeof(*mask));
698 if (ret < 0) {
699 wl1271_warning("failed to set acx_event_mbox_mask: %d", ret);
700 goto out;
701 }
702
703out:
704 kfree(mask);
705 return ret;
706}
707
708int wl1271_acx_set_preamble(struct wl1271 *wl, enum acx_preamble_type preamble)
709{
710 struct acx_preamble *acx;
711 int ret;
712
713 wl1271_debug(DEBUG_ACX, "acx_set_preamble");
714
715 acx = kzalloc(sizeof(*acx), GFP_KERNEL);
716 if (!acx) {
717 ret = -ENOMEM;
718 goto out;
719 }
720
721 acx->preamble = preamble;
722
723 ret = wl1271_cmd_configure(wl, ACX_PREAMBLE_TYPE, acx, sizeof(*acx));
724 if (ret < 0) {
725 wl1271_warning("Setting of preamble failed: %d", ret);
726 goto out;
727 }
728
729out:
730 kfree(acx);
731 return ret;
732}
733
734int wl1271_acx_cts_protect(struct wl1271 *wl,
735 enum acx_ctsprotect_type ctsprotect)
736{
737 struct acx_ctsprotect *acx;
738 int ret;
739
740 wl1271_debug(DEBUG_ACX, "acx_set_ctsprotect");
741
742 acx = kzalloc(sizeof(*acx), GFP_KERNEL);
743 if (!acx) {
744 ret = -ENOMEM;
745 goto out;
746 }
747
748 acx->ctsprotect = ctsprotect;
749
750 ret = wl1271_cmd_configure(wl, ACX_CTS_PROTECTION, acx, sizeof(*acx));
751 if (ret < 0) {
752 wl1271_warning("Setting of ctsprotect failed: %d", ret);
753 goto out;
754 }
755
756out:
757 kfree(acx);
758 return ret;
759}
760
761int wl1271_acx_statistics(struct wl1271 *wl, struct acx_statistics *stats)
762{
763 int ret;
764
765 wl1271_debug(DEBUG_ACX, "acx statistics");
766
767 ret = wl1271_cmd_interrogate(wl, ACX_STATISTICS, stats,
768 sizeof(*stats));
769 if (ret < 0) {
770 wl1271_warning("acx statistics failed: %d", ret);
771 return -ENOMEM;
772 }
773
774 return 0;
775}
776
Juuso Oikarinen830fb672009-12-11 15:41:06 +0200777int wl1271_acx_rate_policies(struct wl1271 *wl)
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300778{
779 struct acx_rate_policy *acx;
Juuso Oikarinen45b531a2009-10-13 12:47:41 +0300780 struct conf_tx_rate_class *c = &wl->conf.tx.rc_conf;
Juuso Oikarinen830fb672009-12-11 15:41:06 +0200781 int idx = 0;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300782 int ret = 0;
783
784 wl1271_debug(DEBUG_ACX, "acx rate policies");
785
786 acx = kzalloc(sizeof(*acx), GFP_KERNEL);
787
788 if (!acx) {
789 ret = -ENOMEM;
790 goto out;
791 }
792
Juuso Oikarinen830fb672009-12-11 15:41:06 +0200793 /* configure one basic rate class */
794 idx = ACX_TX_BASIC_RATE;
795 acx->rate_class[idx].enabled_rates = cpu_to_le32(wl->basic_rate_set);
796 acx->rate_class[idx].short_retry_limit = c->short_retry_limit;
797 acx->rate_class[idx].long_retry_limit = c->long_retry_limit;
798 acx->rate_class[idx].aflags = c->aflags;
799
800 /* configure one AP supported rate class */
801 idx = ACX_TX_AP_FULL_RATE;
802 acx->rate_class[idx].enabled_rates = cpu_to_le32(wl->rate_set);
803 acx->rate_class[idx].short_retry_limit = c->short_retry_limit;
804 acx->rate_class[idx].long_retry_limit = c->long_retry_limit;
805 acx->rate_class[idx].aflags = c->aflags;
806
807 acx->rate_class_cnt = cpu_to_le32(ACX_TX_RATE_POLICY_CNT);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300808
809 ret = wl1271_cmd_configure(wl, ACX_RATE_POLICY, acx, sizeof(*acx));
810 if (ret < 0) {
811 wl1271_warning("Setting of rate policies failed: %d", ret);
812 goto out;
813 }
814
815out:
816 kfree(acx);
817 return ret;
818}
819
Kalle Valo243eeb52010-02-18 13:25:39 +0200820int wl1271_acx_ac_cfg(struct wl1271 *wl, u8 ac, u8 cw_min, u16 cw_max,
821 u8 aifsn, u16 txop)
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300822{
823 struct acx_ac_cfg *acx;
Kalle Valo243eeb52010-02-18 13:25:39 +0200824 int ret = 0;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300825
Kalle Valo243eeb52010-02-18 13:25:39 +0200826 wl1271_debug(DEBUG_ACX, "acx ac cfg %d cw_ming %d cw_max %d "
827 "aifs %d txop %d", ac, cw_min, cw_max, aifsn, txop);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300828
829 acx = kzalloc(sizeof(*acx), GFP_KERNEL);
830
831 if (!acx) {
832 ret = -ENOMEM;
833 goto out;
834 }
835
Kalle Valo243eeb52010-02-18 13:25:39 +0200836 acx->ac = ac;
837 acx->cw_min = cw_min;
838 acx->cw_max = cpu_to_le16(cw_max);
839 acx->aifsn = aifsn;
840 acx->tx_op_limit = cpu_to_le16(txop);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300841
Kalle Valo243eeb52010-02-18 13:25:39 +0200842 ret = wl1271_cmd_configure(wl, ACX_AC_CFG, acx, sizeof(*acx));
843 if (ret < 0) {
844 wl1271_warning("acx ac cfg failed: %d", ret);
845 goto out;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300846 }
847
848out:
849 kfree(acx);
850 return ret;
851}
852
Kalle Valof2054df2010-02-18 13:25:40 +0200853int wl1271_acx_tid_cfg(struct wl1271 *wl, u8 queue_id, u8 channel_type,
854 u8 tsid, u8 ps_scheme, u8 ack_policy,
855 u32 apsd_conf0, u32 apsd_conf1)
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300856{
857 struct acx_tid_config *acx;
Kalle Valof2054df2010-02-18 13:25:40 +0200858 int ret = 0;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300859
860 wl1271_debug(DEBUG_ACX, "acx tid config");
861
862 acx = kzalloc(sizeof(*acx), GFP_KERNEL);
863
864 if (!acx) {
865 ret = -ENOMEM;
866 goto out;
867 }
868
Kalle Valof2054df2010-02-18 13:25:40 +0200869 acx->queue_id = queue_id;
870 acx->channel_type = channel_type;
871 acx->tsid = tsid;
872 acx->ps_scheme = ps_scheme;
873 acx->ack_policy = ack_policy;
874 acx->apsd_conf[0] = cpu_to_le32(apsd_conf0);
875 acx->apsd_conf[1] = cpu_to_le32(apsd_conf1);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300876
Kalle Valof2054df2010-02-18 13:25:40 +0200877 ret = wl1271_cmd_configure(wl, ACX_TID_CFG, acx, sizeof(*acx));
878 if (ret < 0) {
879 wl1271_warning("Setting of tid config failed: %d", ret);
880 goto out;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300881 }
882
883out:
884 kfree(acx);
885 return ret;
886}
887
888int wl1271_acx_frag_threshold(struct wl1271 *wl)
889{
890 struct acx_frag_threshold *acx;
891 int ret = 0;
892
893 wl1271_debug(DEBUG_ACX, "acx frag threshold");
894
895 acx = kzalloc(sizeof(*acx), GFP_KERNEL);
896
897 if (!acx) {
898 ret = -ENOMEM;
899 goto out;
900 }
901
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300902 acx->frag_threshold = cpu_to_le16(wl->conf.tx.frag_threshold);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300903 ret = wl1271_cmd_configure(wl, ACX_FRAG_CFG, acx, sizeof(*acx));
904 if (ret < 0) {
905 wl1271_warning("Setting of frag threshold failed: %d", ret);
906 goto out;
907 }
908
909out:
910 kfree(acx);
911 return ret;
912}
913
914int wl1271_acx_tx_config_options(struct wl1271 *wl)
915{
916 struct acx_tx_config_options *acx;
917 int ret = 0;
918
919 wl1271_debug(DEBUG_ACX, "acx tx config options");
920
921 acx = kzalloc(sizeof(*acx), GFP_KERNEL);
922
923 if (!acx) {
924 ret = -ENOMEM;
925 goto out;
926 }
927
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300928 acx->tx_compl_timeout = cpu_to_le16(wl->conf.tx.tx_compl_timeout);
929 acx->tx_compl_threshold = cpu_to_le16(wl->conf.tx.tx_compl_threshold);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300930 ret = wl1271_cmd_configure(wl, ACX_TX_CONFIG_OPT, acx, sizeof(*acx));
931 if (ret < 0) {
932 wl1271_warning("Setting of tx options failed: %d", ret);
933 goto out;
934 }
935
936out:
937 kfree(acx);
938 return ret;
939}
940
941int wl1271_acx_mem_cfg(struct wl1271 *wl)
942{
943 struct wl1271_acx_config_memory *mem_conf;
944 int ret;
945
946 wl1271_debug(DEBUG_ACX, "wl1271 mem cfg");
947
948 mem_conf = kzalloc(sizeof(*mem_conf), GFP_KERNEL);
949 if (!mem_conf) {
950 ret = -ENOMEM;
951 goto out;
952 }
953
954 /* memory config */
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300955 mem_conf->num_stations = DEFAULT_NUM_STATIONS;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300956 mem_conf->rx_mem_block_num = ACX_RX_MEM_BLOCKS;
957 mem_conf->tx_min_mem_block_num = ACX_TX_MIN_MEM_BLOCKS;
958 mem_conf->num_ssid_profiles = ACX_NUM_SSID_PROFILES;
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300959 mem_conf->total_tx_descriptors = cpu_to_le32(ACX_TX_DESCRIPTORS);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300960
961 ret = wl1271_cmd_configure(wl, ACX_MEM_CFG, mem_conf,
962 sizeof(*mem_conf));
963 if (ret < 0) {
964 wl1271_warning("wl1271 mem config failed: %d", ret);
965 goto out;
966 }
967
968out:
969 kfree(mem_conf);
970 return ret;
971}
972
973int wl1271_acx_init_mem_config(struct wl1271 *wl)
974{
975 int ret;
976
977 ret = wl1271_acx_mem_cfg(wl);
978 if (ret < 0)
979 return ret;
980
981 wl->target_mem_map = kzalloc(sizeof(struct wl1271_acx_mem_map),
Juuso Oikarinen45b531a2009-10-13 12:47:41 +0300982 GFP_KERNEL);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +0300983 if (!wl->target_mem_map) {
984 wl1271_error("couldn't allocate target memory map");
985 return -ENOMEM;
986 }
987
988 /* we now ask for the firmware built memory map */
989 ret = wl1271_acx_mem_map(wl, (void *)wl->target_mem_map,
990 sizeof(struct wl1271_acx_mem_map));
991 if (ret < 0) {
992 wl1271_error("couldn't retrieve firmware memory map");
993 kfree(wl->target_mem_map);
994 wl->target_mem_map = NULL;
995 return ret;
996 }
997
998 /* initialize TX block book keeping */
Luciano Coelhod0f63b22009-10-15 10:33:29 +0300999 wl->tx_blocks_available =
1000 le32_to_cpu(wl->target_mem_map->num_tx_mem_blocks);
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001001 wl1271_debug(DEBUG_TX, "available tx blocks: %d",
1002 wl->tx_blocks_available);
1003
1004 return 0;
1005}
1006
1007int wl1271_acx_init_rx_interrupt(struct wl1271 *wl)
1008{
1009 struct wl1271_acx_rx_config_opt *rx_conf;
1010 int ret;
1011
1012 wl1271_debug(DEBUG_ACX, "wl1271 rx interrupt config");
1013
1014 rx_conf = kzalloc(sizeof(*rx_conf), GFP_KERNEL);
1015 if (!rx_conf) {
1016 ret = -ENOMEM;
1017 goto out;
1018 }
1019
Luciano Coelhod0f63b22009-10-15 10:33:29 +03001020 rx_conf->threshold = cpu_to_le16(wl->conf.rx.irq_pkt_threshold);
1021 rx_conf->timeout = cpu_to_le16(wl->conf.rx.irq_timeout);
1022 rx_conf->mblk_threshold = cpu_to_le16(wl->conf.rx.irq_blk_threshold);
Juuso Oikarinen8793f9b2009-10-13 12:47:40 +03001023 rx_conf->queue_type = wl->conf.rx.queue_type;
Luciano Coelhof5fc0f82009-08-06 16:25:28 +03001024
1025 ret = wl1271_cmd_configure(wl, ACX_RX_CONFIG_OPT, rx_conf,
1026 sizeof(*rx_conf));
1027 if (ret < 0) {
1028 wl1271_warning("wl1271 rx config opt failed: %d", ret);
1029 goto out;
1030 }
1031
1032out:
1033 kfree(rx_conf);
1034 return ret;
1035}
Juuso Oikarinen3cfd6cf2009-10-12 15:08:52 +03001036
Juuso Oikarinen11f70f92009-10-13 12:47:46 +03001037int wl1271_acx_bet_enable(struct wl1271 *wl, bool enable)
1038{
1039 struct wl1271_acx_bet_enable *acx = NULL;
1040 int ret = 0;
1041
1042 wl1271_debug(DEBUG_ACX, "acx bet enable");
1043
1044 if (enable && wl->conf.conn.bet_enable == CONF_BET_MODE_DISABLE)
1045 goto out;
1046
1047 acx = kzalloc(sizeof(*acx), GFP_KERNEL);
1048 if (!acx) {
1049 ret = -ENOMEM;
1050 goto out;
1051 }
1052
1053 acx->enable = enable ? CONF_BET_MODE_ENABLE : CONF_BET_MODE_DISABLE;
1054 acx->max_consecutive = wl->conf.conn.bet_max_consecutive;
1055
1056 ret = wl1271_cmd_configure(wl, ACX_BET_ENABLE, acx, sizeof(*acx));
1057 if (ret < 0) {
1058 wl1271_warning("acx bet enable failed: %d", ret);
1059 goto out;
1060 }
1061
1062out:
1063 kfree(acx);
1064 return ret;
1065}
Juuso Oikarinen01c09162009-10-13 12:47:55 +03001066
1067int wl1271_acx_arp_ip_filter(struct wl1271 *wl, bool enable, u8 *address,
1068 u8 version)
1069{
1070 struct wl1271_acx_arp_filter *acx;
1071 int ret;
1072
1073 wl1271_debug(DEBUG_ACX, "acx arp ip filter, enable: %d", enable);
1074
1075 acx = kzalloc(sizeof(*acx), GFP_KERNEL);
1076 if (!acx) {
1077 ret = -ENOMEM;
1078 goto out;
1079 }
1080
1081 acx->version = version;
1082 acx->enable = enable;
1083
1084 if (enable == true) {
1085 if (version == ACX_IPV4_VERSION)
1086 memcpy(acx->address, address, ACX_IPV4_ADDR_SIZE);
1087 else if (version == ACX_IPV6_VERSION)
1088 memcpy(acx->address, address, sizeof(acx->address));
1089 else
1090 wl1271_error("Invalid IP version");
1091 }
1092
1093 ret = wl1271_cmd_configure(wl, ACX_ARP_IP_FILTER,
1094 acx, sizeof(*acx));
1095 if (ret < 0) {
1096 wl1271_warning("failed to set arp ip filter: %d", ret);
1097 goto out;
1098 }
1099
1100out:
1101 kfree(acx);
1102 return ret;
1103}
Juuso Oikarinen38ad2d82009-12-11 15:41:08 +02001104
1105int wl1271_acx_pm_config(struct wl1271 *wl)
1106{
1107 struct wl1271_acx_pm_config *acx = NULL;
1108 struct conf_pm_config_settings *c = &wl->conf.pm_config;
1109 int ret = 0;
1110
1111 wl1271_debug(DEBUG_ACX, "acx pm config");
1112
1113 acx = kzalloc(sizeof(*acx), GFP_KERNEL);
1114 if (!acx) {
1115 ret = -ENOMEM;
1116 goto out;
1117 }
1118
1119 acx->host_clk_settling_time = cpu_to_le32(c->host_clk_settling_time);
1120 acx->host_fast_wakeup_support = c->host_fast_wakeup_support;
1121
1122 ret = wl1271_cmd_configure(wl, ACX_PM_CONFIG, acx, sizeof(*acx));
1123 if (ret < 0) {
1124 wl1271_warning("acx pm config failed: %d", ret);
1125 goto out;
1126 }
1127
1128out:
1129 kfree(acx);
1130 return ret;
1131}